vote up 281 vote down star
351

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

358 Answers

prev 1 6 7 8 9 10 12 next
vote up 1 vote down

Learn Haskell.

link|flag
vote up 1 vote down

Podcasts such as DotNetRocks and Hanselminutes really opened my eyes to new concepts and ideas in development. This has lead me to many more resources, blogs and magazines that I was not aware of.

I was also lucky enough to have had a couple of jobs where I was able to incorporate development without it being in my job role, I could learn at my own pace and do things my own way.

link|flag
vote up 0 vote down

Working in pair programming with a 50+ programmer who is an expert on Smalltalk. We were programming in java, but I really learned a lot about object oriented design and debugging techniques.

Pair programming with an experienced mentor is something to be recommended, as long as we keep an open mind.

link|flag
vote up 0 vote down

There is no single think you can think of to improve it. its a learned skill. it will make u better by practice. By practice i don't mean of single attribute. the most important attributes i can think of are 1. Write code 2. Pairing or collect persapactive from different ppl (activity like coding dojo -http://www.codingdojo.org/). 3. code review

link|flag
vote up 1 vote down

Learning vim

link|flag
vote up 0 vote down

Back in elementary, I wanted to create a fake login screen that would steal passwords from my dad's office PC. It was just a batch script that run on MS-DOS and there was nothing fancy. Then, in high school, I went on to write simple MSWord macro viruses because I found it fascinating to be able to "customize" MSWord according to my liking.

The programming skills that I learned then were just side-effects on doing something that I found fascinating.

link|flag
vote up 0 vote down

I read K&R2 for a 2nd time. And then read it again a 3rd time.

link|flag
vote up 0 vote down

Participating several times in ICFP Programming Contest.

There is no other programming competition like that! Every time I learned a lot. Especially working in a team with people much smarter then I am.

link|flag
vote up 1 vote down

1) Wrote a business aplication on Ruby on Rails. This forced me to think really hard on what's the best way to do things like organizing code, naming methods, etc. This lead me to properly understand MVC and adopt a proper "professional" attitude towards software engineering. 2) Progressed to programming business applications (web) with Java ande applied my knowledge from RoR development to Java web development.

These were probably the single most effective things that helperd improve my skills as a software engineer.

But amongst these the key thing has always been: learn from others! Read books, read articles, read blogs. Reading sites like c2 Wiki, Coding Horror and The Daily WTF have really helped me gather knwoledge and undestanding.

And these days also listen to podcasts, listen to presentations, wathc screencasts etc. RoR programming screencasts were probably the most impressive learning experience to me: somebody actually coded this just before my eyes and properly explained what he's doing and why.

link|flag
vote up 0 vote down

Work with the smartest people I can and ask them questions. Don't be afraid to ask.

Someone should build a website to do that...;-)

link|flag
vote up 0 vote down

Learning a new language a year has been great (Although I learned 3 languages last year alone). I still prefer C++, but knowing different ways of solving things has improved my coding skills in many ways. That and I have a series of "Katas" or small coding goals I keep trying out on my spare time, each time applying my new knowledge to them.

link|flag
vote up 1 vote down

This is very subjective, but I find that teaching a concept to other people really helps me master it myself. I think this works for a few reasons:

  1. It puts some pressure on you to really take the time to understand what you're talking about (you usually can't just Google it in the middle of a lecture).
  2. Explaining something really helps you find the gaps in your won knowledge.
  3. Just adding a social element seems to help motivate me.

Hope this helps.

link|flag
vote up 7 vote down

Wrote Smalltalk Best Practice Patterns and the Java version, Implementation Patterns. Thinking carefully about my habits lets me program more quickly and confidently and identify situations where the cookbook doesn't apply. I'm doing something similar with design right now and I find it really helps my effectiveness--productivity and quality.

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

I think the question is not well phrased. the "one" thing, sounds to me like "silver-bullet" and we should know it does not exist. However a few things were mentioned here. One of the most important things is that you really like programmming. If you see what you do "just" as job you never will get far IMHO. The next really important thing is practicing. You must read and write a lot of programs. I for my part suggest programs in different "programming models". Programming has a lot in common with hand crafting. Everyone successfull in that area has "learned" and practiced. There usually some sort of "master" around, it's difficult to tell who'll be a programming master, the area is that bride. You just can find out while reading code, bad code, good code, exceptionel good good, extremly poor code.

Ask yourself what was good done and what seems bad. Try to improve it. Ask yourself, can one understand the code or was the programmer just lazy to spend time on it.

Regards Friedrich

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

I would say always try to come up with a model that solves a programming problem in its entirety and consistently. Once you nail the model then you can start to sketch out what this will look like code-wise. This applies to most disciplines.

link|flag
vote up 0 vote down

Spend some time actually thinking about it, rather than just doing it.

ie

  • think about what skills you have.
  • think about what skills you dont have.
  • think about what skills you would like to have.
  • think about what skills you think the industry would like you to have.

  • link|flag
    vote up 0 vote down

    When you are programming alone, it is very easy to assume that the things that come easiest to you or which seem most obvious are therefore the best. However, when you are in active contact with a group of knowledgeable others (especially ones that have more experience than yourself) you will probably find many problems that you never considered, and solutions to them that might not have occurred to you either. It is much better to learn from someone else's experience than to make your own mistakes and by doing so screw up an important project (of your own or of your employer's). If you can learn these things from your peers before you are ever confronted with them yourself, you can avoid many early missteps that catch most programmers unaware. It is possible to become a programmer with a junior amount of experience but a senior's understanding of software development if you pay enough attention to what other more experienced people are doing.

    Probably the most useful thing that I did was to spend a few years reading online forums such as comp.lang.c, comp.lang.c++, and comp.lang.java regularly (on a daily or at least weekly basis), and participating in forum discussions. (In the day when I actively frequented forums, most of them were on Usenet. Now, they tend to associate with specific websites and developer communities.)

    In active discussion groups such as these which attract large numbers of professional developers (and in particular high-level professional developers, such as language authors and the implementors of important libraries) it is much easier to get a sense of which programming techniques are considered useful versus discouraged, and which programming languages, tools and libraries are coming into favor or out of favor. Also, it's useful to pay attention to what software engineering techniques other professionals are using, ranging from version control systems to visual modeling languages to programming methodologies and so forth. Learning which areas are controversial is important too -- Watching an extended debate between two high-level experienced developers with markedly different views can be a tremendously educational experience.

    You may find after a while that your favorite language or programming approach is not as universally liked as you at first believed, and you may find you are starting to consider alternatives -- that is good! That means you are starting to become more nuanced and more realistic about your beliefs (rather than just adopting the latest fad), and hopefully expanding your horizons to include different ways of doing things.

    link|flag
    vote up 0 vote down

    There are many things but the following had great impact on making me a better programmer

    1) During university days, I was in a continuous competition with a highly talented classmate for creating the best game/program judged by other classmates. It was like 2 small start-ups fighting for market share.

    2) Reading "Deep C secrets"

    3) Participating in Open Source projects where smart people can comment on your code.

    link|flag
    vote up 1 vote down

    Worked in non-programming but related jobs, such as technical writing, producer, management, etc. The perspective you get is invaluable.

    Became busy. Having lots to do forces you to adapt efficient methodologies.

    Stuck with programming over the long-term. There is nothing as humbling as looking back on code you wrote ten years ago.

    link|flag
    vote up 2 vote down

    I asked really smart colleagues "stupid" questions I was embarrassed to ask. As Einstein said, "If you can't explain it simply, you don't know it well enough." I have also investigated the codebase at work on my own time. You have centuries of programming experience at your fingertips if you work for a decent sized programming outfit.

    link|flag
    vote up 6 vote down

    Going to a good university.

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

    Use your computer and understand it thoroughly.
    Write code for whatever you thought you can.
    Read good code and learn how to write. Read bad code and learn how not to code.

    link|flag
    vote up 4 vote down

    I definitely agree that programmers and writers have the same mantra. For writers, it is simply to write, there is no way around it. For programmers it is to well.. program. With that said I think there are a few things that all programmers should do.

    Most of these areas are really about stripping away the mystery and getting you to think about what is really happening below the level you are operating at.

    In no particular order:

    Learn several languages Learn LISP/Scheme, asm language of your choice, C/C++, SmallTalk

    Get yourself exposed to different programming languages for the same reasons it is worth learning other spoken languages. These expose you to totally different modes of thought and will get you to look at problems in an entirely new light.

    Write a language.
    This will get you to think about languages at a deeper level. Just get something out and working before you try and create the next big language.

    Write an multi-threaded OS Writing an OS will expose you directly to hardware, memory management, threading, protected memory, and get you to understand the machine. Be prepared for immense frustration, and deep satisfaction the first time you get a machine to boot to a prompt. :)

    Write a game I'm a bit biased on this one. Game's are immensely practical applications that force you to not only dig into numerous computer science and code construction problems, but they force you to be practical. For real fun, try writing to an older platform such as the PS1 or even the Atari 2600 (Stella manuals can be found online). These are "tricky" architectures that will force you to really understand them before creating anything interesting.

    There are clearly many other areas to work on and things to do in order to improve yourself as a programmer. Some will be very craft related, and others are going to push your boundaries of knowledge. The above list are great sets of projects to set out to accomplish. You will be forced to grow as a programmer when working on them, and they will also set your resume apart for the future.

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

    Debugging other people's code. I work in the video game industry and we have hard deadlines to ship for the Christmas Holidays. In order to get out on time, at the end of the project we are forced to deal with squashing lots of bugs in short order while trying not to introduce new ones.

    The ability to read through another person's code, understand what they did (and possibly what they did wrong) as well as fixing it in a way that won't introduce new bugs gives you insight into both other people's programming methods as well as how to extend your own.

    link|flag
    vote up 0 vote down

    working with people far smarter than I

    link|flag
    vote up 0 vote down

    I'm sure this is simply reiterating previous comments:

    1: Read code from numerous languages. Understand how the language handles a given situation. It may make you more enlightened in the language you are looking to become better at.

    2: Teams...Debating programming practices, approaches, testing, planning, implementation, etc.

    3: Use the above to focus on a smaller set of languages.

    4: Never assume your 100% right, then you'll have no reason to question anything.

    link|flag
    vote up 1 vote down
    1. Complete a small project from A to Z, starting with documenting requirements and ending with UAT, production and support
    2. Let a person with grater experience (an architect) analyze your work and give you feedback
    3. Learn from your mistakes and apply the best of what you learned into the new projects
    4. Concentrate on the INITIAL QUALITY of your code. Create metrics to measure it and assess it regularly.

    Programming is not only about coding skills, but also about processes, communications, time management, etc.

    Live by the goal that you want to become best-of-the-best in your position at your organization.

    link|flag
    vote up 1 vote down
    1. Read. Books, Blogs, other people's code - anything you can.
    2. Program. A lot. I won't say practice makes perfect, but it certainly helps.
    3. Along with #2, keep an open mind. Be ready to accept criticism. Don't take offense; take it as a challenge. Admit and learn from your mistakes and get better.
    4. Review others' code. Figure out how other people think about problems. It can be really eye opening. Perhaps they're doing something more efficiently than you are. (or perhaps less)
    5. Challenge yourself. Take on crazy difficult projects that branch into the unknown. Try to learn something with every project you do.
    6. Tinker. Never let work/school be your only development experience. Invest time in toy projects.
    link|flag
    vote up 0 vote down

    I think the biggest thing for me was when I took a step back from implementation and started looking at the bigger picture, and better understanding architecture, patterns, processes, requirements analysis etc.

    link|flag
    vote up 0 vote down

    Learning to read other peoples' code. You'd be surprised how many programmers cannot or will not do this. They'll spend hours and hours polishing arguments on why it would be more efficient to throw out the old code and rewrite from scratch simply because they do not want to go through the pain of reading and understanding someone else's code.

    Number one technique for finding problems in the code I've written is run the debugger and step through it.

    Number two technique for finding stubborn problems in code I've written is explain the code to someone else. Another programmer is best. Almost anyone will do. Probably not my wife or mother.

    Since 2003, I've learned that ALMOST nothing is new under the sun. Always look for an example on the web before setting out into new territory.

    And read Code Complete twice.

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

    Your Answer

    Get an OpenID
    or

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