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 …
Codeminer42’s Engineering Blog
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 …
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 …
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 …
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 …
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 …
If you’re a front-end developer like me, you’ve probably encountered the challenges of coding with Ruby and .html.erb files. It can be frustrating when your code doesn’t …
We live in an era when we are increasingly automating our day-to-day processes. We no longer go to bank agencies, but instead use digital banks …
For a couple of years now, the JS community has been using the famous spread operator, AKA three dots (…), to copy values in arrays …
The usual way to debug a Node.js application is to simply use the console module to inspect variables or objects, which is fast enough to …
Hello guys! When we are investigating errors or resolving a bug in our app, we all know the struggle of finding and fixing it. In …