Solving the Expression Problem in Javascript
I just watched a great presentation by Daniel Spiewak called Living in a Post-Functional World. I watched it mainly because I heard it was a great presentation on how to deal with modules, which […]
View ArticleTunneling to localhost via SSH
Sometimes when working with a new web site I have customers who want to see the site while it is still in development. One way of doing this is to have alternative demo servers […]
View ArticleA Consultant's Wishlist
As a consultant I am called in to solve specific problems and I would like to start working on the problems at hand as soon as I can. But, very often, there are other […]
View ArticleClean Grunt
Grunt is the tool of choice for many client side web projects. But, often the gruntfiles look like a mess. I believe the reason for this is that many people don't care about keeping […]
View ArticleRunning scripts with npm
Most people are aware that is is possible to define scripts in package.json which can be run with npm start or npm test, but npm scripts can do a lot more than simply start […]
View ArticlePing-Pong Pairing Over Git
When practicing new programming techniques I am a fan of ping-pong pairing. Ping-pong pairing is a way of pairing with TDD that evenly distributes the amount each programmer spends in front of the...
View ArticleLambda, Javascript Micro-Services on AWS
Amazon just released a bunch of new services. My favorite is Lambda. Lambda allows me to deploy simple micro-services without having to setup any servers at all. Everything is hosted in the AWS cloud....
View ArticleA Not Very Short Introduction to Docker
This is the notes that accompany my presentation called Docker, the Future of DevOps. It turned out, quite fittingly, to be a whale-sized article :). What Is Docker And Why Should You Care? Contrary...
View ArticleExtending CloudFormation with Lambda-Backed Custom Resources
CloudFormation stacks are very nice for setting up complete server environments. But, there are a few problems. Keeping all resources in one stack may not be possible since some resources, such as...
View ArticleSimple Clustering with Docker Swarm and Nginx
Bringing up your own cluster has never been easier. The recent 1.0 release of Docker Swarm signals that the Docker team feel that Swarm is ready for production. I've been running a bunch of […] The...
View Article