vote up 112 vote down star
59

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

I agree about the source control..very important.

Continue to learn other languages. Don't rely only on the language you program in at work. You never know when Microsoft is going to stop supporting it...

link|flag
vote up 0 vote down

Learning how to do stuff in practice can be even more fun then learning to do stuff in theory. Start with coding horror, read proggit (ok, so that wasn't available till I graduated college). Find blogs that interest you. Its scary at first but you'll understand it all soon. Who knows, one day I might even figure out what Steve Yegge is talking about.

link|flag
vote up 2 vote down

Drink more beer

link|flag
vote up 0 vote down

Decide what your core competency is and adjust your career to exploit that competency.

You can’t get a gold nugget from a horse turd no mater how hard you polish it.

link|flag
vote up 0 vote down

Based solely on the extremely limited experience that I've had, it would be: "You don't know half as much as you think you do." (Apply repeatedly.)

If I had a second it would be that "sometimes removing semi-colons is more useful than adding them."

link|flag
vote up -1 vote down
  • Don't printf debug
  • Don't release code you wouldn't like to maintain. You'll probably will.
link|flag
vote up 0 vote down

when coding, always disconnect your Internet connection.

link|flag
vote up 0 vote down

Know what you want the code to do (framed in the form of a test, which needn't be automated). And the code isn't done till it's passed that test.

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

You learn to write good code the same way you learn to write good prose: practice and constructive criticism. If your organization doesn't do code reviews already, get them to do so. You'll be amazed at how much you learn by reviewing others' code and having others review your code.

link|flag
vote up 0 vote down

Beware the myth of the perfect code... it doesn't exist and never shall exist.

I'd also add that design patterns are something I should have picked up sooner than I did.

JB

link|flag
vote up 0 vote down

640k is not enough for everyone...

Oh,

and impersonating Bill Gates is not cool. I wish I knew that a sentence ago.

link|flag
vote up 0 vote down

Assume NOTHING!

link|flag
vote up 1 vote down

1) Read (good) code to get ideas

2) If you're writing anything that will take you longer than 3 hours to complete, more of your time will be better spent designing it (off the keyboard, on paper or a whiteboard) than you think. Don't just jump into writing code!

3) Learn about design patterns and good code practices -- you don't want to be that guy (gal) with everything in one giant class and try to debug your 3 page long function.

link|flag
vote up 1 vote down

That cobol you are learning might just come in useful after all, Not every programming job will require you to know the ins and outs of inheritance....

link|flag
vote up -1 vote down

Write Unit Tests

You know that test code that you write in your main methods as you go along, to make sure the code does what you think it should, then delete and replace when you move on to the next item?

Don't delete it. Find a way to keep it all and build it into an effective unit test/regression suite. Oh - and find out what those are at the same time. They are much easier to do than you might think.

You'll thank yourself in the long term.

Oh yes, and don't forget to coin the term Test Driven Development for it. Then it'll be your name that everyone remembers!

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

Don't try to finish solving a problem just because you start working on it. Instead, maintain a list of your most important projects and make sure you work a little on all of them on a regular basis (weekly, at least). This will enable you to deliver more than most of your peers, and sometimes with higher quality of the solutions.

link|flag
vote up 2 vote down

Your life is about happiness, balance study and work with social skills and be active. Living healthy is way more important than knowing how code better than your peers.

Also, social skills is way harder to learn than programming anyway... there's no set syntax or mathematics in life, so spend as much time with your friends/partner(s) as you can!

link|flag
vote up 0 vote down

Be prepared to throw the first one away.

link|flag
vote up 0 vote down

Always write code with the assumption that the person who'll maintain it is a schizophrenic killer who knows where you live.

link|flag
vote up 2 vote down

Get some sleep. Your brain needs it, and it will pay off double: No time spent on writing psychedelic, sleep depraved code, and no time spent on correcting your psychedelic, sleep depraved code from last night.

link|flag
vote up 0 vote down

Get the higher degrees before you get a job. It won't happen because of time and expenses otherwise.

link|flag
vote up 0 vote down

Start contributing to an open source project earlier (it took me nearly 10 years to get around to it) and check into a version control system much more regularly :)

link|flag
vote up 1 vote down
  1. learn about business and marketing before going out on your own
  2. always have (at least) two clients, in case one disappears
  3. if you want to get rich, you have to work for free (otherwise you don't own it)
  4. sell products, not just your time; time is finite
link|flag
vote up 1 vote down

You're a software engineer, so think like an engineer. Understand the reasons for things. Leave religion out of it.

link|flag
vote up 3 vote down

Remember Hofstadter's Law: double that estimate.

link|flag
vote up 2 vote down

Backup database then run sql command

link|flag
vote up 0 vote down

Don't watch too much star trek, it's good to have something to talk about to people other than other coders :)

link|flag

Your Answer

Get an OpenID
or

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