Skip to content

Instantly share code, notes, and snippets.

View robertwalker's full-sized avatar

Robert Walker robertwalker

View GitHub Profile
@robertwalker
robertwalker / rest_networking_demo
Last active December 25, 2015 08:09
Some content used for demoing RESTNetworking
`Twas brillig, and the slithy toves
Did gyre and gimble in the wabe:
All mimsy were the borogoves,
And the mome raths outgrabe.
"Beware the Jabberwock, my son!
The jaws that bite, the claws that catch!
Beware the Jubjub bird, and shun
The frumious Bandersnatch!"
He took his vorpal sword in hand:
@robertwalker
robertwalker / post-checkout
Created October 12, 2010 00:17
Remove Xcode build dir when switching branches
#!/bin/bash
#
# Post-checkout script to remove Xcode build directory when
# checkout out from a branch.
#
# post-checkout args
# <prev HEAD> <new HEAD> <changing branches, flag=1>
#
BUILD_DIR='build'
@robertwalker
robertwalker / gitignore
Created July 21, 2010 23:24
Git ignore file for Xcode projects
# Ignore Finder spam
\.DS_store
# Ignore cruft in the project bundle
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
# Ignore build products folder
build/