Atom / RSS feed of your GMail account
1 https://USERNAME:PASSWORD@gmail.google.com/gmail/feed/atom
DZone Snippets > peter > google
13380 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Peter Cooperx http://www.petercooper.co.uk/
1 https://USERNAME:PASSWORD@gmail.google.com/gmail/feed/atom
1 class ApplicationController < ActionController::Base 2 before_filter :disable_link_prefetching 3 4 private 5 def disable_link_prefetching 6 if request.env["HTTP_X_MOZ"] == "prefetch" 7 logger.debug "prefetch detected: sending 403 Forbidden" 8 render_nothing "403 Forbidden" 9 return false 10 end 11 end 12 end