What's One Programming Habit That Made You a Better Developer?

Eleventra

Newbie
Joined
May 21, 2026
Messages
16
Reaction score
3
I'm improving my programming skills and would love some advice. What's one habit, resource, or practice that helped you write better code or learn faster? I'm interested in real experiences.
 
For me, building real projects instead of just following tutorials made the biggest difference. You learn much faster when solving real problems.
 
Building projects is definitely the way to go like @affiliate08 said, but reading other peoples code on github is how you actually learn to bridge the gap. Find a small tool or script that does something similar to what you want and dissect it. You learn so many neat shortcuts and patterns that tutorials never bother to show you... Also get comfortable using a debugger early on instead of just relying on print statements, saves a ton of time in the long run.
 
for me it was learning to write pseudocode first. when you want to build a scraper or some automation tool, don't just start typing code right away. write down the steps in plain english first. step 1 go to site, step 2 grab the cookies, etc. it saves so much time because you solve the logic before fighting the syntax.

also... comment your code like you are explaining it to an idiot. in three months you will not remember why you wrote that specific regex or nested loop and you'll waste hours trying to reverse engineer your own script.
 
getting understanding the basic things. sometimes it gets very tough to get simple things.. i do not call what it is being said and mind dont work since we dont know.
After trying and trying we learn what it is called the buttons, where to put code, blocks, and what these menu text buttons do
 
one thing that helped me a lot was building small real projects instead of only following tutorials
you run into actual problems, learn how to debug, and remember the solutions much better That's where most of my progress came from.
 
Back
Top