Codeminer42's Engineering Blog
Advanced

Mastering Derived Tables in Rails
Hey fellow Rails developers! Ever found yourself wrestling with complex SQL queries that involve aggregations, subqueries, or needing to join against computed results? Today, we're diving into one of the…
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…
The Road To JVM: How To Create A Brainfuck Interpreter
While studying low-level programming and the fundamentals of computation, I stumbled upon Brainfuck, an esoteric programming language. It has only eight commands and is very similar to the Turing machine…
How to Speed Up Mobile App Development with Expo OTA Updates
There are a lot of articles out there talking about how great it is to use OTA updates in production, but in this article, I’d like to focus on the…
React Server Components in Expo: A Practical Guide
I've seen a lot of traction towards the development and adoption of React Server Components (RSCs) with new frameworks like React Router and Expo having first-class support. As intriguing as…