Skip to content

Instantly share code, notes, and snippets.

@minhanhhere
minhanhhere / proguard-android.ini
Last active November 30, 2016 06:28
Global Android Proguard
# Global
-verbose
-dontpreverify
-repackageclasses
-allowaccessmodification
-optimizations !code/simplification/arithmetic, !field/*, !class/merging/*
-optimizationpasses 5
## -dontobfuscate
@minhanhhere
minhanhhere / .bash_profile
Last active August 29, 2015 14:19
A .bash_profile for MAC
## INSTRUCTION
## Add these lines at the end of your ~/.bash_profile
## If the file is not there, create it with:
## touch ~/.bash_profile
PS1='\[\033[0;93m\]\u\[\033[0;97m\]@\[\033[0;96m\]\h\[\033[00m\]:\[\033[0;91m\]\w\[\033[00m\]\$ '
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias ll='ls -alF'