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

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

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

Unable to start Boot2Docker on Windows “VT-x is not available”

2
It's quite easy to install Docker on Windows. Just download installer and follow instructions. You might encounter following error message when starting Docker image: VT-X...

IntelliJ Idea on MacOS X Yosemite with Java 8

0
Update: add information about IntelliJ Idea 14 Java is no longer part of Mac OS default installation. When you want to start Idea on new...

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

VirtualBox 64bit guest on Windows 8.1

0
VirtualBox is able to host 64bit guest OS on Windows. That's useful for testing various platforms. The trouble begins when you turn on Hyper-V Windows Feature....

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

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