~
ryan.clark

Going native with React, an introduction

May 11, 2015

As 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, 2015

A 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, 2015

If 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, 2015

React 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, 2014

AngularJS implements dirty checking for two way data binding on $scope variables. Unlike dynamically setting up setters and getters , which…