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

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

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

Don't get trapped putting out fires. Take time to do some fire prevention.

One commercial development project I was working on got into a sad loop of quickly fixing showstoppers and releasing them only to find customers found more showstoppers. After some intense negotiations with management we put in a daily build and test system and had a 3 month feature freeze to fix items on the bug list without adding new features. It wasn't as bad as management had thought. Our distributors liked the idea and helped supply some tests for our daily build and test system.

link|flag
vote up 1 vote down

Keep focus on what you intended to do. Once I created a form in a web-app where people had to enter their address. I started looking for a list of all possible cities in my country. After a while I found that such a list did not exists. Why not? I tried to find the answer to that question. It gave me insight in how names of places and cities are registered by the government......

..... And then I decided to just have a field on the form where people could enter the city of their address. I lost half a day searching for a list of cities I didn't need at all.

(I saw programmers spend weeks of time on functionality a customer never asked for.)

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

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

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

There is always one more bug !

In other words, never think your environement is perfect. There is always something somewhere that will need to be fixed, improved, or changed.

link|flag
vote up 1 vote down
  1. Results are what counts - ideas without action are useless.
  2. Don't be afraid to say "I don't know".
  3. If you make a mistake, admit it, learn from it, and move on.
link|flag
vote up 1 vote down

Realize that specifications are going to change. This is simply a quirk of being human in that there are those frilly elements in the UI that will likely get changed on a whim that one has to be prepared. It may be that you make a change and then have to undo the change.

Don't take it personally when your code gets thrown out. An example here is a new feature you spent 3 weeks working on and the person responsible for the project decides to cut that part as it isn't really needed and this other thing over here is, so get that done... NOW!!!! (Somehow it almost always seems like software should create itself instanteously but that rarely happens)

link|flag
vote up 1 vote down

With great power comes great responsibility.

Seriously. Stuff you run across while doing your job (like your boss's email, coworker's files, employee-private information) must not tempt you and you must not do anything that will violate your coworkers trust in you. You have root-ish powers for a reason -- don't screw it up.

link|flag
vote up 1 vote down

Obviously, this questions is highly subjective.... My story: I should have went into consulting, then self-employment 10 years sooner than I actually did! I did'nt think that I "knew enough", but after a year or so of being a contractor and then venturing out on my own, I realized that I had known everything that I needed to know already. I had good mentors and learned a lot in the 15 years prior.

link|flag
vote up 1 vote down

Three things:

1) If you work in close relation with your users never implement anything unless they at least ask you twice for it.

2) Never implement new features unless you have a written request ( mail is just fine )

3) Always write down who made you change something so you can let users discuss over it instead of gettting all the blame.

link|flag
vote up 1 vote down

I learned that it is way too easy to underestimate the time it will take to complete a project, and so it is very easy to underprice yourself too.

link|flag
vote up 1 vote down
  1. Be honest and always admit your own mistakes. Don't blame others for them.
  2. Don't be afraid to say "I don't know".
  3. Learn to say "No".
link|flag
vote up 1 vote down

spend sometime learning how garbage collection works....

link|flag
vote up 1 vote down

Never run a script you don't fully understand on a production server.

In my case it just deleted 2 databases, luckily.

link|flag
vote up 1 vote down

Two words: "Different" and "Interesting"

When commenting on an existing system/codebase that is crawling with fleas, it is not always a good idea to openly express such opinions. You may later discover that you've criticised the work of either your client (cause enough offense, you'll potentially lose the client) or colleague (offend your colleague, while creating justification for your client to ask for the flea-ridden system to be fixed at your expense). Instead, say things such as....

Well, its interesting to see that someone thought a bubble-sort algorithm would be the best solution here...

or:

If I had been involved in the solution design, I might have recommended that we do this differently.

NB: If too many of your colleagues/clients become aware that you use this strategy to soften your criticisms, the strategy becomes worse-than-void, due to the fact that when you genuinely find something interesting (as opposed to interesting), you may find people inexplicably upset with you.

link|flag
vote up 1 vote down

you can contribute to your own downfall

link|flag
vote up 1 vote down

Be prepared to reinvent yourself every five years.

link|flag
vote up 0 vote down

I've worked mainly on the system administration side, having only just started out recently and my number one lesson has been "Never be afraid to make mistakes."

They happen, more often than most of us would like to admit and the key is to own up to them, learn from them and make sure you never make that particular one again.

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
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 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

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 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 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

PFESI

Potentially Fatal Errors Successfully Ignored.


Not an unimportant acronym.

link|flag
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

Your Answer

Get an OpenID
or

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