Blog

React ContextAPI and the Reducer Pattern

Performing logic on data within components becomes more difficult as the amount of data increases. Consequently, as components grow and deal with larger sets of data, the storing and transportation of state across the entire application increasingly becomes more and...

Converting images from the linux command line

There are times when you might have need for converting between different image formats. This is pretty easy to accomplish in Linux with the ImageMagick software utility suite. ImageMagick is the swiss-army knife of command line image manipulation tools. It’s...

Fundamentals of React Routing

Single page applications have become all the rage nowadays. They take the concept of separation of concerns to a whole new level; the front end and backend are clearly demarcated and can be developed independently.