๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -L http://install.ohmyz.sh | sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Install rvm | |
\curl -sSL https://get.rvm.io | bash -s stable --ruby | |
// tail of the .zshrc | |
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
source $ZSH/oh-my-zsh.sh | |
// .zlogin | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install --user git+git://github.com/Lokaltog/powerline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Xcode | |
.DS_Store | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
platform :ios, '7.0' | |
target :MyApp, :exclusive => true do | |
pod 'KVOController' | |
pod 'CleanTableViewDataSource' | |
pod 'Mantle', '~> 1.5' | |
pod 'AFNetworking', '~> 2.2' | |
pod 'Ono' | |
pod 'SVProgressHUD', '~> 1.0' | |
pod 'WYPopoverController', '~> 0.2.0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP_ID="53c4a57bd478bc36a6000012" | |
API_KEY="0CkEtfMSZ74Gb6qqxcyWVfJv1di4HYND" | |
SHOW_CONSOLE=1 | |
UPLOAD_SIMULATOR_SYMBOLS=0 | |
source ${SRCROOT}/Pods/CrittercismSDK/CrittercismSDK/dsym_upload.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
# View abbreviated SHA, description, and history graph of the latest 20 commits | |
l = log --pretty=oneline -n 20 --graph --abbrev-commit | |
# View the current working tree status using the short format | |
s = status -s | |
# Show the diff between the latest commit and the current state | |
d = !"git diff-index --quiet HEAD -- || clear; git --no-pager diff --patch-with-stat" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Enable | |
-fobjc-arc | |
// Disable | |
-fno-objc-arc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find string in all commits | |
$ git grep stringtofind $(git rev-list --all) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EXC_BAD_INSTRUCTION Assertion | |
SIGABRT Exception | |
EXC_BAD_ACCESS Memory error |