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
| # start a Ionic angular blank project | |
| ionic start YOURAPPNAME blank --type=angular | |
| # running ionic cordova, where platform = android or ios | |
| ionic cordova run PLATFORM | |
| # Building ionic prod release: | |
| ionic cordova build android --prod --release | |
| jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore [YOUR_KEYSTORE.jks] app-release-unsigned.apk [YOUR_KEY_ALIAS] | |
| # zipalign is on Android/Sdk/build-tools/VERSION |
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 mysql=/Applications/MAMP/Library/bin/mysql |
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
| sudo apt-get install texlive texlive-latex-extra texlive-lang-portuguese kile | |
| sudo apt-get install texlive texlive-latex-extra texlive-lang-portuguese texlive-math-extra kile |
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
| # Source: http://choyan.me/oh-my-zsh-elementaryos/ | |
| sudo apt-get update && sudo apt-get install -y curl vim git zsh | |
| curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | bash | |
| sudo chsh -s $(which zsh) $(whoami) |