Codeminer42's Engineering Blog
Intermediate

LocalStorage and Cookies under the hoodies
It is usual, as developers, to use tools that we don’t entirely understand. Web storage on browsers and cookies are examples of things we use without knowing what is happening…
Increase Performance with Sidekiq and Redis
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 can still take a long…
A/B Testing – Slightly different but the same
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 through an A/B test, congrats!…
Making a Full-Stack App with Vue, Vite and Express that supports Hot Reload
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 common for applications that use…
Dependency injection in React with some Context
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 applications. In this article we're…