Using Slack for Server Development

More than 9 years old

I recently found a surprisingly helpful approach for server-side development which uses Slack in a creative way. The Problem The scenario can be …
Read more

Simple Continuous Integration for Docker Images

More than 9 years old

In this article I’m going to demonstrate a few tips and tricks which can make your life easier when you are building or maintaining Dockerfiles. …
Read more

Run Amazon DynamoDB locally with Docker

More than 9 years old

tl;dr: Run DynamoDB locally using Docker: docker run -d -p 8000:8000 dwmkerr/dynamodb Try it out by opening the shell, localhost:8000/shell: …
Read more

Effective Node.js Debugging

More than 9 years old

If you are interested in improving your Node.js debugging skills, then check out my talk at the recent JSChannel 2016 conference in Bangalore: …

Testing the Docker for Mac Beta

More than 9 years old

I’ve finally had a chance to install the new Docker for Mac Beta and give it a whirl. In this article I’m going to talk a bit about how …
Read more

Is it worth persevering with Golang?

More than 9 years old

I recently decided to try out the Go Programming Language, by building a little project called google-it which let’s me run a google search from …
Read more

What's your Vim Name?

More than 9 years old

I’m a few weeks into moving to Vim as my main editor, I’ve stopped crying and shaking mostly (at least about my editing ability). Now …
Read more

Quick Tip: Sending Newlines with cURL

More than 9 years old

Yikes, this took far too long to figure out! I have a service which takes plain text multi-line input and outputs an object for each line, something …
Read more

Moving from React + Redux to Angular 2

More than 9 years old

I’ve just finished working on a very large project written in React and Redux. The whole team were new to both and we loved them. I’m …
Read more

Learn Docker by building a Microservice

More than 9 years old

If you are looking to get your hands dirty and learn all about Docker, then look no further! In this article I’m going to show you how Docker …
Read more