Skip to content

Instantly share code, notes, and snippets.

View jgyllen's full-sized avatar
👋

Jacob Gyllenstierna jgyllen

👋
View GitHub Profile
@jgyllen
jgyllen / gist:1995443
Created March 7, 2012 19:36
Print SSH key fingerprint
$ ssh-keygen -lf ~/.ssh/id_rsa.pub
@jgyllen
jgyllen / gist:2312464
Created April 5, 2012 16:48
Create a secure random string in Ruby 1.9
SecureRandom.base64(6).gsub(/[$=+\/]/,65.+(rand(25)).chr)
@jgyllen
jgyllen / gist:2410991
Created April 18, 2012 03:48
Disabling the character picker in Mac OS X Lion
$ defaults write -g ApplePressAndHoldEnabled -bool false
@jgyllen
jgyllen / config.ru
Created October 10, 2012 02:45
Sharing Rails cookie session with a Sinatra app
use Rack::Config do |env|
env[ActionDispatch::Cookies::TOKEN_KEY] = 'abc123' # Secret token from Rails config
end
use ActionDispatch::Session::CookieStore, key: '_myapp_session' # Session key from session store options in Rails config
run MyApp
@jgyllen
jgyllen / gist:1e504a2757cee34f3db2
Created January 7, 2016 00:30
Kill list of processes
kill `ps aux | grep foo | grep -v grep | awk '{print $2}'`