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
Tag: architecture
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 […]
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 […]
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 […]