Hidden gem in Git package: git gui

0
Git has very good command line interface. Git package also contains one handy GUI extension. Type command: git gui You'll get simple GUI tool for staging commits, viewing diffs...

Simple trick how to repeat last command in shell

0
Shells like Bash or Zsh have one neat feature: repeat last command. How to invoke it? Use double exclamation mark: !! This is very handy when you have...

tig – text mode git interface

0
Sometimes it is necessary to work only with text console. Git provides rich command line interface, but browsing history is little bit cumbersome. If you like...

Multiple cursors in IntelliJ Idea

0
Multiple cursors feature has been introduced also to IntelliJ Idea in version 13.1. This feature has been inspired by Sublime Text and it was the...

Multiple cursors in Sublime Text

0
Sometimes it is necessary to modify several places in text file at once. Sublime Text has very neat feature: multiple cursors. Point mouse cursor at desired...

Gradle daemon

0
Gradle requires Java and it can reuse all great features from the runtime. The drawback is that it takes several seconds to boot whole Groovy/Java...

IntelliJ Idea – almighty keyboard shortcut

0
InteliJ Idea is very powerful IDE. There is one keyboard shortcut which gives you full access to Ideas power: Ctrl+Shift+A You can type part of command or action...