Should I Use Hints and Suggestions While Coding?

0
5
Asked By CodingExplorer42 On

As a beginner who's at a low intermediate level in programming, I've turned off hints and suggestions in my IDE because they can be a bit distracting. I'm trying to learn mainly through muscle memory. But I've been wondering if not using hints is actually a productivity hindrance rather than a helpful practice. For those of you who have logged many hours in programming, do you typically keep hints and suggestions enabled in your coding environment? I'm currently using VSCode for my development work.

5 Answers

Answered By ErrorHunter88 On

Absolutely, professionals usually keep those error/warning annotations on. Relying on the compiler for feedback, especially for trivial issues, can waste valuable time. Autocompletion also saves keystrokes and jogs memory about available methods, so I say keep it on – unless you're practicing for coding interviews at a place like leetcode.

Answered By SyntaxSlinger22 On

I think what you're referring to is code completion instead of AI suggestions. I keep my intellisense on and find it super helpful. TypeScript's ability to understand data shapes is a huge plus since it provides relevant suggestions as I code.

Answered By FocusFreak11 On

I prefer to keep hints off. They often pop up at inconvenient times, blocking my view, and I find them distracting. If I need help, I check the documentation or Stack Overflow. During my learning phase, my professor advised using an IDE without any hints or prompts, and I really believe that helped me learn better.

Answered By CodeCadet07 On

As a beginner too, I find it useful to start with hints and suggestions to understand the syntax better, then I'll turn them off and practice on my own. That approach has worked best for me.

Answered By DevJourney33 On

I’ve tried both AI assistance and code completion. While they’re useful, I learned to type everything out without help at first. It forced me to learn by debugging each tiny mistake, which I think was invaluable. Ultimately, if the hints help you be productive, keep them. If they hinder you, definitely turn them off!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.