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

1 2 3 4 5 next
vote up 259 vote down check

Code doesn't exist unless it's checked into a version control system.

link|flag
3  
It seems like hundreds of people here have a good story behind it. – Marko Dumic Oct 27 '08 at 23:51
1  
In my teen years, while learning to code, I actually had a harddrive crash that resulted in losing all code I'd ever written at the time. Including the software 3d-renderer I'd worked so hard on. That event made me decided to quit coding altogether. I obviously changed my mind at some point. – korona Nov 3 '08 at 18:00
4  
Actually, code doesn't exist unless its been backed up off site. One fire in the building that contains your VC system means your code doesn't exist. – Pyrolistical Nov 5 '08 at 0:30
2  
There was no versioning system when I started. How about that ? – ldigas Apr 22 at 4:21
show 4 more comments
vote up -1 vote down

Start using a trackball earlier. I do so now but still live in mortal fear of RSI.

link|flag
vote up 29 vote down

Always write your unit tests first! If you tell yourself "oh, I'll just write them later", it will never happen.

link|flag
vote up 1 vote down

Always layer your applications alone logical lines don't stick everything together in a big soup, and use the debugger more.

link|flag
vote up 42 vote down

Learn to use a Debugger ASAP rather than using print()/exit() statements for debugging...

link|flag
3  
Learn to use unit testing ASAP rather than using debugging – Borek Sep 26 '08 at 15:21
7  
Au contraire: I know plenty of people that I'd advise to learn the mental rigor required to debug using print statements, rather than the crutch of a debugger... – Rich Dec 11 '08 at 6:59
1  
+1 .. They should teach debugging techniques in college more – chakrit Dec 30 at 19:13
show 3 more comments
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 50 vote down

You don't really know as much as you think you do (and 'select' Isn't Broken!)

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

Ergonomics matter! 14 hours straight same seat staring at screens. not natural.

link|flag
vote up 3 vote down

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

link|flag
vote up 25 vote down

If I'm talking to bpapa in college - do more development outside of your regular coursework. Get with a professor on a research project. When you graduate in the burst-bubble world it'll help you get a job instead of doing video game QA for 2 years.

If I'm talking to bpapa starting his professional career - you CAN afford to be picky when you are trying to decide which job to take. If an opportunity smells bad from afar, it's going to REALLY stink when you are actually working there.

link|flag
show 1 more comment
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 15 vote down

Just jump right in and have a go. It's not as hard as people make it out to be and the learning curve is a steep as you want it to be taking baby steps is just as valid a way of learning a new skill as taking giant leaps and it helps you to take stock of what the next step is.

To sum up, do it, do it at your own pace, evaluate your progress and goals frequently.

link|flag
vote up -1 vote down

Oh. skim the books, but the best sites are... sites like these :)

/mp

link|flag
vote up 29 vote down

Don't spend so much time learning the quirks of the synax. Learn the concepts, and the rest will come.

link|flag
vote up 164 vote down

Make sure you meet a chick (and marry her) in college cause you won't meet anymore once you get into your (predominately male) workplace :)

link|flag
4  
6 months out of the college and i am already banging my head over the desk over this. Too true. – Mostlyharmless Sep 16 '08 at 19:43
13  
You could also apply for a life outside work. – Oddmund Sep 19 '08 at 18:42
10  
It'll stay predominantly male as long as advice given to young programmers is geared to wards the boys. Downvoted. – chryss Sep 20 '08 at 20:24
3  
I met my girlfriend at work :P. – Richard Nienaber Oct 13 '08 at 11:52
4  
Since it's a super bad idea to date people at work anyway... learn how to meet people outside work, through other hobbies. – Kendall Helmstetter Gelner Feb 2 at 4:33
show 9 more comments
vote up 1 vote down

My advice is similar to (but more general than) everyone else: just do more! In college you may feel too busy but you should certainly push yourself even further: get a good grip on Linux or Windows (certainly both helps too), go learn some language or framework that they didn't teach you at school, and so forth. Everything you pick up then will come in handy at some arbitrary point in the future.

If you don't like your current situation (maybe your job sucks), you can still do the same and pick up skills to get yourself a better job. It's never too late!

link|flag
vote up -1 vote down

Register stackoverflow.com

and register crackoverflow.com

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 37 vote down

Two digits will not be enough come the year 2000.

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

Knowing how to use a version control system tops my list as well as using unit testing. Getting this two things done pat as SOP will save lot of time in terms of lost source codes or having gazillion copies all over the place.

link|flag
vote up 141 vote down

My biggest hurdle was/is stop thinking that I was stupid compared to other programmers. When you read great code or watch a great coder do his thing, realize he didn't get that way by some sort of magic, or that he was just born with this great ability.

He worked at it. He has made the mistakes you have made and he learned from them. Just know that the only difference between you and him is time and experience. Not some unseen, unobtainable knowledge.

Learn different languages, and when and why to use them. Learn an editor, learn everything you can about it. Learn as many tools as you can. You won't use them all but you will be able to chose the best and know why you chose them.

link|flag
1  
This is the most valuable lesson I've learned since I got out of school! Once you get past this hurdle you can seriously start working towards becoming a great programmer yourself. – David Holm Jan 22 at 8:13
vote up 49 vote down

Practice, practice, practice.

I used to think that reading books and attending lectures would somehow magically transform me into a great coder. While these things are still important, there is nothing at all that can replace writing your own code, and a lot of it.

Also, read other people's code, whether they are more advanced than you or not. There is rarely one single correct way to implement something, and a lot can be learned from seeing how others think.

link|flag
1  
Practice and discuss with friends who are practicing. – Liam Oct 6 '08 at 8:59
show 3 more comments
vote up 34 vote down

Learn to type.

link|flag
show 1 more comment
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 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 0 vote down

Believe in yourself. Stick with it. Make it good enough, and people will love it.

link|flag
vote up 11 vote down

Keep learning! Strive to learn at least one new language, technique, methodology, or concept every year.

link|flag
show 3 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 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 0 vote down

Keep up the good work.

link|flag
1 2 3 4 5 next

Your Answer

Get an OpenID
or

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