Ruby's Frozen String Literal Comment: YAGNI

Open a production Ruby file, and you’ll often see this magic comment at the top. # frozen_string_literal: true Today I’d like to argue that most Ruby files do not need this comment. YAGNI— You Aren’t Going to Need It. ...

February 9, 2022 · 5 min · Jake Worth

Why I Don't Point Agile Bug Tickets

When I create Agile bug tickets, I leave the story points blank. Why? Two reasons: pointing bugs creates the wrong incentives, and bugs are hard to estimate. ...

February 7, 2022 · 3 min · Jake Worth

Weekly Summary Technique for Senior Software Engineers

“What did you do this week?” I’ve written a weekly summary for myself and my teams for years. It helps me think through my work and shows people what I’m working on. In this post, I’ll explain how I use this tool. ...

February 4, 2022 · 5 min · Jake Worth

Opt Into Beta

Here’s a technique I’ve used on launches: instead of a big scary waterfall, or, in tandem with a phased release, let customers opt into a new feature. ...

February 2, 2022 · 1 min · Jake Worth

How to Find a Programming Mentor

I have collected a group of mentors over the years. I call on them frequently to talk through tough problems. I think I’m better at my job because of this regular, impartial outside feedback. I’d wish this for everyone! In this post, I’ll try to reverse-engineer the path I took to get here. ...

January 31, 2022 · 4 min · Jake Worth

Use a Dev Email

An engineering technique I recommend: when you sign up for any service, even on a side project that’s just getting off the ground, create an email group called dev@<your-domain.com> that forwards to you and any other technologists, and use that email to sign up. ...

January 29, 2022 · 1 min · Jake Worth

How to Answer Questions on Stack Overflow

Here’s my simple framework for answering questions on Stack Overflow that reach and help people and earn reputation. ...

January 27, 2022 · 4 min · Jake Worth

Want Better Automated Tests? Hard-Code Your Expectations

Hard-coded test expectations have many benefits that I’ll explore in this post. ...

January 25, 2022 · 3 min · Jake Worth

Presence is Boolean

When possible, I prefer to use the presence of data to represent a boolean, rather than a boolean itself. ...

January 24, 2022 · 4 min · Jake Worth

Be a Better Technical Consultant by Saying "I Think That..."

An idea I find useful as an individual contributor is starting my consulting with this phrase: “I think that…”. The idea is to let your arguments stand on their own, rather than appealing to your experience or other authorities. ...

January 19, 2022 · 2 min · Jake Worth