Categories
Data Driven

On the Harry Potter Metric

I struggled with providing a clear message to the business about how much code we have and came up with a Harry Potter Metric, i encourage you to read more about it on dev.to

Categories
Projects and Code

Setup free Kubernetes cluster on Oracle Cloud

What is it all about? If you always wanted to create your own Kubernetes cluster from scratch, learn all the nitty-gritty and experiment with highly available environment, these tutorial is for you. We’re going to setup a multi-node, highly-available cluster and deploy a simple application that will help you grasp all the details and connect […]

Categories
Data Driven

Git mining

Software development leverages version control for multiple reasons. I assume that you are familiar with git blame used to trace a person who committed particular change, git checkout to several branches to find out which version does contain a bug and which doesn’t. The history of changes is however useful not only for survival when […]

Categories
Pondering

Forget HTTP, use Websockets

For most applications you’re going to build, HTTP communication is a no-brainer. However, as a system grows, a real-time communication between client and server becomes a requirement and the developers apply a websocket-based solution. But websockets not only provide push notification from server to client, they also create a handful of opportunities to follow good […]