I hereby claim:
- I am zacs on github.
- I am zacs (https://keybase.io/zacs) on keybase.
- I have a public key whose fingerprint is 3841 1CC6 F197 1927 FD7B EABA FDE5 227D 120D 7755
To claim this, I am signing this object:
How did you find this place? | |
You had the coordinates for this facility marked on your map. Where did you get them? | |
How did you find us? | |
All here, Mr Cooper. Plenty of slaves for my robot colony. | |
I have a cue light I can turn on when I’m joking, if you like. | |
You can use it to find your way back to the ship after I blow you out the airlock. | |
One hundred percent. | |
Ninety percent. | |
Absolute honesty isn’t always the most diplomatic, or safe form of communication with emotional beings. | |
Eight months to Mars, then counter-orbital slingshot around. |
for a in *.flac; do | |
ffmpeg -i "$a" -ab 320k -map_metadata 0 -id3v2_version 3 "${a[@]/%flac/mp3}" | |
done |
I hereby claim:
To claim this, I am signing this object:
Phrase | Word Count | Frequency | |
---|---|---|---|
this is what happens when you fuck a stranger in the ass | 12 | 2 | |
he lives in north hollywood on radford near the in-and-out burger | 11 | 2 | |
it's a complicated case maude lotta ins lotta outs | 9 | 2 | |
so what the fuck are you talking about | 8 | 2 | |
what the fuck are you talking about | 7 | 6 | |
what the fuck is he talking about | 7 | 2 | |
we know that this is your homework | 7 | 2 | |
we throw the money out of the | 7 | 2 | |
you're out of your element this chinaman | 7 | 2 |
var Utils = { | |
cache: {}, | |
watchResize: function(callback) { | |
//throttled resize | |
var resizing; | |
callback.size = 0; | |
function done() | |
{ | |
var curr_size = window.innerWidth; | |
clearTimeout(resizing); |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2322839/hack.sh | sh | |
# |