Tutorials

🚀 Building a RESTful API with Ruby on Rails - DEV Community
Client-Server Architecture: REST separates the concerns of the client (application consuming the API) and the server (application providing the API). The client makes requests to the server, and the server responds with relevant data.Stateless Com...

Deploying to Railway, FlyIO, and Render with Rails - YouTube
Today we try deploying to a bunch of different services using a Ruby on Rails app: We try deploying to Railway, Fly.io, and Render!Checkout my course(s) at: https://learn.deanin.comIf you're looking to host, DigitalOcean is also a good place to st...

Infinite Scroll with Rails and Turbo - No JavaScript - YouTube
In this video tutorial, I will walk you through the process of creating an infinite scroll feature using Rails and Turbo 8. I wanted to see if using only Turbo was an option for this feature and turns out, it is! I was excited to discover this so ...





How to debug issues with Turbo Morphing | Radan Skorić's personal site
Turbo’s morphing feature can look magical. There’s a lot of pieces moving behind the scenes to make it come alive. That’s great when it works but when it doesn’t you might be left staring at the screen unsure where to start to debugging it. Maybe ...


Finding Postgres rows too large for BTree indexes
A Ruby program to find rows in a Postgres database that are too large for BTree indexes.We are currently migrating our main application database from AWS Aurora Postgres to Google AlloyDB Postgres (it’s a cost decision) and I’m using Google’s data...