vote up 278 vote down star
347

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
2  
always a great question to ask of others! – therealhoff Sep 18 '08 at 23:14

357 Answers

prev 1 5 6 7 8 9 12 next
vote up 0 vote down

Well... For being someone without a lot of experience (I'm fresh out of university) I still must say that what changed me the most was when I started unit testing. It made me write much better code.

link|flag
vote up 0 vote down

I remember getting grueling code reviews where my boss made me think about every line of code, and taught me to be critical of every line. Now I'm a paranoid sob in exchange for less buggy code.

link|flag
vote up 1 vote down

The most effective single thing I've found?

Adopting the white-hat hacker ideal (essentially, curiosity about absolutly everything). If I don't know about something, I'll go and find out about it.

Admittedly this has lead me down the track to attempting to learn physics at the moment, but I'm sure it'll lead to some advance in my programming knowledge eventually.

link|flag
vote up 1 vote down

Practice.

I have a personality quirk that leads me to re-invent just about everything. I want to know how everything works, and that tends mean writing a huge amount of code. I've become very good at it.

Programming is a lot like playing the piano. The more you ACTUALLY WRITE CODE, the more skilled you will get at that. The more you debug code, the more skilled at debugging you will become.

I had a step-father who was a really amazing pianist. He told me that he estimated you needed to play about 10,000 songs on the piano and then you'd be excellent. He didn't think it mattered much what kind of learning styles you used... you just had to get the practice in. The goal is to retrain pathways in your brain and get yourself all tuned up.

Obviously playing chopsticks 10,000 times isn't going to make you a concert pianist, so don't be stupid. However, anything halfway reasonable should work.

If you think code reuse means spending 8 hours on the internet searching for someone else's solution to a problem and then copy and pasting that in... sorry... you aren't going to improve very much.

I've met a great number of people who want to believe that with the right tools, you don't need to program very much. You must absolutely, totally purge any inkling of this concept from your head and stomp on it until it's about 2 nm thick. It's horribly destructive from a self improvement point of view.

"New software for concert pianists from Rational Software! Convert your Symphony Modeling Language diagrams directly into sheet music! Export to all current platforms using MIDI, perforated scrolls, or music box cylinders! No more hours and hours slaving over the keyboard!"

link|flag
vote up 0 vote down

an open mind.

be critical at everything what has been written. and perhaps the most important thing, sometimes it's better not to develop.

we are already implementing everything while a simple pencil and paper works better.

link|flag
vote up 25 vote down

Read

  • books, not just websites
  • for self-improvement, not just for the latest project
  • about improving your trade, not just about the latest technology
  • read code, not just you are working on.

Just develop the appetite for reading.

link|flag
vote up 0 vote down

I had a keen interest in software process improvement after completing a masters degree in computer information systems, and studying about the Capability Maturity Model in one of the courses on the Software Lifecycle. Since the company where I worked was located in Pittsburgh, I attended Software Engineering Process Group meetings that were held monthly at the Software Engineering Institute. Watts Humphrey came to one of the meetings and did a presentation on Personal Software Process shortly after writing the book, and so a work buddy (Jim) bought 2 PSP books (one for him and one for me) at the CMU bookstore. We started doing the excercises together during lunch, and started applying the stuff to my work.

Completing the programming exercises along with the process material from the Introduction to the Personal Software Process book was the single most effective thing I did to improve my programming skills.

link|flag
vote up 0 vote down

couple of things..

  1. Reading others code.
  2. Working with smarter people than you & learning from them...
  3. Working on variety of different platforms and different domains.
link|flag
vote up 0 vote down

A lot of reading and learning assembly.

link|flag
vote up 0 vote down

Started writing code for real. The code they have you write in school is nice, it teaches you some of the functions of the language. But, to really write code to business specs, it's different. I would say that I really didn't become a good coder until a couple years after I had to start writing stuff that other people had to maintain.

link|flag
vote up 1 vote down

All of these fail to hit the big one. No one is a good programmer until they learn how to debug. Especially other peoples code. Learn it/live it. Instead of reading the code from a good "Open Source" project, pick an existing bug on that same project and solve it. Try to solve another bug without your favorite debugger ... some errors do not manifest themselves in debug mode and a good developer has this skill. If you really want to know how not to design a system, or the intricacies of smart pointers versus garbage collection, or most other system complications, this is the single best way to go.

link|flag
vote up 1 vote down

All the advice here is nice, but you asked for a single thing:

Reading The Pragmatic Programmer. After 9 years, still no other book is as relevant. Religously live the advice given.

link|flag
vote up 0 vote down

Using my brain, instead of hammering out pointless code. Code once, code correct.

link|flag
vote up 0 vote down

Started teaching programming and program design. I was mostly clueless about OO until I taught a Freshman-level Java course and a Junior-level Software Engineering course.

link|flag
vote up 0 vote down

100 % unit test coverage.

Doing unit testing have really improved my programing.

But using a code coverage tool to measure the coverage of the unit test takes it to another level.

A good exicise is to take a module and try to make a 100% unit test coverage.

You might even make a friendly competition with your coworkers by taking a module each and see how can get the highest coverage.

--

Follow me on CrowdNews.eu

link|flag
vote up 0 vote down

As per my moto: "Never stop learning" :)

link|flag
vote up 0 vote down

I know most of these have been previously mentioned but I will reiterate them again as they have worked for me.

1) The most important thing is to have an interest in what you are doing. If you are interested in it you are half the way there. Nothing kills your desire to work/improve more than disinterest.

2) Find someone in your organization that is smarter/better/faster than you and absorb as much of their knowledge and expertise as you can. This applies to anyone, junior/senior/etc. Job titles are entirely meaningless as far as I am concerned. I've seen "junior" level developers who had far more expertise/knowledge than supposed senior level ones.

3) I've tried as best I can to follow my own Code of Coding. Write, Read, Analyze, Review, Discuss. Once you Write your code, Read it over. Is it maintainable? Is it commented well? Does it look like it does what it should? As part of this you need to Analyze the code. Is this the best way you could have done this? Could it be improved in any way? Make changes accordingly. Next, Review it, test it out. Does it do what it should? Does it do anything it shouldn't? Do your best to try and break your code. Once you are happy with it, Discuss your code with others. What is their take on it? Do they or Don't they agree with your decisions? Have they any other ideas on what could have been done to improve it.

4) Always be willing to learn new things and/or idea's.

link|flag
vote up 0 vote down

It is not something I did, rather, it is something I am doing constantly. I have a my.yahoo page that has, at this point, over 50 feeds that I read every day. I subscribe to 12 periodicals. I try to buy at least 2 programming books a year and read them from cover-to-cover.

As a wise man once said:

When you're green you're growing, when you're ripe you rot! -Ray Kroc

This is something I live by.

link|flag
vote up 1 vote down

My programming style improved immensely once I started to use unit testing. There's nothing like trying to instantiate an instance of one of your classes in order to run a unit test to truly see its dependencies on the rest of your code. Unit testing also gives you the confidence to refactor without breaking things too badly (unit tests are never perfect) which is a great way of taking advantage of some of those ah-if-only-i'd-done-it-that-way moments.

link|flag
vote up 0 vote down

code a lot don't be afraid to learn new things

link|flag
vote up 0 vote down

Working with another people was the single thing that made my skills to explode. I started learning from their failures. :)

link|flag
vote up 0 vote down

Reading about new ways of making things right
Make other people look at my code
read other people code

link|flag
vote up 0 vote down

Getting onto projects that I really enjoyed - gave me motivation to learn, innovate and develop new ways of doing things.

I have also found that working alongside other, more experienced people (having a mentor) is very useful as they pass on valuable bits of knowledge as well as different ways of doing things.

link|flag
vote up 1 vote down

Spend at least one day a month researching new technologies and upcoming features of my chosen specialities.

link|flag
vote up 181 vote down

I always thought of my self as a pretty hot-shot programmer. Then a new guy, call him Aaron, was hired into our team. Aaron was obviously much better than me in most areas. He was younger than me, too. He made me realize I hadn't really improved much in the past years. I was an ad-hoc hacker, and a mediocre one at that.

This alerted me to consciously try to improve myself and especially the quality of code I write.

Aaron lead me to learn a lot of things. He taught me how most of the code I write will have to be maintained and extended for at least several years, so I should write the code with that in mind. I should write automatic tests for my code. Aaron was always talking about how I should never stop at the first working version, but refactor and refine until the code is elegant. I've discovered that the languages and tools I was using had a lot of room for improvement.

The most important thing I learned from Aaron was to never stop learning.

After a couple of years, Aaron left the company. I felt empty. The past years with him had lifted me to whole new levels of skill, and I realized I was now much better than the rest of the team. They were still writing bad code, and doing the same mistakes as before. I tried to teach them, but they had no interest to learn. In fact, they were annoyed that someone would be so arrogant to tell them what mistakes they were doing.

So, a few months later, I left the company as well. I moved to a smaller company with a very talented team. Everyone there wanted to learn more, and I loved it.

I'm glad I met Aaron. Without him, I'd probably still be working at the old company with the old gang, going nowhere, and thinking too much of myself.

link|flag
12  
That typically works both ways. I've come into a few companies now as an 'Aaron' and found that once I get the other coders energized that they start to give me a run for my money and encourage me to redouble my own efforts. Great post! – Echostorm Oct 24 '08 at 11:46
3  
+1 for "Aaron was always talking about how I should never stop at the first working version, but refactor and refine until the code is elegant" – iceangel89 Jun 16 at 11:17
2  
"never stop at the first working version"??? - when are you supposed to get the rest of your work done? :) – Ronnie Overby Oct 2 at 3:10
show 2 more comments
vote up 1 vote down

Probably digging into GoF design patterns, which certainly opened my mind in terms of source code reusabity and maintainability. Also, Martin Fowler's book and articles on refactoring made me a better programmer.

link|flag
vote up 0 vote down

Buying beginner books, it's like a kata keep rehearsing the basic so that your foundation is strong.

link|flag
vote up 6 vote down

The most effective thing I did to improve my programming skills was to read the book Code Complete by Steve McConnell. I had been programming for many years without paying a lot of attention to the craft of programming. Reading Code Complete was a real eye-opener.

Here there were whole chapters discussing the naming of variables, the lay-out of if-statements, and how to write good commnets. It was really nice to see how much there is to learn about these seemingly simple things.

I got the first edition about ten years ago, before there were any blogs. But the book contained a good reading-list at the end. That got me reading classics like The Mythical Man-Month and Peopleware. These days of course, you need to read blogs as well as books.

I would also recommend working with testing and support for a while, even if your main thing is development. It really helps to broaden your view, and in the case of large systems (in my case telephone exchanges) gives you a good understanding of the important areas of the working system.

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

Working with people who are smarter than I (not that hard) and being curious about how thy do stuff. Reading a lot helps, but you have to be able to find your own way on how to solve things.

link|flag
vote up 1 vote down

Learn Haskell.

link|flag
prev 1 5 6 7 8 9 12 next

Your Answer

Get an OpenID
or

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