My Engineering Article from TubeMogul – Git Commit Message


Today TubeMogul Engineering Blog published my first engineering article. TubeMogul’s Engineering team uses a number of tools to help us collaborate and track progress more effectively, including Git, the popular version control system. Git’s commit messages are an integral part of establishing context for code changes, and maintaining an effective workflow. Read on for some… Continue reading My Engineering Article from TubeMogul – Git Commit Message

Working with Fixed Map – Unmodifiable or Immutable?


We often have to work with a defined collection of values in our programs. Maps are one way of holding those defined values and retrieving those by names when we need to use. One easy way of reusing those predefined values have been using static maps in a class so that we don't instantiate those… Continue reading Working with Fixed Map – Unmodifiable or Immutable?

1 Day Delivery from Amazon Prime – Java 8 In Action by Manning Publications


I got 1 day delivery by amazon prime today of the below book. Java 8 in Action: Lambdas, Streams, and functional-style programming by Raoul-Gabriel Urma et al. Link: http://amzn.com/1617291994 Youtube Video: https://www.youtube.com/watch?v=Rd-sqHjmfB0&feature=youtu.be Manning Page: http://www.manning.com/urma/ Source Code from Github: https://github.com/java8/Java8InAction/

Spring with Maven using Spring Boot


I started playing around Spring after a long time. I needed to quickly get ramped up and hence used Spring Boot module to get spring,maven, embedded tomcat up and running. The sample files in this example I have committed to my public github repository here - https://github.com/ashikuzzaman/springchecks You can use the below steps so hat you… Continue reading Spring with Maven using Spring Boot