Blog Posts

Recent posts

Java - generating a self-signed public key

less than 1 minute read

1 2 3 4 5 6 7 8 9 10 1. Generate self-signed public key $JAVA_HOME/bin/keytool -genkey -alias test_alias --keyalg RSA -keystore test_key.jks -keysize 2048 -d...

Git diff and merge tool with Intellij Idea

less than 1 minute read

Windows 1 2 3 4 5 6 7 8 9 [merge] tool = intellij [mergetool "intellij"] cmd = cmd.exe //c "\"c:/Program Files (x86)/JetBrains/IntelliJ IDEA Communit...

C++ - Exception handling

less than 1 minute read

The following article provides a good way of using Exceptions in C++ http://www.acodersjourney.com/2016/08/top-15-c-exception-handling-mistakes-avoid/

C# - EF lifetime of DBContext

less than 1 minute read

The following article has a useful information on handling the lifetime of DBContext in EF. http://mehdi.me/ambient-dbcontext-in-ef6/