Skip to content

Instantly share code, notes, and snippets.

View jcliff's full-sized avatar

Jordan Clifford jcliff

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jcliff on github.
  • I am jcliff42 (https://keybase.io/jcliff42) on keybase.
  • I have a public key ASCy08qKFW-nq9iFp5NNh62BkaGO0Di6aYL_x6lYmLQpqQo

To claim this, I am signing this object:

@jcliff
jcliff / install_homebrew.rb
Created January 10, 2012 18:47 — forked from mxcl/install_homebrew.markdown
Installs Homebrew to /usr/local so you don't need sudo to `brew install`
#!/usr/bin/ruby
# This script installs to /usr/local only. To install elsewhere you can just
# untar https://github.com/mxcl/homebrew/tarball/master anywhere you like.
module Tty extend self
def blue; bold 34; end
def white; bold 39; end
def red; underline 31; end
def reset; escape 0; end
def bold n; escape "1;#{n}" end