Skip to content

Instantly share code, notes, and snippets.

View jgyllen's full-sized avatar
👋

Jacob Gyllenstierna jgyllen

👋
View GitHub Profile
@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}'`

Keybase proof

I hereby claim:

  • I am jgyllen on github.
  • I am jgyllen (https://keybase.io/jgyllen) on keybase.
  • I have a public key whose fingerprint is 7F81 8107 D933 1BA2 5865 04E2 C48D 949A C251 EAAB

To claim this, I am signing this object:

@jgyllen
jgyllen / gist:9c5b0ed7d57b816af838
Created March 26, 2015 17:18
Disable Mac OS X bootup chime
sudo nvram SystemAudioVolume=%80
@jgyllen
jgyllen / gist:a3b6c7af3508a0f61dd1
Created March 13, 2015 21:26
Convert Ruby 1.8 to 1.9 Hash Syntax
perl -pi -e 's/:([\w\d_]+)(\s*)=>/\1:/g' **/*.rb
@jgyllen
jgyllen / gist:dc35f61a750f00aaaf64
Created February 13, 2015 06:36
Remove all Docker images and containers
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
@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:2410991
Created April 18, 2012 03:48
Disabling the character picker in Mac OS X Lion
$ defaults write -g ApplePressAndHoldEnabled -bool false
@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:1995443
Created March 7, 2012 19:36
Print SSH key fingerprint
$ ssh-keygen -lf ~/.ssh/id_rsa.pub
@jgyllen
jgyllen / gist:1386534
Created November 22, 2011 18:55
sed commands
# Find rows containing string 'foo' in file bar.txt
$ sed -n '/foo/p' < bar.txt
# Replace occurrences of 'foo' with 'bar' in baz.txt and backup original to baz.txt.bak
$ sed -i.bak -e 's%foo%bar%' baz.txt