Skip to content

Instantly share code, notes, and snippets.

@fernandomr
fernandomr / navigateAndResizeImages.sh
Last active August 3, 2022 12:14
Resize images using imagemagick
# absolute path to image folder
FOLDER=""
# max width
WIDTH=620
# max height
HEIGHT=620
# 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
@fernandomr
fernandomr / bash_profile
Last active November 2, 2017 14:53 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
alias mysql=/Applications/MAMP/Library/bin/mysql
@fernandomr
fernandomr / latex-install.sh
Last active May 21, 2016 14:51
Instalação latex sem e com suporte a matemática
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
# 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)