Skip to content

Instantly share code, notes, and snippets.

@svnlto
svnlto / install.md
Created December 12, 2011 22:59
Setup OS X 10.7 w/ homebrew, oh-my-zsh, rvm, nvm

Setup new Mac with OSX Lion from scratch

These commands are good as of 2011-07-27.

Install Xcode 4

The download/install takes a while so start it first. When it finishes downloading you will still need to run it to complete installation.

Really the nicest choice for a terminal on OSX right now, especially with Lion style full screen support.

@lbalceda
lbalceda / gist:e0e8e13da4011e696adf
Last active September 22, 2015 18:36
git delete merged branches
git branch --merged | grep -v '\*\|master\|develop\|alpha' | xargs -n 1 git branch -d

We're excited to have you attend one of our workshops! Here's a JavaScript (re)fresher to help you get up-to-speed on some features of the language we'll be using.

Let and Const

JavaScript has always had var:

var name = 'Ryan'