Tips to work with legacy code Documentation One bite at a time A unit test that takes 1/10th of a…
Java
Java 8 streams examples that you should use
If you do programming as part of your day to day life, you will encounter loops multiple times a day.…
Maven Introduction
MAVEN GUIDE mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4 -DinteractiveMode=false What does it do? Execute the Maven goal archetype:generate, and passed…
How to migrate from Oracle Java 8 to OpenJDK 11
Recently I finished migrating my application from Java 8 to OpenJDK 11. Here are few steps where we got stuck…