Setting up ActiveStorage + CloudflareR2 + Quill
Hello, fellow readers! Today we will do a little hands-on project to implement a Post Editor. Our goal will be to implement a fully functional …
Codeminer42’s Engineering Blog
Hello, fellow readers! Today we will do a little hands-on project to implement a Post Editor. Our goal will be to implement a fully functional …
Things are changing on Ruby on Rails 8.0! Solid Queue and Solid Cache will be the new default gems for background jobs and caching for …
There is a moment in the life of very few every programmer when they become fixated on working solely through the terminal. I’m one of …
Third-party cookies received an ultimatum. Browsers are currently phasing them out, which means they won’t be allowed anymore if you use any modern browser, like …
Testing with RSpec: Part I – Basic concepts Introduction Hello, fellow reader! Let’s explore the fundamental concepts for the Ruby gem RSpec together. We’ll cover …
Web technologies come and go very frequently, but some tend to stick longer than others. WordPress is a big example of that. For its simplicity …
Upgrading a Ruby on Rails application may sound like a daunting task, but fear not! This guide presents a strategic approach to handling a Rails …
GitHub Copilot is an AI-powered code completion and generation tool that works seamlessly within integrated development environments (IDEs). It has revolutionized the industry, capturing the …
Immutability is a fundamental pillar within the functional programming paradigm. This allows us to write robust, simple, and reliable code. An immutable object, once created, …
Auto-Saving is a way to ensure that data provided by a user is persisted without needing them to click on "Send" or "Submit". You may …