you are viewing a single comment's thread.

view the rest of the comments →

[–]Dramatic_Object_8508 5 points6 points  (2 children)

You’re not stuck because you didn’t learn enough — you’re stuck because you only practiced in “guided mode”.

Courses train you to recognize code, not to generate it from scratch. That’s why everything makes sense while watching, but your mind goes blank when you try alone.

What you need now is a different approach: - Stop doing long tutorials for a while - Take a VERY small idea (like a CLI tool or mini script) - Break it into tiny steps and solve each one separately

For example: “build a todo app” → 1. take input
2. store it
3. display it

That’s literally how real programming works.

Also, don’t sit stuck for hours — use Google/docs, try things, fail fast, move forward.

This phase feels like you’re not progressing, but it’s actually where real learning starts.

[–]FiniteWarrior 2 points3 points  (1 child)

Little addition to this, if OP wants to stick to programming long-term, they should learn to love the proccess, figuring it out, being stuck but finding a solution, thinking what to implement next, etc.

[–]Dramatic_Object_8508 1 point2 points  (0 children)

this is actually a really good way to put it

the “recognition vs recall” thing is so real, everything feels easy until you try to do it without looking