Skip to content

Instantly share code, notes, and snippets.

@yomike05
yomike05 / gist:4120132
Created November 20, 2012 18:54 — forked from johnmdonahue/gist:1842561
Quick Node Install from GitHub
$ sudo apt-get update
$ sudo apt-get install git-core curl build-essential openssl libssl-dev
# node
$ git clone git://github.com/joyent/node.git && cd node
$ git checkout v0.8.14
$ ./configure
$ make
$ sudo make install
@yomike05
yomike05 / gist:2561128
Created April 30, 2012 18:47 — forked from johnmdonahue/gist:1904781
Quick Rbenv, Ruby and Rails setup
$ cd
$ git clone git://github.com/sstephenson/rbenv.git .rbenv
# Add the following to your .bashrc
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
# Install ruby-build
$ mkdir -p ~/.rbenv/plugins
$ cd ~/.rbenv/plugins