Last active
February 8, 2017 08:25
-
-
Save yuanmai/7364481 to your computer and use it in GitHub Desktop.
-
Homebrew
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
- Cocoapods
sudo gem install cocoapods
- Node
brew install node
npm install -g less
curl -sk https://cloud.github.com/downloads/square/PonyDebugger/bootstrap-ponyd.py | \
python - --ponyd-symlink=/usr/local/bin/ponyd ~/Library/PonyDebugger
ponyd serve --listen-interface=127.0.0.1
- Use git sha1 as version number
HEAD=`/usr/bin/env git rev-parse --short HEAD`
defaults write "$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH" CFBundleShortVersionString "$HEAD"
- Pods Control Directory
- Pixate Style Ref
- Hex to/from RGB
- Pixate Colors
- Pixate Playground
- CSS like layout, WeView
- Place holder generator
- nui
- Flat Icons
- git cheatsheet
- HTML -> UILabel
- HTML -> NSAttributedString
- Dismiss keyboard
- Prefer new over alloc init
- Prefer array[i] dict[i] over objectAtIndex etc.
- Prefer @[] @{ a: b} over [NSArray array...]
- Prefer (CGRect) { 1, 2, 3, 4} over CGRectMake
- Prefer funtional programming over for while { if }
- Funtional Programming
- Git
- Tutorial
- Learning by doing
- Simple System
- Simple Made Easy
$(document).on('click', 'li', function() { })
over
$('li').click();
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment