Codeminer42's Engineering Blog
The Miners

CodeTips#4: Debugging Ruby applications
When our code is behaving unexpectedly, our first attempt is usually trying to understand why it happened, but just thinking about it might not be enough. It's easier to understand…
Dependency Injection in JS/TS – Part 1
Photo by Vadim Sherbakov on Unplash Table of Contents Intro Fundamentals Terminology Build vs Use Varying Implementations Mock Implementations In Development Extracting Configuration Dependency Injection With Classes Deciding What to…
Mastering Git workflow – Part 1/2
Hi guys. In today's post, will talk about git. At this point, you probably already know that all the usual commands (e.g git-add, git-checkout, git-commit) are enough for you. With…
Adding a new technology or concept in your team (the correct way)
Sometimes when we are developing some chunks of code, we start to question why I am doing it this way? Should I do it in another way? Is there a…
Serialization and Deserialization in Java using Jackson
Before we start working with serialization and deserialization in Java we need to understand what these terms actually mean. Serialization is the process of converting the state of an object…