This will take about 30 minutes.
First, we need to install Homebrew. Homebrew allows us to install and compile software packages easily from source.
| Foo = require("./foo.coffee") | |
| describe 'Foo', -> | |
| testOpts = | |
| initialNumber: 255 | |
| initialArray: [255,255,255] | |
| expectedBinary: 10010010101110101000 | |
| it 'should return a correct binary string', -> | |
| foo = new Foo() |
| # Description: | |
| # Aww, Yiss | |
| # | |
| # Dependencies: | |
| # None | |
| # | |
| # Configuration: | |
| # None | |
| # | |
| # Commands: |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| # Description: | |
| # john is the most important thing in your life | |
| # | |
| # Dependencies: | |
| # None | |
| # | |
| # Configuration: | |
| # None | |
| # |
| # ZSH: Git Directory switch with tab completion | |
| # $ wd [tab] | |
| GIT_DIR=$HOME/git | |
| wd() { cd $GIT_DIR/$1 } | |
| compctl -W $GIT_DIR/ -/ wd |
| { | |
| "binary_file_patterns": | |
| [ | |
| "*.scssc", | |
| "*.jpg", | |
| "*.jpeg", | |
| "*.png", | |
| "*.gif", | |
| "*.ttf", | |
| "*.tga", |
| #!/usr/bin/env bash | |
| pattern=$1 | |
| PORTS="" | |
| if [ -z "$pattern" ]; then | |
| PORTS=$(lsof -iTCP -sTCP:LISTEN) | |
| else | |
| PORTS=$(lsof -iTCP -sTCP:LISTEN | grep -i "$pattern") | |
| fi |
| - name: VikingActionBarFrame | |
| version: | |
| keep: true | |
| - name: VikingActionBarShortcut | |
| version: | |
| keep: true | |
| - name: VikingBuddies |
I use this in my terminal prompt: itg.zsh-theme