The reasons behind the “why”
As a consultant and senior engineer in my current role, part of my everyday job is dealing with less experienced developers, mentoring and helping them …
Codeminer42’s Engineering Blog
As a consultant and senior engineer in my current role, part of my everyday job is dealing with less experienced developers, mentoring and helping them …
At Codeminer42, we believe that participating in and actively contributing to software development communities are important aspects of our endeavors. Beyond our contributions through blog …
Keeping the momentum from my last article, this article aims to explain how sub-classes work in JavaScript. Sub-classes are what make inheritance possible, which is …
If you’re a programmer coming to JavaScript from other languages, you may have heard that JavaScript has "fake" classes. In this article, we’ll explore how …
We know that performance is one of the biggest factors that drive a system to success. But even using the most optimized algorithms, some tasks …
Remember when you went to the grocery store, and the employees had placed everything in a different layout since your last visit? You’ve just been …
A Component is an identifiable and interchangeable unit of a program. It plays an important role not just inside user interfaces but in Software Engineering …
Introduction With each passing day, web applications are becoming more and more reactive. JavaScript front-end frameworks are designed for this particular purpose. However, it is …
Dependency injection is a technique used to remove interdependencies between two components of an application, but for some reason, it’s not commonly used in React …
When we work on big projects a common path is to split it into separate codebases to make management easier. A modern and kind of …