Skip to content

Instantly share code, notes, and snippets.

@juice
juice / .gitignore
Created June 19, 2012 07:59
Xcode .gitignore
# Mac OS X Finder and whatnot
.DS_Store
# Sparkle distribution Private Key (Don't check me in!)
dsa_priv.pem
# XCode (and ancestors) per-user config (very noisy, and not relevant)
*.mode1
*.mode1v3
*.mode2v3
@juice
juice / git-completion-osx
Created May 18, 2012 18:38
OS X git completion
cd ~
curl https://github.com/git/git/raw/master/contrib/completion/git-completion.bash -OL
mv git-completion.bash .git-completion.bash
echo -e "\nsource ~/.git-completion.bash\n" >> ~/.bash_profile
- (void)myMethod {
NSString *name;
NSLog(@"name: %@", name);
}