Codeminer42's Engineering Blog
CodeTips

Everything you should know about Background Jobs with ActiveJob
Orchestrating background tasks (or "jobs," as they are often called) is common in web development. Any application that deals with time-consuming operations, such as sending emails, processing images, or integrating…
Rails + Stimulus + React
The current state of the Rails Framework is nearly unanimous among developers, as it encompasses everything a web application needs from start to finish. It covers everything from infrastructure setup…
Welcome to the worst form ever!
Welcome to the worst form ever! I am sure you have seen some bad forms around the internet. Sometimes the inputs are disabled at the wrong moment, sometimes the navigation…
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.…
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,…