Ruby 3 Method Objects in Ruby — Treating Methods as First-Class Values Ruby methods are first-class citizens in a way that most developers don’t fully use. You can grab a method as an object, pass it around, convert it to a proc, unbind it from
Rails Rails Concerns — When They Help, When They Hurt, and What to Use Instead Concerns are one of Rails’ most polarizing features. On one hand, they’re built-in, well-supported, and solve the real problem of reusing code across models and controllers. On the other hand, a codebase full
Developer tips How to Negotiate a Promotion as a Developer — Without Playing Political Games Most developers approach a promotion conversation like a salary negotiation: wait for performance review season, make their case, and hope the manager agrees. This approach loses promotions that should have been won, because
Ruby 3 Ruby Threads and Thread Safety — Practical Concurrency Without the Chaos Threads in Ruby have a complicated reputation — partly because of the Global Interpreter Lock (GIL) in MRI Ruby, partly because concurrent code genuinely is harder to reason about, and partly because most
Rails Action Mailer in Rails — Production-Ready Email Without the Footguns Email in Rails looks deceptively simple — generate a mailer, write a template, call deliver_later. The basics take ten minutes. The production footguns take longer to find: emails sent synchronously blocking requests, views
Developer tips Remote Work Survival Guide — What Nobody Tells Developers Before They Start Remote work sounds like the obvious upgrade: no commute, flexible hours, work from anywhere. And for many developers, it is. But there’s a specific failure mode that’s invisible in job descriptions and glossy
Ruby 3 Metaprogramming with define_method — Writing Code That Writes Code in Ruby Metaprogramming gets a reputation for being either magic or dangerous, depending on who you ask. Used carelessly, it produces code that’s impossible to trace and impossible to test. Used deliberately, it eliminates repetitive
Rails N+1 Queries in ActiveRecord — Diagnosis, Eager Loading, and When Preloading Backfires N+1 queries are one of those problems that makes perfect sense once you understand them, and that silently degrades production performance until a request that touches 500 records starts taking four seconds. The
Developer tips How to Write a Technical Blog Post That People Actually Read Most technical blog posts fail at the same place: the opening. They start with a definition, a history of the problem, or a tour of all the things they won’t cover. By the