Blog
How to: code review with little or no context
January 15, 2025
Reviewing code can be hard at the best of times, but sometimes, we have to review code with little or no context, whether that’s because we’re joining a new team, onboarding to a new project, or trying to learn about a new domain. How can you say whether or not code is safe to ship when you literally know nothing about it?
In this blog post, I suggest an approach for reviewing PRs that can help you tackle your next PR review with confidence, even if you have little or no context on the code you’re reviewing.
Making Sorbet compatible with Ruby 3.2
July 13, 2023
A summary of the work my team did to make Sorbet compatible with Ruby 3.2.
Automated debugging with git bisect and rspec
November 26, 2022
Git bisect is a useful tool that can drastically speed up debugging if you know how to use it. In this blog post, I explain how to set up an automated git bisect for maximum productivity.