Going native with React, an introduction
May 11, 2015As a JavaScript developer, I would’ve never thought that I could make native mobile applications easily in JavaScript . Sure, we have…
RGB to Hex via Binary Shifting
April 16, 2015A colleague of mine presented me with this code, baffled as to how it works. We know it converts an RGB value to it’s hexadecimal equivalent…
Introduction to Facebook's Flux architecture
February 21, 2015If you’re like me and you wanted to go further with React, you more than likely would’ve checked out Flux , had a glance, closed the tab…
Getting started with React
February 17, 2015React is an insanely powerful framework by the amazing developers over at Facebook. Implementing a virtual DOM, it allows us to render…
How AngularJS implements dirty checking
July 14, 2014AngularJS implements dirty checking for two way data binding on $scope variables. Unlike dynamically setting up setters and getters , which…