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
# first make sure app has been installed on each sim | |
open -n /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app | |
# alert will pop up "Unable to boot device in current state: Booted" | |
# click "ok" go to menu and choose device hardware |
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
#from http://stackoverflow.com/questions/23038391/reinstalling-homebrew-symbolic-links-after-a-restore | |
brew list | xargs -I % sh -c 'brew unlink %; brew link %' |
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
#build apk | |
cd android && ./gradlew assembleRelease | |
#rename apk with date (run from android dir) | |
d="app/build/outputs/apk/AlphaBucks $(date +"%Y-%m-%d %H-%M")"; mkdir "$d" && cp app/build/outputs/apk/app-release.apk "$d" |
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 iterm2, vscode | |
#zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
#show hidden files - select MacHD and press command shift dot | |
#install homebrew |