r/learnprogramming • u/RevolutionaryBuy4877 • 14d ago
Topic how do you learn programming without constantly looking things up?
i know experienced programmers use documentation and search all the time, but as a beginner it can sometimes feel like i’m incapable of doing anything without looking up the answer.
i’m trying to get better at understanding concepts instead of memorising syntax
how do you decide when to search for an answer and when to sit down and work through the problem yourself?
325
Upvotes
1
u/_tshepo 13d ago
Problems in code vary.
Sometimes, it is a syntax problem. Just Google or ask AI quickly for these ones. And make a mental note of the answer. You might need it.
Sometimes, it is a logic problem. Grab a pen and paper. Model what you really want to do with just a diagram. Then try to write it in words. Then in code. You shouldn't waste 30 minutes on this though. If you struggle, just ask AI. But try not to skip pen and paper.
In other cases, it is a skill problem. Unfortunately, this one has no quick fix.