This file contains 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
/* | |
Safari Technical Preview is nearly indistinguishable from Safari | |
this stylesheet will place a red banner on every page, so you can easily tell what browser you are using | |
Save file to disk | |
From Safari Technical Preview | |
Preferences | Advanced | |
Choose this css file as 'Style sheet' option | |
*/ |
This file contains 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
convert -delay 125 -crop 680x410+330+210 +repage *.png animated.gif |
This file contains 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
require 'sinatra' | |
require 'coffee_script' | |
require 'haml' | |
# configure do | |
# set :bind, '0.0.0.0' | |
# end | |
js = DATA.read | |
get '/shibboleth.js' do |
This file contains 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
# encoding: UTF-8 | |
require 'uri' | |
require 'uglifier' | |
require 'coffee-script' | |
js = CoffeeScript.compile DATA.read | |
#plain js | |
puts js | |
#bookmarklet |