Rails Solid Queue — Background Jobs in Rails 8 Without Redis For years, the default answer to “how do I run background jobs in Rails?” has been: add Redis, add Sidekiq, configure two separate services, monitor two dashboards, and don’t forget to handle Redis
Developer tips Your GitHub Profile Is Your Developer Brand — Here's How to Make It Count Most developers treat their GitHub profile like a filing cabinet — a place to dump code and move on. They’re not wrong to use it that way; that’s technically what it’s for. But
Ruby 3 Pattern Matching in Ruby 3 Pattern matching landed in Ruby 2.7 as experimental and graduated to stable in Ruby 3.0. Most Ruby developers have heard of it; far fewer use it confidently in production code. This post cuts
Rails Real-Time UI Updates with Turbo Streams in Rails 7 and 8 Real-time features used to mean reaching for ActionCable, writing JavaScript event listeners, and managing WebSocket state that lives entirely outside your Rails stack. Turbo Streams changed that equation entirely. Built into Rails 7
Developer tips Why Developers Who Stay Quiet Get Overlooked (And How to Fix That) You’ve shipped things that work. You’ve solved problems that stumped your team. You write clean code and know your domain deeply — but the promotion went to someone else, the consulting inquiry landed
Ruby-code Find Intersection Of Arrays Or Sets Cleanly In Ruby 3 Ruby 3+ provides elegant ways to find common elements between arrays, sets, or enum collections using intersection (&) or Set#intersection. This is especially useful for filtering, authorization checks, tag matching, or data deduplication.
Ruby-code Group Array Elements By Multiple Attributes In Ruby Grouping records by a single attribute is straightforward using Enumerable#group_by. But what if you want to group by multiple attributes, such as categorizing records by both type and status? This method handles that
Ruby-code Deeply Remove All Nils And Empty Values From A Nested Hash In Ruby When handling deeply nested hashes or API payloads in Rails, it’s common to deal with nil values, empty arrays, or hashes that need to be cleaned before storage or transmission.
Ruby-code Convert An Array Of Single Key Hashes Into An Attribute Hash You may encounter a situation where you have an array of single-key hashes and need to restructure it into a grouped hash based on the keys.