Jake Worth

Jake Worth

Learning From Bugs

Published: March 25, 2022 • Updated: April 03, 2023 3 min read

  • debugging

You were stuck, and now you aren’t. Congratulations! Before you move on, it’s vital to stop and learn from it. It’s the best way I know to get better and spare your future mind for increasingly harder problems.

“What Did I Miss?”

Every time you get unstuck, ask yourself: when I was stuck, what did I miss?

  • Was I misreading a message?
  • Was I hypnotized by an irrelevant detail? 😵‍💫
  • Did I make a bad assumption and ignore any information that didn’t fit into my assumption?

What did I miss?

If you received help from someone, think back to the last question they asked you before you got back on the path. What was that question? What were the questions before that question— what explanations did your helper rule out? Everybody approaches problems differently, but great problem solvers tend to follow similar mental checklists.

It’s incredibly tempting to take the win and move on, but don’t cheat yourself out of asking this valuable question.

A Practical Example

From my current work: I’m developing a single-page-app and my browser screen is blank. There are many explanations for this problem, but only one is correct. Let’s figure it out!

My UI assumes data. So, is the network request returning data? I check the Network Tab of Chrome Devtools; no, it is not. It’s returning 422. Immediately, I know that this is a server-side problem1. Why? A status code of 422 means:

A [422 status code] indicates that the server understands the content type of the request entity, and the syntax of the request entity is correct, but it was unable to process the contained instructions.

I asked for data, the server said my request was valid, but it couldn’t give me what I asked for. Server-side issue. This seems like a small victory, but ruling out half my codebase as the source of the issue has turned a big problem into a smaller problem.

What else is in the response?

{
  "exception": "undefined method `number' for nil:NilClass",
  "from": [
    "/app/helpers/orders_helper_decorator.rb:18:in `edit_item_path'",
    ...
  ]
}

See that ...? It’s 600+ lines of noise I chose not to share. Experience from past bugs tells me that with Ruby code like this, the relevant line of the stack trace is the first one.

I jump to that method:

# orders_helper_decorator.rb

def edit_item_path(line_item)
  edit_path(
    id: line_item.product.slug,
    order_number: line_item.order.number  )
end

Revisiting the error: "exception": "undefined method 'number' for nil:NilClass". We’re calling number on nil— my line_item does not have an order to ask its number. I smack my forehead because I know that items once always to belonged to an order, but currently, it’s an optional association. I now have enough information to start solving the problem.

To summarize:

  • We found an error on the frontend! But we quickly deduce that the issue is server-side.
  • Where’s the stacktrace pointing? A Ruby method. We go there.
  • We reason through the stacktrace, use debuggers, and keep digging

When are you done? When you can say:

“Items once always to belonged to an order, but currently, it’s optional. So we need to check if they have an order before asking for the order’s number.”

Once you figure it out, walk back through the solution and analyze your thinking. Where were you efficient and inefficient? How would a programmer you admire approach this problem? What kind of questions would they ask? This is one of my favorite exercises.

Wrapping Up

“Today I Learned” blog posts are a fantastic way to turn this reflection into a habit. Figure something out, learn enough so that you can explain it, write about it, ship. Josh Branchaud’s TIL is a great example of this practice.

When you get stuck and then unstuck, stop and learn from it.


  1. The issue may not be caused by server-side code, but the answer is there. The server knows why it rejected my request.

What are your thoughts on this? Let me know!


Get better at programming by learning with me! Join my 100+ subscribers receiving weekly ideas, creations, and curated resources from across the world of programming.