vote up 298 vote down star
379

Looking back at my career and life as a programmer, there were plenty of different ways I improved my programming skills - reading code, writing code, reading books, listening to podcasts, watching screencasts and more.

My question is: What is the most effective thing you have done that improved your programming skills? What would you recommend to others that want to improve?

I do expect varied answers here and no single "one size fits all" answer - I would like to know what worked for different people.

Edit: Wow - what great answers! Keep 'em coming people!!!

flag
3  
always a great question to ask of others! – therealhoff Sep 18 '08 at 23:14

363 Answers

prev 1 2 3 4 5 13 next
vote up 0 vote down

Reading, understanding, extending, and modifying source code of programmers who were more expert than me -- i.e. K&R, source code for ThinkC Foundations Classes. Then applying the methods/patterns I learned in my own projects.

link|flag
vote up 0 vote down

Learning PHP and get rid of Windows

link|flag
vote up 0 vote down

The best thing I ever did was read Code Complete by Steve McConnell.

This had a massive impact on the way I wrote code, the way I thought about code and the way I thought about my career.

link|flag
vote up 0 vote down
  1. Hobbying. My dad bought an IBM PC a few months after the original was released. Programming for fun taught me a lot and made it enjoyable.

  2. My college thesis. It was hard, ambitious, and took 18 months of coding to complete. And I wrote it as member of a team of brilliant people (the MIT Media Lab), from whom I soaked up lots of things.

  3. Math. As a physics major I had to take lots of math classes. As a result, I do not shrink back from tackling problems deemed to difficult by others.

  4. Reading about patterns.

  5. Learning UML.

  6. Learning Perl. Comes in handy all the time.

link|flag
vote up 0 vote down

Read "Code complete" by Steve McConnell...

link|flag
vote up 0 vote down

Once I decided that my fingers are slower then my thoughts. I spent a week improving my typing skills.

The result was awesome! Programming became a pleasure after that.

link|flag
vote up 0 vote down

Code Reviews: We implemented code reviews within our team. We read other people code beforehand, then all the developers sat in a room on a Friday afternoon and the person who wrote the code explained what they did and the reason why they used that approach. When I came over similar issues later on it definitively helped me look at things in new ways.

Arguing: Even though it sounds a bit strange but arguing with colleges. When people have different ideas about the best approach to take on an issues it makes you think about the problem in more detail, research it etc... and normally in the end you end up with a better solution that either one originally suggested.

Lastly being around passionate talented people...

link|flag
vote up 0 vote down

Learning as many languages as possible.

link|flag
vote up 2 vote down

Solve hard problems with code.

In my own experience it has been the code that I didn't know how to write that taught me the most.

If you seek out hard problems you will learn to learn to work hard; learn to do your own research; learn the best language for the job; learn to use development tools (IDE/debugger, source control); meet people who are like minded, and above all else become inspired.

When you are inspired there is nothing that you cannot learn or do.

link|flag
vote up 0 vote down

Switching to linux.

link|flag
vote up 18 vote down

Hit the gym regularly.

Seriously, my brain works a whole lot better when I'm in shape. Problems become easier and less overwhelming, goofing off is much less of a temptation, and working through things step-by-step doesn't seem like such an arduous task.

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

I would have to echo others answers here.

I think the best way to really get to know something (for me) is to pick a topic that you are interested in and unfamiliar with. Then look at how others have done that while you try to replicate/enhance it.

Currently, I have been very interested with low level systems programming, specifically the boot process of an x86. Looking at others bootstrap code has been immensely helpful in beginning to code my own.

link|flag
vote up 3 vote down

1) Be curious. Learn from the smartest people around. Read books, articles and code on how things have been done or may be done 2) Think. Play around and try out your own ideas 3) Fail. You only know what is good when you now what doesn't work

link|flag
vote up 0 vote down

Try not to build anything you design for a few weeks. Often other scenarios will come to you then before things get locked in.

link|flag
vote up 1 vote down

Programmed because I enjoy it and have a passion for it rather than just because it was a "job".

link|flag
vote up 0 vote down

Having an open mind all da time!

link|flag
vote up 1 vote down

Never assume anything, sounds simple but I have found assumptions lead to bugs.

Don't be afraid to ask the community for help no matter how ridicoulous it may seem.

Reviewing other people's code, learn from their mistakes/genius

link|flag
vote up 2 vote down

Never think you have all the answers...there is always something to learn.

link|flag
vote up 1 vote down

Fixing/enhancing other peoples code.

link|flag
vote up 0 vote down

Always go a step beyond what's required.

If a project requires a new technology, rather than asking for training, I'll study some existing code and documentation, then start a pet project on my own. It's always good to have suggestions beyond what others have considered.

Never leave a question unanswered if you can help it. Always satisfy your curiosity. Chances are you'll learn a lot in the exploration.

link|flag
vote up 1 vote down

Most of what I know I believe come from the blogs I read. You can learn a lot from the people out there.

I also try to read code written by others. Right now I'm browsing the code of ASP.NET MVC (amazing to see what's going on behind the scenes!) and AutoFac.

Sometimes it's hard to put into practice everything new you see, but I try to keep up with the new stuff (libraries, frameworks, etc) I consider most relevant, such as jQuery and ASP.NET MVC.

link|flag
vote up 1 vote down

Visiting Stack Overflow of course!

link|flag
vote up 0 vote down

I worked for 2 years with someone remarkably more intelligent and well-versed than myself. I'm sure he became frustrated at times, but through that work relationship I was able to develop a perspective on application design and development. I stopped just going through the motions. Approaching design and development from a more well-defined position has made all the difference.

I hope that answer isn't too abstract.

link|flag
vote up 5 vote down

After 30+ years of business programming it's hard to pick one event.

But I definitely have to go with one concept:

The most important target audience for code is the maintenance programmer.

Can I tell one story? (Tough. I'm going to anyway.)

Many years ago, back in the days when a minute of CPU time cost about as much as an hour of programmer time (nowadays the ratio is more like a MONTH of processor-core time per hour of programmer time), I was working in a batch-Cobol shop and was asked to help with a maintance problem outside the projects I usually worked on.

The program in question, right in the middle of its work, did a complex calculation about electrical power management.

My relevant background for the task:
* I speak fluent, native (American) English. Amy, the programmer attempting to do the maintenance, only sort of spoke English.
* In college, I had dropped an electrical-engineering course.
* I had more programming experience in more languages, and a bit of a reputation for solving code puzzles.

So I looked at this mass of Cobol code that Amy had identified as the area where the bug apparently existed. Yep, it was the power-management calculation. After ten years, after the people who created it were gone, the client had realized it was calculating incorrectly.

Most of the program was unusually clear and comprehensible for Cobol. Excellent style, reasonably good technique. Nice meaningful variable names, but not absurdly long ones.

Then there was this part - about eighty lines. Amy could not make heads or tails of it.

Neither could I, for a couple days. Even after I noticed that the first third of the block was just moving data from variables with names like (making them up twenty years after the fact) Killowatt-Hours-Per-Day to other variables with Fortran-compliant names like FFGFXKCD (not to be confused with FFGFKXCD), and the last third was moving the data back.

I suggest:
1) Don't do this sort of calculation in Cobol.
2) If you're going to do it in Cobol, have a Cobol programmer write it. Not a Fortran programmer who's never seen Cobol before.
3) A programmer who understands the subject matter and has tried to maintain a program before, would be a nice touch too. I think the Fortran programmer was missing at least one of those attributes, but couldn't determine which one - possibly because I didn't understand the subject matter.

But after about four days I figured out what the formula actually being calculated was, identified a part that looked wrong to me (and in fact was wrong), and had Amy send it off to the client for feedback. Got the correct formula back a few days later, and replaced those eighty lines of cross-species monstrosity with ten lines of pure Cobol that Amy understood.

(I have no doubt that in a Fortran program written by a competent Fortran programmer with a reasonable understanding of the subject matter - the situation that really should have been in place, at that time, for this project - it would have been one or two lines.)

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

Doing Project Euler.

link|flag
vote up 1 vote down

Besides writing alot of code , i think understanding everything i wrote actually helped quite a bit. There are too many copy and paste coders out there.

link|flag
vote up -2 vote down

When coding, thinking like a von Neumann machine.

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

I took the Introduction to the Theory of Computing class at my university. It made me understand the math behind a lot of things. Or, more simply, it made me understand a lot of things. Now, when I design algorithms, I have a better understanding of the restraints I face as well as how to find approximate solutions to many unsolvable problems.

link|flag
vote up 0 vote down

Some great answers in here and definately some things I should try out.

One thing I do sometimes is code with no aids at all. So no warnings, no stylecop, no fxcop, etc, and my profiler (ants) not running.

That way I see just how good I am without aids. It's like riding a bike with stablisers, and then having them taken off.

But when I am writing code for commercial-intent I turn all these aids/tools on and improve my code where necessary.

link|flag
vote up 0 vote down

Working on and founding a lot of Free and Open Source Software projects...

There has been nothing that have helped me out more then this...

link|flag
prev 1 2 3 4 5 13 next

Your Answer

Get an OpenID
or

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