Skip to content

Instantly share code, notes, and snippets.

@zacs
zacs / tars-lines.txt
Last active October 30, 2023 14:04
Every line spoken by TARS in Interstellar. Not many, but in case you want to train a NN or Markov chain.
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.
@zacs
zacs / flac_to_mp3.sh
Created April 23, 2016 20:02
FLAC to 320CBR MP3
for a in *.flac; do
ffmpeg -i "$a" -ab 320k -map_metadata 0 -id3v2_version 3 "${a[@]/%flac/mp3}"
done

Keybase proof

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:

@zacs
zacs / LebowskiPhrases.csv
Last active March 28, 2021 04:23
Text segmentation analysis of the Big Lebowski script, looking for multi-word phrase size and frequency.
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
@zacs
zacs / footnotes.js
Created January 19, 2014 02:44
Code for adding Grantland-style footnotes to Jekyll.
var Utils = {
cache: {},
watchResize: function(callback) {
//throttled resize
var resizing;
callback.size = 0;
function done()
{
var curr_size = window.innerWidth;
clearTimeout(resizing);
@zacs
zacs / hack.sh
Created April 6, 2012 20:51 — forked from erikh/hack.sh
OSX For Hackers
#!/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
#