Web Development
As a designer who stumbled into Ruby on Rails, I always look for more opportunities to simplify, bringing better design to the framework. I’m working on a new project ca...
2430 reads
Ruby on Rails, commonly referred to as Rails, is a popular and powerful web application framework written in Ruby programming language. Its simplicity, efficiency, and e...
1679 reads
In Ruby on Rails, sending emails is a common task for applications. However, during development, it's essential to avoid accidentally sending real emails to users. Thi...
3069 reads
If you've used Rails for a length of time you've likely gotten an error of this type: "Address already in use - bind(2) (Errno::EADDRINUSE)"
Running multiple instance...
6230 reads
Welcome to another edition of my Hotwire and Rails series, where I take you through a journey of creating old con...
2037 reads
In this Rails quick tip, I'll discuss a built-in command you can use to supercharge the tedious database configuration process with Ruby on Rails.
First, you'll need ...
600 reads
In Ruby on Rails, a common issue developers face is n+1 queries, which occur when an application sends multiple queries to the database instead of combining them into a ...
1950 reads
Welcome to a brand new "Let's Build" tutorial series where I use Rails in the combination of hotwired.dev to create components with little to no ...
4263 reads
The annotate Ruby gem boosts developer quality of life and is one I use in every new Rails project.
The idea of the gem i...
1102 reads
Many moons ago, RSS was all the hype. With fewer publication engines like Medium, Substack, and other newsletter-style engines, most people would create their websites t...
3146 reads
I find YAML
to be a godsend when rendering static data that doesn't necessarily need to be a part of a database using Ruby on Rails.
In the Ruby ecosystem, YAML
i...
6338 reads