Skip to content

Instantly share code, notes, and snippets.

View wrburgess's full-sized avatar
:shipit:
Shippin'

Randy Burgess wrburgess

:shipit:
Shippin'
View GitHub Profile
@wrburgess
wrburgess / Gemfile
Created December 10, 2012 15:48 — forked from daytonn/Gemfile
Automatic ejs template compilation
group :development do
gem 'ejs'
gem 'rb-fsevent' # optional
gem 'listen'
end
@wrburgess
wrburgess / API.md
Created August 22, 2012 19:10 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@wrburgess
wrburgess / bash_fun.sh
Created July 29, 2012 21:49
My bash functinos
dev () {
cd ~/Development
if [ ! -z "$1" ]; then
cd $1
fi
if [ "$2" == "-m" ]; then
if [ -e ~/Development/$1/$1.tmproj ]; then
open ~/Development/$1/$1.tmproj -a TextMate
@wrburgess
wrburgess / aliases.sh
Created July 29, 2012 21:48 — forked from daytonn/aliases.sh
My bash aliases
#File System
alias files="ls -l | grep -v ^d"
alias folders="s -ld */"
alias hidden="ls -ld .??*"
alias trash="rm -rf ~/.Trash/*"
alias delete="rm -Rf"
alias remove="rm -Rf"
alias lcl="cd /usr/local"
alias src='cd /usr/local/src'
alias bin='cd /usr/local/bin'