What is one mistake you made early in your programming journey that new developers should avoid? #198732
-
🏷️ Discussion TypeQuestion BodyEvery developer makes mistakes while learning. Looking back, what is one mistake you made early in your programming journey that slowed your progress or caused problems later? What happened and what did you learn from it and what advice would you give to new developers to avoid making the same mistake? Guidelines
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
One mistake I made early in my programming journey was trying to learn too many things at once without building real projects If I could go back, I would focus on one small project complete it fully and only then move to the next thing. Learning by building is way more powerful than just consuming tutorials. |
Beta Was this translation helpful? Give feedback.
-
|
One mistake I made early on was focusing too much on how to use something and not enough on why it existed. When I learned a new language, framework, or library, I was usually satisfied once I got it working. I didn't spend much time thinking about the problem it was designed to solve. Looking back, I think that slowed down my growth more than I realized at the time. I often learned individual features, but I missed the bigger ideas behind them. Over time, I started asking myself, "Why was this designed this way?" more often. That simple habit helped me connect concepts together instead of treating everything as something new to memorize. I'm still learning, but if I could give my younger self one piece of advice, it would be this: don't stop at the solution. Try to understand the problem that led to it. |
Beta Was this translation helpful? Give feedback.
One mistake I made early in my programming journey was trying to learn too many things at once without building real projects
I kept jumping between tutorials HTML, CSS, JavaScript then frameworks but I wasn’t actually building anything on my own. I thought I was progressing because I was watching and learning a lot but in reality I wasn’t applying anything deeply. Later I realized the real growth happens when you get stuck in a project, face errors and solve them yourself. That’s when things actually start to stick.
If I could go back, I would focus on one small project complete it fully and only then move to the next thing. Learning by building is way more powerful than just consuming t…