Skip to content

Instantly share code, notes, and snippets.

@micahhausler
micahhausler / 0_reuse_code.js
Created December 10, 2015 21:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@micahhausler
micahhausler / gist:9055862
Last active August 29, 2015 13:56 — forked from anonymous/gist:9053693
Git command counter (OS X)
history -w /dev/stdout | grep -o "^git [a-zA-Z]*\( -\{1,2\}\([a-zA-Z]\)*\)*" | sort | uniq -c | sort -rg