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 8 9 10 11 12
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 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

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 BNF (Backus Naur Form) and its various dialects, brought my understanding of computer languages in general to a whole new level. Making my first compiler (a really simple script compiler) sky-rocketed my skills.

link|flag
vote up 0 vote down

Started learning C++ a year ago

link|flag
vote up 0 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
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 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

    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 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

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

    Started Caring.

    link|flag
    vote up 0 vote down

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

    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 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

    abstract one mile long, code one inch deep

    link|flag
    vote up 0 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

    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 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

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

    link|flag
    vote up -1 vote down

    The obvious answer is:

    Learned my first programming language.

    link|flag
    vote up -1 vote down

    Learning Java and getting a Java Certification. It's a really well thought out language, with great support and community.

    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

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

    When coding, thinking like a von Neumann machine.

    link|flag
    show 1 more comment
    prev 1 8 9 10 11 12

    Your Answer

    Get an OpenID
    or

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