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

1 2 3 next
vote up 81 vote down

Never be afraid to say I don't know.

link|flag
4  
Except when your boss asked you what progress you've made since he last saw you! – Ali Sep 22 '08 at 0:29
2  
My favorite answer in interviews! Works very nicely if you say it confidently. – Agnel Kurian Sep 22 '08 at 9:13
show 2 more comments
vote up 43 vote down

Never stop learning.

link|flag
vote up 35 vote down

If you are running late, behind schedule or whatever with a problem that you are stuck on:

Ask for help sooner rather than later

The typical scenario is that you are coding away, something doesn't work but it seems trivial and you should be able to fix it yourself. You don't want to ask someone because that makes you look like an idiot so you frantically soldier on trying weird things, continually making the wrong choices and you end up in a total mess.

When you eventually ask for help, the first thing your helper says is " How on earth did you get into this mess?. Why didn't you simply ask someone?"

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

I learnt that backups are your friend.

Twice.

:(

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

Honesty is the key to any career/relationship.

I learned very early on that being brutally honest about your skills and experience was vital to my career advancement. Colleagues and management can smell doubt and fear as though it's the latest cologne.

  • If you're not sure, tell them you're not sure - but stress that you're itching to find out
  • If you're positive (or almost positive), be 1000% positive and aim to prove your method/suggestion/best practice - even if it means you're working 20 hour days for the next 6 months
  • If you were positive and now aren't sure, make sure you come out and admit defeat. Management won't care if you said you could, but couldn't early in a project or enterprise, however, come to them late in the game (when you've known for a few days) and you'll be doing tech support before you can say singleton.
link|flag
vote up 20 vote down

Assumption is the mother of all screw-ups. Never, ever assume anything when it comes to circumstances in which defects are reported. Always check the obvious first, before looking for more esoteric causes.

When you hear "But I just assumed...", you know something has gone wrong.

Also, demand evidence. You need something objective (such as log files) to use for investigation. Going on user/integrator reporting is not enough. Human memories are known to be less than perfect; rely on what the machine generates.

link|flag
vote up 16 vote down

Estimates are always off by at least 50% either way.

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

Don't get upset when bunch of error reports starts dropping in after the software is deployed. That means people are using it and they think it is good enough to spend time and energy to write error report.

Programming is 50% development, 50% fixing bugs. If you're good.

link|flag
vote up 8 vote down

Your hard drive can and will fail. It's not a matter of if, it's a matter of when.

link|flag
vote up 6 vote down

Software engineering is a very young industry.

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

Marketeers make a world of difference, there are very few good ones, but those are invaluable: it is only with a great team that you can make a great product.

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

I've got three main lessons rather that just one:

1. Don't give people what they ask for, give them what they need.

Very often you'll receive requests from people who are non technical asking for a particular implementation. I've often found that the implementation they are asking for doesn't really solve their problems, they just think it does based on their own misconception about the system. So always ask people what their real objective is and then try to figure out what solution would work best for them. It may sound like common sense, but I've seen way too many teams delivering what the client asked for only to find later that they've delivered a lemon because neither party had taken the time to understand what the right solution really is.

2. No matter where you are on the pecking order of a team or project, you CAN make a difference.

The pulse of a project aligns itself around the people who make things happen at all levels. So be proactive and take responsibility for making sure the project or team does the right thing, rather than just writing it off as lack of omniscience on the part of management. Things can get better.

3. It's more important to manage people's perception of the problem than it is to fix it.

I've found many times that if I provide a clear explanation of a problem or an issue and people grok the implications or consequences or even just the current status, they are almost always willing to make allowances in terms of schedule or resources. And in some cases, I've even been told that they'll live it with it and that it's not worth my time fixing it.

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

Utilize user usability testing! despite all internal testing, in the end we are all developers or at least familiar with the ideas and we do not look at the application the way the average user does.

link|flag
vote up 4 vote down
  • Never be satisfied with requirements from business. In fact, never be satisfied at all...until its done.Completely.

  • if you working in a large corporation, you shall regard Dilbert comics strips as a 'pictorial documentary' and the book The Joy of Work (by Scott Adams) as the Bible.

link|flag
vote up 4 vote down

Regardless of how smart are you, you can't do everything by yourself. Cooperation and 2+2=5 is the winning math.

link|flag
vote up 4 vote down

Never trust the data. Validate your inputs.

Anecdote: I spent two weeks looking for a bug in production code. After many a debugging session, I found out that one of the 12 data files I was working on was corrupted. I had checked all the other eleven files and I had checked the start of the 12th. Sure enough the end of the file was bogus. I lost two entire weeks when I could've found it in mere hours validating the data before sending it to processing (I got lazy, there was a lot of data to process and the 11.5 first files were good).

I was "lucky", it was a numeric simulation, not something security-sensitive or anything critical.

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

Being right is irrelevant. Worry about getting paid.

link|flag
vote up 3 vote down

Don't take all the responsibility for a problem. Sometimes you can be furiously trying to solve a problem alone and carrying the problem on your back. Get other people involved, escalate, get other folks involved.

This may seem a bit backwards. but it can be extremely stressful when you don't get others involved and management will never know there is pain and your working at 2 AM unless you tell them.

link|flag
vote up 3 vote down

I have learnt that the calmer you are, the quicker you get the results to the problems.

link|flag
vote up 2 vote down

Making developers troubleshoot and fix their bugs (ok, only big production issues), regardless of time of day (i.e., usually at 3am), improves the quality of their software and changes the way they develop it.

link|flag
show 5 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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