vote up 31 vote down star
11

Reminiscing on your career as an IT professional, what was the biggest lesson you learned?

[If you can accompany your answer with an story, anecdote, link to a website, article or book it would be great thing to inspire and teach the young IT professionals!]

flag
show 2 more comments

78 Answers

vote up 0 vote down

you have to trust people... but in the end, you cant really trust people

link|flag
vote up 0 vote down

Once upon a time i had "LIFE" now i have a computer

link|flag
vote up 1 vote down

These have been my big lessons so far...

1 - Learn something new every day - even the small things.

2 - Ask for help sooner rather than later.

3 - Show your code to other people - and listen to their comments.

4 - Look at other peoples code and talk to them about it.

5 - If you can't figure out a problem then take a break and come back to it in 10 or 20 minutes - makes finding a solution so much easier.

6 - Read more.

7 - Code more.

8 - Backup, backup, backup, backup. Probable the biggest lesson of them all.

link|flag
vote up 16 vote down

First make it work, then make it better.

Don't try to fit all the cool features in there on the first try. Don't try to make your first version extremely fast by using a very complicated datastructure. Try not to spend too much time building in hooks you might need in 10 years.

Instead, build the simplest thing that does the job, first. Then, optimize, add features (not all at once). For each of these, follow the same rule.

link|flag
vote up 0 vote down
  1. do not overcommit!! the biggest mistake programmers make is overcommitting in terms of either features or release dates to their supervisor. always calculate a probable estimate, and then add buffers...believe me, we need a lot of them while we code.

  2. don't be afraid to ask for help

  3. admit your mistakes and learn from them.

link|flag
vote up 0 vote down

code more!

link|flag
show 1 more comment
vote up 0 vote down
  • Learn to say "no" and "I don't know" on correct circumstances.
  • Pleasing clients doesn't mean following all their specifications. Gauge if there's any spec that is not feasible and explain why.
  • Asking for a second opinion to your colleagues, will help you know if your idea is good or not.
link|flag
vote up 6 vote down

CYA (Cover Your Ass).

Make sure you can always proof later what really happened, especially if you don't trust the other parties involved. This means:

  • Keep all your important e-mails. They might come in handy in arguments later.
  • Confirm oral agreements by sending an e-mail. For instance: "As agreed earlier, we will go that way.". If you don't get a response to it, you can assume this is accepted.
link|flag
vote up 1 vote down

If your function code doesn't fit on one page then it might be time for another funtion.

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

Try first Before give up, try out at least five times in different way. Take a break & try one more time. Discuss with friends/colleagues and try for last time. If nothing works, then change yourself :-)

link|flag
vote up 11 vote down

Always negotiate deadlines/deliverables.

If you get your work/life balance right, you will be happier. A happier coder is a better coder.

Don't hesitate to do overtime IF the situation requires it, but make this the exception rather than the rule. You'll find that simply discussing WHY the job can't wait until the morning makes most people realize that it actually can.

Also, once your employers see how easy it is to get some free hours off you, they might start abusing it. Don't take this unnecesarry risk.

Underpromise and over deliver

You don't need to take the risk of under delivering. If you over deliver on everything yo do, people are always impressed. Keep this in mind when you make promises. I find it easier to negotiate the terms before hand than making excuses or disappointments later on.

Find the balance between being realistic and being positive. It's a flaw to have the crazy "yes, we can have that enterprise app done by next week" attitude. Maybe it can be done, but again, why over-promise?

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

I learned that many (if not most) software defects are the self-inflicted results of overconfident developers creating overcomplicated designs (implementing the designs poorly is common but not necessary). Nothing is more important in any field of engineering than the KISS principle.

When I learned to stop creating things that weren't necessary, and to stop over-engineering my code to accomodate imagined future uses that never materialized, programming became easy and fun.

link|flag
vote up 6 vote down

Never be afraid to ask for more money.

As a contractor, I would know my rate was too low in the market by the number of calls I received in the first week. I kept good records and upped the price $5/hour for all new contacts. I would also negotiate the ability to be paid for at least a 50 hour work week.

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

Being right is irrelevant. Worry about getting paid.

link|flag
vote up 2 vote down

There's a quickest way to add feature X, and there's the right way to add feature X.

When you're newly starting on something, the quickest way is almost never the right way.

However, if you've previously done everything the right way, you'll soon enough find that the quickest way is the right way. If you haven't, then you'll now have to add feature X in a slower and worse way!

Because of this, working on any project for a reasonable amount of time will either feel like affirmation that you are coding super god, or that you have produced a horrible abomination unto this earth.

Although you don't know it yet, there will always be another feature X to do after the current one that will further compound whichever of those feelings you now experience.

Never just do it the quickest way! By the time it starts to hurt enough to want to rewrite it properly, you'll need a fair amount of time to do it.

link|flag
vote up 0 vote down

PFESI

Potentially Fatal Errors Successfully Ignored.


Not an unimportant acronym.

link|flag
vote up 0 vote down
  • Get written requirements/amendments whenever it is possible.
  • Never delete any of your work related emails(especially if it is from business).
link|flag
vote up 0 vote down

Don't be nervous ever, others always thinks that you are a magician "can do anything, everything in no time, but lazy".

link|flag
vote up 4 vote down

You'll meet most of the code you write later on in a dark alley and it will be angry. Always try to write maintainable code and/or documentation. Keeping it simple helps a lot here.

I had 2 projects which I had to come back to 2,3 years after the code was written and it wasn't very fun.

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

It's (almost) never a bug in the compiler.

link|flag
vote up 1 vote down

"It works on my machine" doesn't cut it. It HAS to work for them, too.

link|flag
vote up 3 vote down

Keep it simple principle (KISS) The most simple way of doing something is often the best, over complicating a problem often just causes large problems in the long run.

link|flag
vote up 0 vote down

before you roll anything out TEST TEST TEST, and make sure you have a solid back out plan.

Also, users are you friends and your enemies. Take on board what they are telling you, but never take for granted that all the things they are telling you are accurate.

link|flag
vote up 13 vote down

Manage expectations, learn to say "no".

When you're designing a system people will continually ask for more and more. If you try and please them you will go nuts. Set the expectation that they are getting X, and X only - and if the Y that they're asking for is possible then it will be considered for the next update.

link|flag
vote up 6 vote down

Few points I can add towards 'the success of a s/w career'

  • Be confident in your skills
  • Getting a team which exposes great +ve attitude towards the work - this gives you a great learning opportunity and a cool working environment
  • Keep learning new things in your free time- S/w industry is very immature and new things are coming every day.
  • Listern patiently to others opinion. Especially when you talk to a client.
  • Share your skills - Help others and the community with the knowledge you've got.
  • Make sure you communicate both the issues and your success mile stones with your team.
  • Learn to say 'Sorry I don’t know'. But always give it a try before you say that.
  • Make sure you get proper recognition and appraisal for your good work.
  • Accept your mistakes and take that just as a new learning opportunity
  • Manage your time effectively,
  • Give very high importance to the work-life balance
link|flag
show 2 more comments
vote up 0 vote down

I have to give two answers because I can't decide between the philosophical answer and the technical answer.

Philosophically: Strive to learn more theory in addition to the "how to" technical stuff. As languages and tools evolve, the technical stuff will also evolve and you will constantly have to learn that anyway. But much of the theory and history will remain a solid base no matter how the languages and tools change.

Technically: Separation of UI from Code from Data Access.

link|flag
vote up 0 vote down

The most important thing I learned was to real understand something before explaining it to someone asking for help, so you are really sure you need help. I learned it as the Teddy Bear Principle. I explain:

If you can explain what you need to a Teddy Bear you wouldn't be able to explain to anyone who may have any question about it. Usually before asking a friend's help on a function or class, try to explain to your Teddy bear(or even your Ultraman figure or Darth Vader egg) what you want help about. From my experience, just explaining it will make you find the solution to the problem most of the time, without bothering no one. (and avoid answering no to questions like: Did you include the stdio.h ?)

link|flag
vote up 16 vote down

Be careful which jobs you accept early on, you will be pigeonholed.

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

quotes by Mark Jason Dominus:

11901 You can't just make shit up and expect the computer to know what you mean, Retardo!

11906 Look at the error message! Look at the error message!

11908 Premature optimization is the root of all evil.

11911 You wrote the same thing twice here. The cardinal rule of programming is that you never ever write the same thing twice.

11916 Always ignore the second error message unless the meaning is obvious.

1920 The error message is the Truth. The error message is God.

11963 It's easy to get the wrong answer in O(1) time.

link|flag
vote up 0 vote down

If you are running into a problem and just cannnot find the answer, take a break, go for a walk and think of something completley different. It will help you to focus on the problem and to look at it from a different angle. Chances to find a solution are much better then.
Another very good possibility is to have a chat with your neighbour and tell him your problem. Sometimes the right idea comes into your mind just because you've talked about the problem instead of chewing over it.

link|flag

Your Answer

Get an OpenID
or

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