Mar 2016

22

Rethinking web apps with React & Alt - Part 1

React.JS lets you create composable view components. Flux is an application architecture for building complex User Interfaces. It allows you to handle data flows throughout your application. It is a pattern rather than a formal framework. Unlike Angular and Knockout, the data flows in a uni-directional. What this means is that data enters through a single place (Actions) and then flow outward through the State managers (Store), finally to the View.


Click to read more


Feb 2016

06

Reactive Apps with Elm Part 1

Elm is a functional programming language that compiles to JavaScript. It is extremely fast and has great features such as immutability, static typing and module system. It was designed as part of Evan Czaplicki's thesis in 2012.


Click to read more

Sep 2015

11

Succinct Ruby

I have heard of developers writing blogs sometimes so that it is a good reference point for themselves in the future. Today's blog is one of those cases where i wanted to document some of the amazing snippets of Ruby Code that i have come across over the years. Here are a few of them.


Click to read more

Apr 2015

13

Setting up MongoDB Cluster

I had to setup a MongoDB cluster at my job recently and i thought it would be useful to share the research i did for the same. As you might know MongoDB is a NoSQL document DB that scales well horizontally.


Click to read more