Change Current Java Version in Windows 10 in one click - using a batch file
  [draft]

In the world of microservices, we work on different versions of Java in different microservices. It takes some effort to open the Windows configuration screen to change the Java version and run your builds. Manually doing it once in a while is ok, but what if you want to do it when you have a production defect in hand? I found an opportunity to automate this. So I created this simple batch file to change the Java version with one click....

1 min · Chetan Gole

To be, or not to be: Code Comments
  [draft]

I believe in writing code such a way that, you don’t need to provide the documentation with your source code to understand how it works. Naming the functions, variables and even logs can help understand the source code flow instead of writing long confusing comments. However sometimes the comments also help. There are a lot of good discussions around whether we should add comments in our code or not. Please go through below links to read more:...

1 min · Chetan Gole