Codeminer42's Engineering Blog
The Miners' Guide to Code Crafting

Debugging Rails Applications Made Easy
Dealing with bugs in Rails applications Bugs are common in the programming world. Every project, even with the development team's best practices, is susceptible to bugs. In this article, we'll…
How to consume APIs in React using Fetch and Async/Await
Learning to consume APIs is an essential step for anyone looking to create dynamic and interactive React applications. In this practical guide, we will explore how to use the fetch…
Web Development with Ruby on Rails
Ruby on Rails is a framework that has revolutionized the way we build modern web applications with speed, structure, and elegance. Today, as part of our Miner's Guide to Code…
Full Steam Ahead: Getting Started with Ruby on Rails
Before we start If you're here, you probably already know Ruby. If not, check out this blog post, which goes over how to get started with the language. So, what…
Async Code Demystified: Promises, Fetch, and useEffect
Before we start digging into the world of Promises, Fetch API, and related topics, it is important to understand the difference between synchronous (sync) and asynchronous (async) programming models. A…