Missives and musings on a variety of topics.

Getting help with code

Debugging code can be either very rewarding or extremely frustrating. If you're feeling frustrated, here are a couple of tips that will make it easier for others to help you.

Bring a minimal, reproducible example

Create and share a sample project with as little code as possible to show what you're trying to do and how it's failing. This Stack Overflow help article goes into a lot of detail on this! You can put this in a public GitHub repository for helpers to look at. For web development, I'll create and share a Glitch project (naturally). Swift playgrounds can be a really great option for iOS/macOS development questions.

I do this even when I'm trying to debug my own code, to prove that the problem is what I think it is, and not a weird side effect from other code in the project. Sometimes, this step alone is enough to help you figure out what the issue was.

Make your question as specific as possible

You're probably frustrated and tired and just want to get the code working as quickly as possible. It's worth it to take the time and put as much detail as possible into your question.

This probably sounds like a lot of work, but there's value to it. First, writing this stuff out is a kind of rubber duck debugging, letting you step outside of the editor and into a conversation about what's going wrong. Sometimes, taking the time to do this will help you figure out the problem yourself. That's because you're awesome!

And if it doesn't, you're still awesome! But the level of challenge you're facing is probably a little more advanced the skills you've built up so far. You'll get there, and asking for help is a great way to do that.

The details you're providing by following the tips above is information that your helpers will probably ask you for anyhow, so by putting in that work you skip right to the good part: learning from others.

Make room for answers

Sucessfully debugging a problem is as much about finding peace as it is investigation. As soon as I catch myself obsessing on why a particular line of code that should be working is not doing what I expect, I minimize the code edito and leave the room.

I'll go for a short walk, or do some dishes, and let my mind wander. Sometimes that alone helps me figure out the problem!

But even if it doesn't, it changes where my head is at. I go from a place where I'm trying to bend a thing to my will to a place where I'm ready to receive new ideas. I start writing down the points listed above. I create a sample project.

And then I can ask my questions from a position of patience and openness, because I've gotten rid of the frustration that's blocking me.

What tips do you have for getting help with code?

#learning

Discuss...