DEV Community

Njeri Cooper
Njeri Cooper

Posted on • Updated on

The Emotional State of a Developer, a Question

What’s the first thing you think and feel when you’re debugging or building something new and realize that the solution is not searchable. It may take an hour to even figure out what the underlying issue is, let alone fix it. Me? I typically get overwhelmed by the 40 tabs of Stack Overflow I have open.

Latest comments (4)

Collapse
 
njericooper profile image
Njeri Cooper

I usually do end up with a few windows for different parts of the problem.

Collapse
 
jeromehardaway profile image
Jerome Hardaway

First thought: Check the MDN. Second THought: Check Stack Overflow. Third thought: check the source. But I'm always in hunter mode.

Collapse
 
nataliedeweerd profile image
𝐍𝐚𝐭𝐚𝐥𝐢𝐞 𝐝𝐞 𝐖𝐞𝐞𝐫𝐝

If you have 40 tabs open, close them all and start from the very bottom. Start outputting the value of your variables, make sure the correct data is being passed around. This will also help you determine where the issue lies.

Collapse
 
njericooper profile image
Njeri Cooper

Sometimes I use pen and paper to visualize data flow.