News


Startups on Rails in 2024: my keynote at RailsConf
In 2023, I attended my first RailsConf. I made some new friends and got an overwhelming amount of support. After that experience, I wanted to reflect some of that awesome spirit back and be useful for the community in some way. This is when I noti...

Mid-Year Review: IRB and Rails Console Enhancements in the First Half of 2024 | Rails at Scale
As a core part of the Ruby ecosystem, IRB (Interactive Ruby) is an invaluable tool for developers. With its rapid pace of changes and improvements, staying up-to-date with the latest features can significantly enhance your development workflow. In...

Abusing Rails' content_for to push data attributes up the DOM | justin․searls․co
f you use Hotwired with Rails, you probably find yourself writing a lot of data attributes. This is great, because (similar to HTMX), it makes the DOM the primary source of truth and all that, but it sometimes imposes one of several vexing constra...



Vignettes on language evolution: discovering an old syntax feature history
While working on Ruby Evolution-themed articles (and looking for a shape for the future book), I am starting to look deeper and deeper into the history of the language—and into other languages, too, trying to understand when some solutions became ...



Better Know A Ruby Thing: On The Use of Private Methods
In Ruby, a method without side effects should be public.You should only have a private method if there is a side effect such that the object will end up in a bad state if it called at the wrong time. (Also, you should try to avoid having methods t...