Skip to content

Instantly share code, notes, and snippets.

View raphaelmor's full-sized avatar

Raphaël Mor raphaelmor

View GitHub Profile
@raphaelmor
raphaelmor / styleguide.md
Created May 25, 2011 09:39
Code style guide

#Objective-C Style Guide ##Comments ###General Info Block comments /**/ should be avoided in favor of // (though they are not banned).

Inside comments, references to variables, classes and protocols should be surrounded by |.

// This class is responsible for keeping up to date a list of |Item| objects.
@nateluzod
nateluzod / killsvn.sh
Created May 22, 2011 16:51
Remove any and all traces of SVN
find . -name .svn -exec rm -rf {} \;