Possible Duplicate:
One piece of advice

I was talking with some friends (about C++ programming), and someone ended up saying "I wish I could have known about the STL when I started C++." We got into an interesting conversation on advice we would have given to ourselves had we been able.

I thought I would present the question here, as a community wiki. So the question is,

If you could go back in time and give yourself programming advice, what would you say?

You can give yourself advice about any programming topic, from learning a new language sooner to using one part of a specific language, but please make it something that you wish you yourself could have known sooner.

One piece of advice per post, please. I'll go ahead and post mine in a little while, as an answer to the question.

link|improve this question
feedback

closed as exact duplicate by gnovice, Brian, Adam Rosenfield, ShreevatsaR, cletus Jun 7 '09 at 4:45

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

11 Answers

up vote 6 down vote accepted

learn how to write unit tests

link|improve this answer
feedback

Single Responsibility Principle - would have saved tons of time in software maintenance had I know more about that.

link|improve this answer
feedback

sorry if this isn't a "programming answer", I still would say this to the "past me". try your hardest to understand the business angle of the projects you are working on. how much budget does this project have - how much benefit is it going to bring the business?

link|improve this answer
feedback

I would have told myself to learn version control. I went years without it, and only for a few months now have begun using it. I can't believe what I've been missing. My code is cleaner (since I don't just comment out code that doesn't work), I'm not afraid to refactor, and I worry less about losing my data.

link|improve this answer
feedback

Assume that what you have learnt so far is only the tip of the iceberg, and keep on studying.

link|improve this answer
feedback

Forget voxels. It's all about polygons.

link|improve this answer
feedback

Real simple. Stay hungry, stay foolish. And never stop learning.

And, I never did :) I guess I took my advice from the future.

link|improve this answer
feedback

I grew up as a (BASIC, ANSI C, Pascal, VB3, Clipper) programmer...

20 years down the track my advise to myself would be:

Learn how to play football! You Putz!

Cheers. Keith.

link|improve this answer
feedback

I wish I'd known just how required, and not just nice, source control is.

link|improve this answer
feedback

Comments are future-you's friends.

link|improve this answer
feedback

"Before you write that piece of crap, imagine me coming back in time from ten years in the future, beating that tripe into /dev/null with a suite of unit tests, and telling you:

\"Before you write that piece of crap, imagine me ....

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.