This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Options +FollowSymlinks | |
| RewriteEngine on | |
| # No intersticial for direct reference and self-reference | |
| RewriteCond %{HTTP_REFERER} !^$ | |
| RewriteCond %{HTTP_REFERER} !^http(s)?://box.leebyron.com/.*$ [NC] | |
| # Add a line item for every website you don't need an intersticial for | |
| # I've added my own website, gmail and facebook | |
| RewriteCond %{HTTP_REFERER} !^http(s)?://([^\.]*.)?leebyron.com/.*$ [NC] | |
| RewriteCond %{HTTP_REFERER} !^http(s)?://mail.google.com/.*$ [NC] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*var noun_type_train_station_start = { | |
| name: "Train station", | |
| label: "station", | |
| default: "Stuttgart Hbf", | |
| };*/ | |
| var noun_type_train_station = { | |
| name: "Train station", | |
| label: "station", | |
| default: "Stuttgart Hbf", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.pbxproj -crlf -diff -merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ajaxgoogle.py - Simple bindings to the AJAX Google Search API | |
| (Just the JSON-over-HTTP bit of it, nothing to do with AJAX per se) | |
| http://code.google.com/apis/ajaxsearch/documentation/reference.html#_intro_fonje | |
| brendan o'connor - gist.github.com/28405 - anyall.org""" | |
| try: | |
| import json | |
| except ImportError: | |
| import simplejson as json | |
| import urllib, urllib2 |
NewerOlder