How to Uninstall Android Studio 2.2 on Ubuntu 16.04

Delete the android-studio folder; Delete the sdk folder if it is in not inside the android-studio directory; Delete ~/.AndroidStudio2.2/, which contains config and system; Delete ~/.android; Delete ~/.local/share/applications/jetbrains-studio.desktop, if you created a shortcut using Configure->Create Desktop Entry. Note: The android-studio folder is normally in /usr/local/ for your user profile, or Read more…

Ubuntu Useful Tips

1.  Create alias Adding alias line at the end of the file: ~/.bashrc alias [alias_name]='[something_you_want]’ Ex: alias elasticsearch=’~/Downloads/elasticsearch/bin/elasticsearch’ 2. Tmux control terminator’s sessions https://gist.github.com/MohamedAlaa/2961058 3. Terminator cheat sheet http://www.knuckleheadtech.com/terminator-cheat-sheet/ 4.  Check memory (RAM) $ free -m # To monitor memory usage with updates every five seconds. $ watch -n 5 Read more…