Making 768 servers look like 1 — PlanetScale

How to make 768 distinct Postgres servers look like 1 to your applications.

#postgres#DevOps
Added: 23 Jul 2026
How to Add AI Features to a Rails App (2026 Guide) | Redwerk

Learn how to add AI features to a Rails app with LLM APIs, pgvector RAG, and Sidekiq. 5 production patterns from a team that ships Rails+AI.

#AI#Ruby on Rails
Added: 21 Jul 2026
Fable and Opus build a multiplayer feature

Who won?

#Ruby on Rails
Added: 21 Jul 2026
How to Start a Ruby Meetup

A practical guide for starting and sustaining a local Ruby meetup.

#Ruby#community
Added: 21 Jul 2026
ATProto in Practice #1: Identity

I’m starting a new blog post series that I’ve named “ATProto in Practice”. I want to go through some practical tasks that you’re likely to need when working with the protocol, using Ruby and my Ruby gems for the examples. These will (hopefully) be a bit shorter than my standard book-length blog posts here 🫠

#Ruby#atproto
Added: 21 Jul 2026
The joy of Inertia Rails: painting your own with 50 happy little lines—Martian Chronicles, Evil Martians’ team blog

Inertia is Turbolinks with one twist: render JSON instead of HTML on the second visit. We rebuild the whole protocol on a real Rails app with a 50-line client and a 16-line server, then audit what the real gem adds on top.

#Ruby on Rails#Frontend
Added: 15 Jul 2026
Rails 8.1: Deprecated Associations and How to Fix Them - FastRuby.io | Rails Upgrade Service

Rails 8.1 lets you mark old associations as deprecated. Here’s what changed, why it matters, and how to clean up your code without breaking your app.

#Ruby on Rails
Added: 15 Jul 2026
Detecting Full Table Scans With SQLite

I’m at RubyConf this week, and it’s great! I recently read that lobste.rs is now running on SQLite. One part from the post caught my attention: I wish we could say in a test, “Fail if you encounter any full table scans”. Which would have caught the perf issues we experienced during the first deploy. SQLite collects information about prepared statements and exposes those statistics though an API. The upshot of this is that we can tell whether a statement did a full table scan after executing the statement without using an EXPLAIN.

#database
Added: 15 Jul 2026
10 Things You Might Not Know About Rails i18n

A talk exploring i18n in Rails, and how it can be useful even when we're not translating our applications into other languages. I gave this talk at Brighton Ruby in 2026.

#Ruby on Rails
Added: 14 Jul 2026
Getting Started with Anchor Positioning • Josh W. Comeau

For decades, one of the most notoriously-challenging problems on the web has been sticking one element to another element, for things like tooltips and nested menus. The CSSWG has decided to provide a first-class solution to this problem, and it’s pretty friggin’ cool! In this tutorial, I’ll share the most useful parts I’ve found from this modern CSS feature.

#Frontend#CSS
Added: 13 Jul 2026
Permission UI the Rails way

A flexible helper for conditional rendering. Show content when allowed, hide it, redirect to a link or render a fallback. Extracted from my SaaS apps.

#Ruby on Rails
Added: 13 Jul 2026
De-spaghettifying Rails Apps with Wisper | spencer.wtf

Learn how to use Wisper for pub/sub event-driven architecture in Rails. Clean up bloated controllers and models by decoupling business logic with the observe...

#Ruby on Rails
Added: 10 Jul 2026

I’ve been using Rspec since 2012 and in all this time I’ve never had a really clear picture of how to best use . I don’t have this issue with any other aspect of Rspec. Probably our most common…

#Ruby on Rails#testing
Added: 9 Jul 2026
Postgres Is Enough

A curated directory of PostgreSQL extensions and tools. Replace Redis, Elasticsearch, Kafka, and MongoDB with one database you already know.

#postgres#DevOps
Added: 9 Jul 2026
Your Solo Developer Deserves Backup

What happens when your entire app rests on one developer's shoulders

#Consulting
Added: 9 Jul 2026
Migrating From Secrets to Credentials - FastRuby.io | Rails Upgrade Service

Rails 7.1 deprecated secrets.yml in favor of encrypted credentials. Learn why the change happened and follow a step by step guide to migrate your app safely.

#Ruby on Rails
Added: 9 Jul 2026
Audit a Rails Project with the Thoughtbot Audit Skill

Turning a Claude skill audit report into a labelled, severity-tiered GitHub backlog, and what the skill found in a small Rails 8 app.

#Ruby on Rails#Consulting#AI Skills
Added: 8 Jul 2026
What SOLID Still Teaches Ruby Programmers | Syed Aslam

How SOLID changes when you read it through Ruby’s object model, duck typing, and preference for pragmatic design.

#Ruby
Added: 26 Jun 2026
Watch the workshop | Builder Methods

Watch the Builder Methods workshop — the plan-first method for building apps with AI that come out right the first time.

#AI#Tutorial
Added: 24 Jun 2026
No Node - FastRuby.io | Rails Upgrade Service

Tired of installing NodeJS and juggling version managers just to compile Rails assets? Learn how Bun’s standalone binary can make setup faster and simpler.

#Ruby on Rails
Added: 24 Jun 2026
How I'd start a legacy modernization project now

Move from "here's the story of the system" to "here's what's red and here's the intervention that makes sense for your situation."

#Ruby on Rails#Consulting
Added: 24 Jun 2026

This week I made a refactor to remove a job (ActiveJob::Base) that was used only in recurring.yml, and call a class method directly instead. Sometimes it is ok to have a job, but sometimes using the method can help you write a little less code. And...

#Ruby on Rails
Added: 24 Jun 2026
Procman: An alternative for running Procfile apps

Procman is a tool written in Rust that offers a TUI interface to manage processes defined in a Procfile.

#Ruby on Rails#Tools
Added: 24 Jun 2026
Your Rails App Just Got Acquired. Now What?

What to do in the first 90 days after your Rails app gets acquired.

#Ruby on Rails#Consulting
Added: 24 Jun 2026
The Playwright debugging tool Rails devs aren't using

Playwright records every test in cinematic detail. Most Rails devs aren’t watching.

#Ruby on Rails#testing
Added: 19 Jun 2026
Next Last