Effective git merge and rebase

0
Do you use git? Then you probably know the basic commands like git pull, git merge and git rebase. These are pretty common, but...

Successful VisualStudio 2013 solution build on CI server using MSBuild

0
Sometimes you may need to setup Continuous Integration server to build VS solutions without installing VisualStudio there. But MSBuild is not able to build...

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...

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...

Quick and dirty workaround for broken brew in Mac OS X...

0
I am trying to setup better go development environment and decided to give vim-go a try (which also resulted in me replacing Vundle with...

Git: How to fix last commit

0
You made changes in your repository. You made the commit and at the very same moment you realize that it's not completely correct. You need to...

Python 3 and virtualenv

0
Virtual environment is essential component of Python world. You can isolate different version of packages into separate environments. How to set up virtualenv? Install Python and...

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...

Gradle GUI interface

0
Gradle is great tool for automation in organization. Software developers often stick just with command line or IDE integration. Non-programmers can use Gradle GUI...

.NET-Java key agreement made easy

0
In latest project we came across the problem of securing communication, where peers don't share backend language. Our goal was to securely generate shared...