Skip to content

Instantly share code, notes, and snippets.

View gcorreaq's full-sized avatar

Gonzalo Correa-Young gcorreaq

View GitHub Profile
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
green='\033[0;32m'
#!/usr/bin/env python
#
# Copyright 2012 by Jeff Laughlin Consulting LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
@gcorreaq
gcorreaq / htop-on-lion.md
Created April 18, 2012 17:12 — forked from blakeeb/htop-on-lion.md
Installing htop on OSX Lion
@gcorreaq
gcorreaq / haml-watch.rb
Created February 23, 2012 19:11
Watch and compile all haml files on a directory, like sass --watch
#!/usr/bin/env ruby
# Script to watch a directory for any changes to a haml file
# and compile it.
#
# USAGE: ruby haml_watch.rb <directory_to_watch> [output_directory]
#
# Blake Smith / http://blakesmith.github.com/2010/09/05/haml-directory-watcher.html
#
# Fork by Gonzalo Correa (https://github.com/gcorreaq)
#