Codeminer42's Engineering Blog

CodeTips

  • Everything you should know about Background Jobs with ActiveJob

    · 25 min read · by Lucas Geron

    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

    · 8 min read · by Gabriel Quaresma

    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!

    · 6 min read · by Luiza Carvalho

    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

    · 6 min read · by Marcio Flavio

    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

    · 7 min read · by João Victor Vogler

    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,…