Graceful exits in GO

How to gracefully exit long running processes in GO
In this post I’m going to explain why we want graceful exists in programs, and how to implement them in GO.
Discussing all things around software engineering.
How to gracefully exit long running processes in GO
In this post I’m going to explain why we want graceful exists in programs, and how to implement them in GO.
How can interfaces make my code easier to maintain and extend?
Interfaces in go really allow you to think about the functionality of your code, rather than a specific implementation of that functionality.
A brief look into the `this` keyword in javascript
Working on Nodejs at work recently made me remember how confusing javascript can be. There are a lot of quirks that make it a powerful language, but for developers coming from a more strict OOP background they can seem broken. In this post I’m going to talk about this
in javascript.