View gisttools.js
mogrify -resize 373x663 *.JPG | |
mogrify -crop 373x553+0+100 *.JPG |
View profile_compilation_times.sh
#!/bin/bash | |
xcodebuild -workspace App.xcworkspace -scheme App clean build OTHER_SWIFT_FLAGS="-Xfrontend -debug-time-function-bodies" | grep .[0-9]ms | grep -v ^0.[0-9]ms | sort -nr > culprits.txt |
View update_brew.sh
#!/bin/bash | |
brew update && brew upgrade `brew outdated` |