Codeminer42's Engineering Blog
The Miners

Integers overflow and underflow
As we all should know already, memory is not an infinite resource despite looking like it. Given our current scenario where hardware is relatively cheap, when writing programs with high-level…
Creating a development environment with docker and docker compose
Did you ever try to run code on your local machine, but it simply didn't work? And when you ask for help all you hear back is "It works on…
Do you know the CI/CD initiative?
Nowadays, the DevOps culture is present in many projects and companies of all sizes. The main concepts of this culture are Continuous Integration and Continuous Delivery/Deployment (CI/CD), which consists of…
How to use dynamic Components in Vue
Hi guys, in today's post I want to share an interesting scenario about using dynamic components with you. Imagine this situation where you have a search feature in your application.…
A practical dive into functional programming
Hi folks! I've been working on a personal project, a simple Express.js REST API. But after a while, I got stuck on a simple problem: What is the best way…