DEV Community

Christine Belzie
Christine Belzie

Posted on • Originally published at chrissycodes.hashnode.dev on

Confessions of a Code Bug Hunter

Image description

My Epiphany

After a few months of being a coder, I've come to an interesting realization...debugging is so much like being in a romantic relationship. I know, I know, but think about it. You know how when your partner is upset and gets annoyed when they try to guess why even though this answer is obvious? That's exactly how it is with debugging. You noticed that your coding project is acting weird yet can't seem to find what's wrong even though you've tried every solution you can think of. Just like love, it can be funny and frustrating, so grab your favorite debugging snack and beverage(I highly recommend water but it's your choice) and join me as I reminisce and cringe about my humorous and annoying encounters with debugging.

Film counting down to 3,2,1

The Hidden Obvious

The Hidden Obvious is a species of coding bugs that are pretty easy to solve but hard to hunt for. They're like chameleons in the jungle because they blend right into the coding solution. I first discovered this creature when I was doing my submission for Frontend Mentor's NFT preview card component challenge. I noticed that the cards shape was not appearing, so I tried things like changing the classs color, using a different HTML element, and basically anything to get it to work. After hours upon hours just hitting brick wall after brick wall, I did what folks on How To Be A Millionaire would dophone a friend. I shared my code with her and after a couple of minutes, she giggled and said, You forgot to add the closing tag in the link to your CSS file.

 <link rel="stylesheet" href="style.css"/

Enter fullscreen mode Exit fullscreen mode

At first, I was baffled because I remembered following the steps to a CSS stylesheet tutorial to the T. But then, I checked and realized that I did not add the closing. After mentally facepalming for a few minutes, I added the closing tag and lo and behold, the CSS worked. If you think this was embarrassing, wait until you hear the next story.

YouTuber Rosanna Pansino saying, "Anyways"

The Brain Teaser

Unlike Hidden Obviouses, Brain Teasers may are not immediately apparent and can require multiple attempts to uncover. Once they are found, however, the solution to hunt this bug is difficult to execute despite being obvious. Brain Teasers are like a pesky fly buzzing around you - you know it's there, but it's just out of reach. I first encountered this creature when I was doing the HTML for the Tribute project in freeCodeCamps new version of their Responsive Web Design course. I noticed that the fig captions link was not opening to a new tab even though I had the target blank element. After hours of redoing the format and facepalming, I went to one of the forum channels on Scrimba and expressed my concern. A few minutes later, someone showed me this:

An incorrect example of a link needing to open a new tab.

I placed the opening quotation mark after the equal sign. 🀦🏽

After doing another round of mental scolding, I followed the persons suggestion, and voila, the solution worked.

Video game character saying, "Success".

Conclusion

If theres anything that I have learned from these two experiences, its this:

  • Always reread your code like youre proofreading an essay for school.

Remember, coding is like growing up. Youre bound to make mistakes from time to time, but as long as you keep learning and trying to improve things will be ok. And if you ever need a friend to cheer you up throughout your journey, Im just a click away on Linkfree. You got this! 😊 πŸ‘πŸΎ

Credits

3 2 1 Waiting GIF By Funimation

Dynasty Warriors Success GIF by wiffiegif.com

Moving On Ok GIF By Rosanna Pansino

Top comments (0)