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

1 2 3 4 5 12 next
vote up 290 vote down check

In no specific order...

  1. learning other frameworks/languages, and seeing how they do things, and compare that to stuff that I already know

  2. reading about patterns, best practices, and then examining my old stuff and applying those patterns where necessary

  3. pair programming

  4. working with people far smarter than I

  5. Always listening to what others have to say, regardless if they're junior, intermediate, senior or guru. title means shit all

  6. Disagreeing with everything Joel says. ;)

link|flag
5  
I know it seems really gratuitous and potentially reputation whoring, but if you separated those items out to one per answer people could vote up which ones they agreed with, allowing for a more specific end vote "solution" of this question. – davebug Sep 16 '08 at 23:10
5  
another +1 for working with smarter people – Tyler Sep 21 '08 at 5:08
22  
Watch how smarter people handle mistakes - that's when I learn the most from them – Mike Robinson Feb 2 at 21:38
11  
if this is a list in no particular order, shouldn't it be an unordered list rather than an ordered one? :P – Jweede Aug 31 at 19:03
2  
I don't cart-blanche disagree with everything Joel says, I think much of the time he has some interesting things to say. My comment was tongue in cheek. There's a lot of stuff that I agree with when it comes to Joel, but about once a month he makes me shake my head and ask "What? Are you serious?!". Which I love, as I find those the most challenging things that force me to really check my position and what I believe. – cranley Oct 19 at 17:14
show 17 more comments
vote up 22 vote down

Writing code and lots of it.

link|flag
2  
Reading and writing lots of code... Open source is such a boon to us ;) – Oded Jan 11 at 17:13
show 2 more comments
vote up 89 vote down

Programming. Working on interesting projects. There is NOTHING like getting in and working on stuff. Especially under pressure. I always tell anyone who asks me how to program - just find a cool project (even if you have to make it up) and work on it.

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

Pair-programmed with very diverse and opinionated people

link|flag
vote up 35 vote down

Looking back at old things I wrote and realizing just how bad they were.

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

Subscribing to Coding Horror lol. Actually I found that getting a new job on a project that interested me helped the most. Mind numbing web programming for the great state of NY was kinda depressing and was holding back my coding potential.

link|flag
vote up 2 vote down

Writing code, I tend to read too many books,it's good to know the theory but the practice is really where you can become a master.

link|flag
vote up 42 vote down

Many people have suggested writing code. I'd have to say that reading other people's code is much more beneficial.

link|flag
2  
a mix of the two is actually what works best for me; reading other people's code and refactoring it to make it more readable is a great exercise – Manrico Corazzi Sep 17 '08 at 7:23
show 3 more comments
vote up 20 vote down

Go all out: create your own project, your milestones, your resources, dependencies, requirements, and test plan. It will force you not only to improve your programming skills to operate within specific parameters, but will also serve to highlight exactly where you most need to improve. Make regular updates about your progress, whether through a blog or more formal project updates, so that you can see exactly where you've been and where you hope to go.

link|flag
vote up 15 vote down

Competing in TopCoder Algorithm contests.

link|flag
3  
I find TopCoder a little problematic. OK, it makes you better at thinking about algorithms, but you are forced to work with bad style (all code in one class) and under time pressure, so you probably won't comment and test. Perhaps Project Euler is the better choice. – hstoerr Dec 10 '08 at 16:12
show 1 more comment
vote up 24 vote down

Learned Scheme.

link|flag
vote up 45 vote down

I think the most important thing you can do is make a conscious effort to improve. There's no single silver bullet, you have to keep looking for new sources of information, new experiences, and more practice.

And the second most important thing, think about what you're doing, why you're doing it, and how you can do it better. Same thing with previous projects. Look back at what you've done, and how you might do it differently now. Think about what could have been done better, or where you could still improve on it.

I see two great examples of this at work every day. I have one coworker who loves to learn, and wants to be the best developer he can. He's uses any downtime to read blogs, read books, discuss programming techniques, and ask tons of questions. He's also very noticeably improved in just the past year. Another coworker does his job, and does it fairly well. But that's all he does. He sticks with what he knows, doesn't make much effort to improve, doesn't work on any projects outside of his existing ones, and after 4 years, he has the exact same skill set and programming ability that he had when I met him.

link|flag
2  
And he probably has less skill because some of his knowledge became obsolete.. – Jonta Nov 20 '08 at 14:14
vote up 0 vote down

Finally starting to work again in the field after excruciating years at college, at the Swiss Federal Institute of Technology in Zurich (ETHZ). I had worked as a web developer / graphic designer for a large company during the dot com boom after high school, prior to college and the mandatory army service here, and missed these days while my brain was being hammered with endless lessons on Eiffel, Prolog, compiler design, algebraic set theory etc...

link|flag
vote up 1 vote down

I enjoy picking up any language that I can get my hands on. Then I can decide what the language would best be applied to and throw it in my "toolbox". I really like being able to pick the right tool for the job.

link|flag
vote up 7 vote down

Pair programming with other folk by far raised my quality, broadened my horizons, and helped me understand the practical issues of day to day development. Couple of big points:

  • it doesn't matter how elegant your code is - if someone else can't understand it you're already sunk.
  • be ready to divorce your code in a heartbeat. The romance is in the "doing" not the "outcome".
link|flag
show 1 more comment
vote up 94 vote down

Two things:

  1. Read code written by different people.
  2. Write documentation for code written by other people.

Writing code is extremely easy; every other person I know can do that. But reading someone else's code and figuring out what it does was a whole new world to me.

link|flag
3  
You can see how they do something. Maybe they do it in a better way than you? – Jonta Nov 19 '08 at 14:52
show 4 more comments
vote up 0 vote down

I think you will learn a lot by reading books and taking a look on the code of open source projects.

link|flag
vote up 1 vote down

Working as a programming lab teaching assistant -- having to teach another person to code, particularly through example, really made a big difference in the quality of the code I wrote.

link|flag
vote up 0 vote down

I believe that reading and experience are the most important in improving.

When I first start a language, I like to read a couple quick start tutorials, then I work with it a bit. After I have a better feel for the language, I read a more complete book cover to cover. In order to use whatever language you choose to it's full potential, you need to know everything about the language, including it's strengths and weaknesses.

Reading books about general programming has helped me out as well. A lot of the most important concepts of programming are not language specific. A book about a single language doesn't cover the same areas since learning a language and learning to program are different things.

link|flag
vote up 3 vote down

Ensured that no matter what role I was in (e.g., currently software architect of a large project), I would be writing code. I've seen too many former developers stop coding entirely and they went up the technical or management hierarchy, and gradually lose touch with the reality of building software. The only solution to that is to keep writing code.

Learning new languages, writing in different environments, doing different kinds of applications... as much diversity as possible helps to round out your programming skills.

But the bottom line is that the only way to get better at something is practise, and to continually challenge yourself with projects of ever-increasing difficulty.

link|flag
vote up 1 vote down

Used them.

Seriously though, I often find myself repeatedly implementing the same sort of functionality in new ways. Each is an adventure that always raises new questions. Answering those questions allows my skills to grow.

link|flag
vote up 1 vote down

I spent the first several years of my career maintaining other people's code.

(The second most effective thing would be spending a few weeks grokking Common Lisp.)

link|flag
vote up 70 vote down

Took a part-time job tutoring CS students at my university. It really forces you to understand something at a completely different level when you have to explain it to someone else.

link|flag
6  
As Douglas Adams writes in "Dirk Gentley's Holistic Detective Agency": "the best way is to try and explain it to someone else. That forces you to sort it out in your mind. And the more slow and dim-witted your pupil, the more you have to break things down into more and more simple ideas." – Jonta Nov 19 '08 at 14:58
4  
mutuo ista fiunt, et homines dum docent discunt - Seneca – pageman Aug 12 at 20:45
show 6 more comments
vote up 30 vote down

Contributing to/participating in open-source projects was by far the biggest thing for me.

link|flag
vote up 0 vote down

1 - Read about a specific, narrow topic in a book like Code Craft, or Code Complete

2 - Apply just that one lesson to a project I'm working on

3 - repeat

link|flag
vote up 0 vote down

The most effective thing I did to improve my programming skills was while I was in college I learned to teach myself any subject and not to rely on an instructor or a course to learn somthing.

link|flag
vote up 5 vote down

Deciding NOT to be a 'Jack-of-all-Trades'

If you're serious about programming as a long term career, understand that you'll likely never be hired because of your versatility, but rather your expertise. To make an analogy, the least popular character in Everquest (at least when I played) was the Bard, who was good at nearly every skill but wasn't excellent at any of them. Pick a specialty and devote your time and energy at mastering fewer technologies rather than being so-so at many.

link|flag
2  
don't waste time playing MMO spent it learning instead could be a valuable advice to ;) – pmlarocque Oct 16 '08 at 20:25
3  
Perhaps you can't imagine being hired for versatility, but it is actually rather common for me. Indeed, I am often specifically sought out as a consultant because I have an unusually broad set of skills, e.g., Oracle & SQL Server, Java & C#, Windows & Unix, etc. – Rob Williams Nov 18 '08 at 23:00
show 4 more comments
vote up -1 vote down

The obvious answer is:

Learned my first programming language.

link|flag
vote up 1 vote down

Learn another programming language, possibly one that has a fundamentally different approach. Scheme, D, Scala, JavaScript. It will open up your mind at what can be done with each of them, even if you do not get to any level of procifiency.

link|flag
vote up 11 vote down

Working with other great developers has taught me a lot over the years, that and actually doing stuff just for the hell of it from time to time.

For instance, I wanted to learn how to draw charts in GD so i wrote a simple biorhythm generator just for the fun of it. Not rocket science and I don't really believe in the pseudo-science behind it, but it was a good chance to learn what I wanted to do.

link|flag
1 2 3 4 5 12 next

Your Answer

Get an OpenID
or

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