Related Posts
Check the Top 10 Linux Commands you can’t live without
Type the following on your cmd line (or make into an alias) cat ~/.bash_history | sort | uniq -c | sort -r | head In my case they are (for this week) ls fg svnSync (script I created) stats_fetch; stats_display (other scripts) cd crontab -e ps aux | grep ssh_map_command (another script) python emacs -nw
How to check if a Java Process is running on any local Virtual Machine programmatically
Quick and dirty way to check if a Java Process is already running. Useful if you need to run cronjobs periodically and you don’t know how long they might take, you can add this check at the beginning of your main, and it’ll look for all the local virtual machines that have a main class […]
IntelliJ / Adroid Studio / CLion / GoLand / PyCharm / PHPStorm keymap shortcuts I can’t live without
Download settings.jar (Import with `File -> Import Settings`) I got to IntelliJ after years of using Emacs and Eclipse. Here’s how my keymap looks now that I work with Jetbrains tools, these are the keyboard shortcuts I can’t live without as a programmer. Legend (Mac keyboard) ⌘ Command ⇧ Shift ⌘1 Show Intent Actions […]