Advent Of Code 2016
I recently came across this site called Advent Of Code which lists set of problems in increasing order of complexity. If you are like me, trying to learn new programming language(in my case it’s Scala), then solving handful of such problems will greatly expedite your learning process.
Scala Topics - Case Classes
In this blog post, I am going to cover Scala’s Case class functionality. Scala being functional programming language, introduces new programming constructs like Case classes, traits & other features to support & enhance functional programming experience.
Postgres and Json - Part2
In this blog post, we are going to explore some of the json related operators & functions specific to filtering & processing of json based data.
Postgres and Json - Part1
In this blog post, we are going to look into the various json related functions available in postgres database specific to json creation.
Logback for Beginners
In this blog post, I am going to explain two key concepts of logging - log levels & logger hierarchy using logback logging framework.
AOP in Java
In this blog post, I am going to use an open source library called jcabi-aspects for implementing loggable aspect.
Kafka - Getting Started
In this blog post, I am going to outline the steps required for setting up Kafka in your local development machine.
Working with MongoDB using F# & C#
Postgres - BackUp & Restore
In this blog post, I am going to share with you all the commands required for taking database back-up & restoring database from those back-up files.
RxJava - SubscribeOn & ObserveOn
In this blog post we will cover the two most important aspect of RxJava programming which is configuring observeOn & subscribeOn listeners.