Learning how to ask for help is important. Every developer needs help at some point, especially when they’re learning new things. By structuring your question effectively you can make it easier for people to help you, and increase the likelihood of solving your problem.
Here are the steps to follow when asking for help. More detail is provided below!
Make sure you’ve tried to solve the problem on your own first. Often it can be as simple as a typo, or forgetting to save your changes—it’s best to ensure you really have a problem before involving someone else. Make sure you have at least googled your problem!
The amount of time you spend trying to solve the problem should be proportional to how much time you have. If you’re doing a 1 hour workshop then spending 15 minutes stuck is a bad use of your time. You should probably ask for help after 5 minutes. However if you’re on a 2 day project you should spend more like 20 minutes searching for your own solution.
It’s important to develop your problem-solving and debugging skills. If more experienced people always tell you what’s wrong then you’ll struggle later in your career. Read the debugging guide for more information on solving code problems.
Once you’re sure you have a problem you cannot quickly solve on your own you should post a message asking for help in the appropriate channel. This could be your cohort’s #help-and-solutions
Discord channel, or the more general #facoverflow
, or even somewhere public like Stack Overflow or a project’s GitHub Discussions.
A good message should describe the problem, and especially what you want to happen. Often people describe a specific syntax issue, when really their problem is with their whole approach. For example for “how can I swap two numbers in this date string?” the most helpful solution might be “use the built-in date internationalisation method instead”.
You should also include anything you have already tried. That way someone helping you can skip over solutions that you already know won’t work.
Make sure you include a code sample. That way somebody can try to help you straight away, without having to ask you questions and wait for responses.
You can copy/paste the relevant code if it isn’t too complicated, but try not to dump an entire 100+ line file onto someone who has never seen it before. If your code is very complex try to provide a simplified example of what you’re trying to do.