vote up 111 vote down star
56

If you could go back and give yourself one piece of advice at the start of your programming life/career to help you on your way what would it be ?

flag

144 Answers

vote up 6 vote down

The best way to learn any language/framework/whatever is to start producing stuff using it. You can read all the blogs/books/theory you like - you don't truly know something until you've used it for a while.

link|flag
vote up 6 vote down

"Debugging is twice as hard as writing the code in the first place. Therefore, if you write code as cleverly as possible, you are, by definition, not smart enough to debug it." - attributed to Brian Kernighan.

... the blood, the sweat, the tears that I have caused myself!

link|flag
vote up 6 vote down

Do the risky items first.

In other words, work out what the greatest risk is to your project. The first task should be to do whatever it takes to drive out that risk, or kill the project early. Repeat until your funding source is willing to wear the remaining risks.

This piece of advice subsumes "Specify first", "Write a disposable prototype first", "Write unit tests first", "Write the user stories first", "Write the project plan first", "Learn your tools first". They are all just special cases, for some projects, of the general rule.

link|flag
show 1 more comment
vote up 6 vote down

Keep in touch with the good programmers/technicians/managers you work with; one day you'll want to hire them.

link|flag
vote up 5 vote down

Start earlier!

I didn't even know how to use a computer until High School, where I taught myself BASIC. If I could do anything different, it would have been to start earlier in life. I had the mental capacity, but it was wasted on simple math. (I don't meant to say that Math is easier than Computer Science. I'm just saying that 5th grade math was some pretty easy stuff.)

link|flag
vote up 5 vote down

Find people doing worthwhile things, and work/play/hang with them. There are many comments about a finding a social life, but if you keep hanging out with people doing clever and interesting things, it'll be a more interesting social life than if you just fall into any group. Also, work hard to expand what you find interesting: many fields apply to what you are doing, and you just don't know unless you look.

link|flag
show 2 more comments
vote up 5 vote down

write code, write code, write code, read some, write code, write code, read some.

bad code is code - any code is programming.

more code = get better at coding. AKA this site =>

Learn about all aspects of computers while reading some.

And a must

*Title – Code: The Hidden Language of Computer Hardware and Software * Author – Charles Petzold ISBN 0735611319

link|flag
vote up 5 vote down

Learn Smalltalk. The earlier you really appreciate and understanded object-oriented design the better!

link|flag
vote up 5 vote down

Read this book:

alt text

CODE by Charles Petzold

link|flag
vote up 4 vote down

Get an internship with at least 2 different employers. Ideally, one of the employers would do software as a business, and one of the employers would have software (part of an "IT division") be a supporting component of the business.

Doing this helps you know what type of company works for you, what type of development work you get satisfaction out of, what kind of teams you like working with, what type of environment/architecture/language really interest you, and so on. All that info can be helpful in shaping your goals and the methods you use to achieve them.

link|flag
vote up 4 vote down

If somebody asks you to change something that you've worked on for a while & you feel really angry/frustrated about this - This is a problem with you. Learn to take criticism better.

link|flag
vote up 4 vote down

Any code you write, either

  1. You will come back to it at some time after being away from it for 6+ or more months OR
  2. Another programmer will have to look at it without you being there

So, make it readable, consistent, commented, and documented.

I've spent so much time and effort trying to figure out what code does that I'VE WRITTEN that it's ridiculous.

link|flag
vote up 4 vote down

Contribute to open source.

From there, you'll learn the basic software development stuff that most schools don't teach like version control and issue tracker.

Surprisingly (though I'm not surprised anymore), a lot of programmers are still in the dark about these things.

link|flag
vote up 4 vote down

Take care of yourself. Programming is great fun, but your physical, emotional, and spiritual health are still important.

link|flag
vote up 3 vote down

"That year you really tried to learn Assembler? Don't bother, go outside."

link|flag
vote up 3 vote down

I think the most important thing to teach to a young programmer is how to step away from the computer.

Computers are awesome, but I kinda wish I had more discipline, and a social life.

link|flag
show 2 more comments
vote up 3 vote down

The debugger is your best friend. Learn it, use it, love it.

link|flag
vote up 3 vote down

Get a computer science degree, and learn math, so you won't be stuck building 3 page forms for peanuts.

link|flag
vote up 3 vote down

First: What Patrick said... you need source control

Second: Take a creative writing class and a public speaking class. Being able to effectively communicate your ideas to co-workers, your boss, or people at a conference is just as important as having the idea in the first place.

link|flag
vote up 3 vote down

Don't get your life advice on the internet.

link|flag
vote up 3 vote down

Read Code Complete and understand that the most important thing is that people can understand your program easily ( even you, 6 months later )

link|flag
vote up 3 vote down

Step through every new line of code in a debugger. It is the easiest way to find new bugs.

link|flag
vote up 3 vote down

Practise your communication skills as much as possible, especially with non-technical people. They're most likely to be your customers.

link|flag
vote up 3 vote down

Remember Hofstadter's Law: double that estimate.

link|flag
vote up 2 vote down

Simple. Learn Assembler. When you young and can spend 20+ hours a day looking at a screen filled with bits.

I'd almost say the same thing about C. But with modern C you spend most of you time learning the framework you picked (.Net, Cocoa - whatever). learning Assembler you learn logic. And how things actually work.

Finally, get laid. Now, before you get plumped and bald. ;)

link|flag
vote up 2 vote down

The goal is to make programs that others like and use...no matter how good a program is, if no one uses it it's worthless.

link|flag
vote up 2 vote down

Buy yourself the biggest, brightest monitor you can possibly afford (e.g. 30" Dell or Apple).

You'll be staring at it for a long time.

link|flag
vote up 2 vote down

Learn to use the keyboard keyboard shortcuts in your IDE and other commonly used programs. The more time your fingers are on the keyboard the better.

Plus it makes you look like a pro to other people! lol

link|flag
vote up 2 vote down

I would tell myself to learn C and continue to learn C++. My first language was C++, but I don't feel I'm that good in it as when I went to university, I was pretty much forced into Java. So I would just encourage myself to learn as much as I can in C and C++ before going to university.

link|flag
vote up 2 vote down

Learn another programming language. The perspective you gain is worth it, even if you never use the language professionally.

link|flag

Your Answer

Get an OpenID
or

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