Codeminer42's Engineering Blog
The Miners

CodeTips#11: useEffect the right way
Recently, I've been delving into the basics of front-end development with React, one observation I've made is that many people in the front-end world usually retrieve their data with useEffect.…
Understanding complex Rails projects – Ruby on rails stack trace made easy
The challenge of understanding complex systems Imagine a scenario where a project is so large and its features so complex that tracking and understanding the entire flow can take days.…
What you need to internationalize your Jekyll website
Hello, there! If you are looking for information regarding the internationalization of Jekyll websites, you have come to the right place. Here, we are going to talk about how to…
Creating Powerful Rails Project Templates
In this article, we'll dive into how the rails config file can be helpful to streamline your rails project templates, especially, if you need to set up many rails projects…
CodeTips#10: Throttle and Debounce
When you learn to code, you usually start with understanding types and declaring variables, then reusing code through functions, calling pieces of code conditionally, calling code multiple times with loops,…