vote up 300 vote down star
382

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

364 Answers

1 2 3 4 5 13 next
vote up 309 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
7  
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
6  
another +1 for working with smarter people – Tyler Sep 21 '08 at 5:08
29  
Watch how smarter people handle mistakes - that's when I learn the most from them – Mike Robinson Feb 2 at 21:38
20  
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 0 vote down

Lookup programming coursework in a language of your choice online and try and solve assignments.

link|flag
vote up 0 vote down

Learn to accept and justify just about any solution you see when it comes to yours and especially other people's code. It's just too easy to hit programmer's block because of existing code is written badly and needs refactoring. Instead of immediately re-writing and re-testing existing code, try to find some perspective from which that code would seem more reasonable. Your perception of code depends a lot on how you look at it. It can be profoundly corrupt at fundamental level, or contain minor and easily removable shortcuts at the same time.

link|flag
vote up 0 vote down

The ability I believe aided my programming skills the most is:

Take a complex problem and split it up into smaller manageable chunks; arrange them in a logical order; handle them one at a time....then TA DA! you look around and it's DONE!

Aside from that...Know the business process you are assisting...AND KNOW YOUR DATA!

link|flag
vote up 0 vote down

I have some dissatisfactions against many inefficiencies in the internet world. These inefficiencies are usually gone if you start paying some money to the service provider, eg. stockcharts.com, where it provides more services.. But being a cheap guy, I started my own pet projects trying to mimic the provided services.

Lucky me, Google app engine provide free resources, from which i can start experimenting.

So I guess start with your own need and displeasure as (internet) user, and see what can you improve.. (i am stuck with app engine jdo relationship now btw..help...)

link|flag
vote up 0 vote down

The single most effective thing that did improve my programming skills, was to initially invest much more time to think about the design of a program before starting to implement it.

Learning from other people helps optimizing the style and engineering and detail parts of programming, but it does not help much you when it comes down to finding a solution for a given unique problem.

The solution finding process is still a creative process, that you have to go through for yourself (or in a team). There often is no standard process and/or pattern to help you resolve the problem as a whole (if there is one, then you are probably solving a known problem once again, which still happens often in programming..).

After all it can be an extremely great satisfaction when your program takes shape. Even before you wrote a single line of code. And its an even greater satisfaction if your design, concept and plan works good when you write the code.

The coding is not less important, but its just the second step of programming.

link|flag
vote up 0 vote down

If there is anything that I did to improve my programming skills, it is finding a source of inspiration... great programmers.

John Carmack tops the list.

There are others too.

link|flag
vote up 0 vote down

Mentioned several times and voted up, but without a doubt - working with smart(er) people and better developers has had the most impact for me. It gave me a chance to learn from them something I didn't know or how to do better what I already did know and motivated to work on my craft as a developer.

Also, there's a great book by Chad Fowler - "Passionate Programmer" - covers very well a lot of points discussed here, and I think very relevant to the discussion.

Coincidentally, my 2nd one would be being passionate about / liking what you're working on - nothing as motivating as labor of love. Once this happens, you do want to make your end product better, and this leads to trying better yourself as a developer.

link|flag
vote up 0 vote down

Getting to 10,000 hours of programming... Experience and just do do do...

link|flag
vote up 0 vote down

Wrote a custom VM with a custom ASM syntax and a custom C-style language. It helped really a lot in understanding low level programming and architecture..

link|flag
vote up 0 vote down

Reverse engineering. Looking inside massive compiled proprietary applications, and web applications from only the client side gives you a great view of how things are currently being done in the real world. Also teaches you what to avoid when programming.

link|flag
vote up 1 vote down

Listening to DotNetRocks.

A number of years ago, after I started listening to each show during my commute, this podcast really unlocked a whole world of knowledge that expanded my understanding of software development, patterns, architecture, books, and the Microsoft community in general.

The quality may vary, but they still put out a lot of good stuff.

link|flag
vote up 0 vote down

abstract one mile long, code one inch deep

link|flag
vote up 0 vote down

Leaning Object Oriented Programming when I moved from C to C++
And the principle of SoC

link|flag
vote up 0 vote down

Joining StackOverflow and seeing the huge number of outstanding programmers in the community. It was a kick up the bum and an inspiration at the same time.

link|flag
vote up 0 vote down

Pay particular attention to your life outside of work, and invest as much or more time in friends/family as sitting coding. How can you be good at work if your needs arent met outside of work?

link|flag
vote up 1 vote down

Stop being so cocky and listening openly to other alternative opinions.

link|flag
vote up 0 vote down

Started Caring.

link|flag
vote up 0 vote down

One of the ways that I have used to learn to be good at programming has been through code reading, lots and lots of it, practice everyday and invest in books. Again, there's no one trick that helps - you decide what works for you and stick to it. But what ever you choose, it's always important to keep coding daily if you can.

Here are a few list of books that I have recently bought and found very useful.

link|flag
vote up 3 vote down

Read. Code. Read code.

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

First, writing code. It helps you to improve your basic programming skils. Trying not to copy paste. Trying not to repeat yourself, find another aproach. Trying to learn different languages and new technologies and best practices. Also trying to understand what other people are saying rather than what you think. Trying to read other people's code. Those helped me a lot to improve my programming skills.

link|flag
vote up 1 vote down

Learning to say I'll get back to you on that when when pressured to answer the question How quickly can we do that ?

link|flag
vote up 0 vote down

Taking the AP Computer Science courses in high school helped me the most out of anything.

I say that because prior to that I was self taught and would code in QBASIC as a hobby. I mostly just did my own thing, paying no attention to coding practices or readability. But in computer science I was taught C++ and the fundamentals of OOP.

Obviously I've done a lot to improve my skills since then, but some level of formal training can be extremely helpful to provide a little structure in your coding style. And on top of that I'm glad I had a good teacher to learn from.

link|flag
vote up 0 vote down

1) Learning varied programming concepts: PLC programming, Assembler, Scripting, RAD Concepts, SQL and various Languages definately gives you a wide range of ways to attach different scenarios. Sometimes this is easier in the situations you find yourself in and sometimes not easy in an commercial/working environment. You can however use new technologies in isolation in smaller projects or disctrete parts of projects as "proof of concepts" to learn and test these technologies and learn new ways of doing things.

2) Reading Books (for particular help in specific areas) If you find books dont help you its because you're on the right track.

3) Main Point: Doing varied types of projects, Windows, Web, Windows Services, Screen Savers, Win IP Hooks, etc definately gives one a good overview of how things work and what works. Doing small projects when learning a new technology, either rebuilding existing apps you've built or cloning other small apps can definately take you throuhg the development processes quicker. 10 years of varied expereince is better than 10 years of repeat expereince.

4) If you dont like certain things in development eg Regular Expressions, JavaScript, become an expert.

5) Code Generation: Use code generation tools, you will soon learn to spot repeatable patterns to implement using code generation to save you time.

link|flag
vote up 0 vote down

Learned to read!

...seriously. If you think about it, we wouldn't be able to code anything without that basic skill.

link|flag
vote up -1 vote down

Write a new IT book, if you want to improve your knowlege and skills.

link|flag
vote up 1 vote down

Hmmm - I think that the #1 single most important thing to improve my programming happened more than 10 years ago when I read the GoF Design Patterns book Although my skills have greatly improved since then by learning TDD, database design, IOC, DI, Agile processes, etc.

But those have all been a lot of small steps - the GoF book was a huge leap.

link|flag
vote up 0 vote down

  • read some of the books listed at http://blinkmonitor.com/tag/5-stars/
  • actively use what you learned above within a few days, or you will lose it.
  • contribute to a wide variety of open-source projects.
  • link|flag
    vote up 0 vote down

    If you are interested in OO programming, I would also recommend to ready Object-Oriented Software Construction, Second Edition by BERTRAND MEYER. It really helps me to understand the OO concepts and improved my C++, Java and C# coding.

    link|flag
    vote up 1 vote down

    For myself, being open to new ideas and trying to see the bigger picture which gets to be a bit of a paradox at a point. Some examples:

    • Design Patterns - Reading about them, using them in new projects, seeing where they may already be used but I don't know that that is a pattern. These can also be work patterns or patterns in how projects are done though these are usually viewed as practices...
    • Practices - In my case this is learning refactoring, Agile, Scrum, estimating work using a modified Fibonacci values, TDD, as well as new tools like Resharper, SVN, etc. Also in here can be concepts like technical debt and broken windows that can be really neat ways to convey ideas in some cases.
    • Architecture - See how some big systems are tied together and how different components come together to build say a CMS or CRM system.
    • Evolving technology - I can look at how I use VS 2008 and try to remember back to using VS 6.0 many years ago and some parts of how I build web applications has definitely chaned over time which can be beneficial to see new ways to put things together.

    The paradox comes from that at some point, I'm looking at things from such a high level that nothing is really in focus and so the challenge them becomes trying to get back down enough to know how to put together the smaller parts while still understanding a big picture for where I'm trying to improve something.

    Finding better work environments is another big thing can affect my skills. If I'm working with people that produce code of a high quality, polished code with tests, that can act as a way to influence me to be better about what I add to the codebase. Similarly, if I work with a bunch of cowboy developers, this may make me be more of a cowboy coder myself.

    • By cowboy I mean that kind of developer that regularly has spaghetti code that as it was all done by 1 or 2 people they know what ideas where behind various parts of it and there can be many times where one has to go, "Crap, now I go fix that," or "Whoa... how did I miss that?" or, "What do you mean someone tried to put in X as a number? That's not cool."
    link|flag
    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.