Skip to content

Instantly share code, notes, and snippets.

script(src='/javascripts/jquery-1.7.min.js')
link(rel='stylesheet', href='/stylesheets/bootstrap.min.css')
link(rel='stylesheet', href='/stylesheets/bootstrap-overrides.css')
script(src='/javascripts/jquery-1.7.min.js')
link(rel='stylesheet', href='/stylesheets/bootstrap.min.css')
link(rel='stylesheet', href='/stylesheets/bootstrap-overrides.css')
@hukash
hukash / hack.sh
Created April 1, 2012 16:09 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#

Writing Commit Messages

One line summary (< 50c)

Longer description (wrap at 72c)

Summary

#Config is there http://github.com/spyou/vim-config
#Give a go to vimtutor in order to have a little overview of Vim.
"open/save"
#:w (save)
#:q (quit)
#:qa (quit all buffers)
#:q! (quit without saving)
#:wq (save and quit)
git clone git://github.com/ry/node.git
cd node
./configure --prefix=/usr/share/node
make
sudo make install
cd /usr/bin
ln -s /usr/share/node/bin/node node
@hukash
hukash / Grails environment on Snow Leopard
Created October 11, 2009 09:02
Groovy/Grails environment on Snow Leopard
Install Groovy:
$ sudo mv groovy-1.x.x /usr/share
$ cd /usr/share
$ sudo chmod 0755 groovy-1.x.x/bin/*
$ sudo ln -s groovy-1.x.x groovy
Install Grails:
$ sudo mv grails-1.x.x /usr/share