Tutorials


Setting up Rubocop correctly with Gitpod and VSCode Ruby
I've recently come across Gitpod. Gitpod provides cloud-based development environments. They're similar to GitHub Codespaces, but in my opinion offer a better experience. Setting up an environment is simpler and they are all about ephemerality. Th...


How to Add Custom Filters to Administrate Dashboards
Administrate is one of my favorites Rails gems.It gives you a CRUD interface for your entire database in seconds.This means any admin user can log in and get access to our database records from the browser. They can create, read, update, or delete...

How to change the database in a Rails application?
sometimes I came across the need to change the application's database, because many times we start with a study project with Sqlite3 and then the project ends up getting bigger with another need and then we decided to change to another one like (P...


How to Manage Null Constraints With Migrations in Ruby on Rails
Ruby on Rails makes it easy to write migrations to modify your database schema. But null constraints... Tagged with ruby, rails, webdev.Ruby on Rails makes it easy to write migrations to modify your database schema.But null constraints are a topi...


The Complete Guide to Blazing-Fast Performance in Rails
Ruby on Rails is a tremendous framework when you want development speed for your project or startup.... Tagged with rails, productivity, startup.Ruby on Rails is a tremendous framework when you want development speed for your project or startup. I...