Styled Components and Storybooks
March 02, 2018I recently discovered two new react development tools that have changed how I approach React component development: Storybook and styled…
I recently discovered two new react development tools that have changed how I approach React component development: Storybook and styled…
Javascript decorators are a form of metaprogramming: they add functionality to classes and properties. Unlike the GoF pattern, where…
I was recently challenged to implement a least recently used (LRU) cache in javascript, which taxed both my object-oriented javascripting…
I recently discovered some new (to me) features of enums, and so naturally I am now using them for everything. One of these new-to-me…
Some companies don’t allow their employees to use social media at work, and some countries don’t allow their citizens to access news outside…
While wading into the wide world of high throughput production Java, I have been enjoying guidance from “Java Concurrency in Practice” by…
I have been working on a Java concurrency bug at work for the last few weeks, and the intertwining concepts of immutability and publication…
Annotations are a means of adding metadata to Java source code. They can be applied to declarations of classes, fields, methods, and types…
Many people would like a do-over of 2016, but this was a pretty epic year for me. I was traveling pretty constantly, reading voraciously…
Browser-sync is the fastest way to spin up a local web server. It will even open your default browser with the entry point you specify, and…