vote up 2 vote down star
17

See Also:

What is the single most effective thing you did to improve your programming skill?

Tips On Becoming a Better Software Engineer

It is often said that the best way to become a better programmer is to program. However, I've noticed in my experience that programming is like chess -- you can play a lot of games and still play at the same level. Hence, pure programming doesn't always improve programming skills substantially.

If you were on a mission to improve past projects, and you feel that you did, Could you share you experience? Specifically, I'd like to know How you went about doing that, and how did you put theory and practice together? What books did you read, and what projects did you focus on?

EDIT

  1. I tried to watch 2 lectures a week . I currently go through various algorithms.
  2. I Read technical book on design, language specific (latest one is C# in Depth).
  3. I program at work.
  4. I'm currently looking for an open-source project to join.

I think a programmer should always update his algorithm/design skills throughout his career.

It is NOT the same thread as this. Thanks for pointing out.

flag

closed as exact duplicate by Paul Tomblin, Sam Hasler, Alex Fort, TheTXI, mmyers Mar 10 at 21:09

21 Answers

vote up 22 vote down
  • Work with others. Either read their code or have them read yours (called a code review).
  • Discuss design with others. Preferrably someone with more experience than you.
  • Tackle harder projects. These will stretch your mind.
  • Read books like Design Patterns. These will give you new weapons in your arsenal.
  • Learn how other languages work. They all force you to approach problems differently.
link|flag
Time HAS COME TO REOPEN THIS TOPIC – Sasha Mar 25 at 19:31
vote up 16 vote down

The answer is still write more code. But if you feel like you're not learning anything, here are a few strategies that can kick you up a notch in a hurry:

  • Do something in a language you haven't used before.
  • Submit a patch to a large open source project. This forces you to understand a large system, and look at a lot of code that other people have vetted.
  • Do a different type of application - a UI application if you're a backend person, or a web application if you're a native Windows developer.
  • Answer other people's questions, here and on mailing lists, forums, etc. Include code!

And finally,

  • Write more code.
link|flag
and on that note... Write Less Code! – Neil N Mar 5 at 18:23
Or perhaps...write better code? ;) I am not arguing quantity over quality - just coding over reading about coding, or thinking about coding, or talking about coding. Those are important but if that's all you do, you become a blowhard pretty quick. – Sarah Mei Mar 5 at 18:32
I've worked with people who wrote code for five years, and accumulated about six months of experience. They were pretty solid on the six months' experience, though. – David Thornley Mar 5 at 18:55
The problem with just writing more code, is you'll keep writing more code at the same level as the old code. While writing is like a muscle you need to exercise to strengthen, you also need a "trainer" to help you fix your technique. Practice will only take you so far. – AviD Mar 6 at 6:20
It takes about 10,000 hours of doing something, minimum, to get really proficient at it. Some folks could do that and still write crappy code, but if you're trying to improve as you go along - following the techniques I outlined - then you do, actually, just need to put in the time. – Sarah Mei Mar 6 at 17:45
show 2 more comments
vote up 8 vote down

One thing that helps immensely, is reading other people's code.
While you might not know ahead of time if s/he is a good programmer, very often you will either recognize straight off that the code is bad (or smelly), maybe even recognizing some patterns from your own code ;-), or will learn something new from that code.
Of course, there is always the risk that you will learn some new bad techniques, but at the very least you are guaranteed to learn about readability, which is a major element of good code.

EDIT: Just had a funny case this week, a programmer working for me - I considered him north of "decent", with a few years of experience - showed me some SQL he wrote, where he was consistently using cross joins. When I asked why he didnt use either inner or outer joins (which were much more appropriate in this case) - it turned out he didnt know what they were. So he'd been writing "decent" code for some time, only he'd never seen proper use of JOINs...!
Simply reading other peoples code would have exposed him to this "mechanism", and he would have been smart enough to figure out the rest.

link|flag
1  
Reading code is a great way learn and part of how I originally learned to program was to transcribe programs from magazines. The act of typing character by character the program was something of 'uber reading' slow and careful. Reading code++ – John Fricker Mar 7 at 18:27
As a security consultant, nowadays I'm actually reading a LOT more code than I'm writing - but the code I do write is orders of magnitude better for it (even though most of the code I read is baaad) ;-) – AviD Mar 7 at 19:02
vote up 6 vote down

I feel that I have grown as a programmer over the last couple of years, and of course lots of coding is important. But I think what really mattered was that I got to work with other really good programmers. Especially pair programming with better programmers than myself has taught me a lot.

Even better, I've been allowed to work on new, relatively large projects where we've had enough time to really spend time thinking about how we can do it the best way possible.

So, I think that coding is still a good way to become a better programmer, but doing it in a team with other very good programmers has been more valuable, at least for me.

link|flag
vote up 4 vote down

Certainly, it's possible to hit a point as a developer where you're basically writing the same code over and over again, for better or for worse. When you do, it's time to look at books on theory and best practices.

The canonical starting place is Steve McConnell's seminal Code Complete. From there, it depends on what you're working on that could use improvement. Just to give an example, I've lately been impressed with McGuire's Writing Solid Code, Feather's Working Effectively with Legacy Code, and the many-authored Head-First Design Patterns.

Depending on where you are in your career, you might also consider picking up a new language. It's amazing how much you can learn about programming just by finding out which assumptions you've made are really language-specific.

link|flag
vote up 3 vote down

When in doubt whether this or that solution is elegant enough - ask an experienced peer for their opinion. They often have valuable ideas. Sharing design ideas really helps.

link|flag
BE More specific please – Sasha Mar 5 at 18:02
Well, you have to design something and suddenly have a gut paranoia-like feeling that your approach might be inelegant. It can't be formally explained. – sharptooth Mar 5 at 18:10
vote up 2 vote down

Read the Design and Evolution of C++ (even if you don't care about C++)

link|flag
Great Book, I read it last year....up-vote just b/c you mentioned one of my favorite books.thx – Sasha Mar 5 at 18:02
vote up 2 vote down

Having the motivation to just dig in and dare to do something different is key. Also, there are a lot of free videos out there if you're coding in a maintstream language. That has really helped me. The challenge is staying awake.

link|flag
vote up 2 vote down

Some great answers here. In my experience some of the best ways to get really good at architecture are:

  1. Work with really smart people and engage them. Whenever you come up with a design, ask the smartest person you know for criticism. Ask them to shoot holes in your design.
  2. Spend a couple of years working on the same project. Nothing brings architecture mistakes to light like the cruel march of time, and learning to adapt a code base to new and previously unimagined tasks is probably the best way to learn about architecture.
  3. Look at other code. I have learned a ton about Java design and programming by stepping through the source code to the Apache Lucene and Hadoop projects, not to mention Spring and Hibernate. In Ruby, looking at the source for apps like Rails has been very instructive and a great way of picking up other ways of attacking problems.
  4. Do the occasional side project with a completely new set of technologies.
  5. Keep on expanding your mind by reading and listening to lectures.
link|flag
vote up 2 vote down

You are correct that writing code is not necessarily going to help.

Writing GOOD code is what is going to help. Learn from your past mistakes and don't repeat them.

When you come up with the easy way and the hard way, if you pick the easy way and run into a roadblock, be sure to re-implement it the hard way.

Don't be afraid to make tooling for yourself.

One of the things that has taught me the most, when programming--Be brutally DRY. NEVER repeat a single concept. (that doesn't mean you can't re-write something you've done before, it means that in a given code base, there is no repetition--nothing that even LOOKS like a repeated line).

Forcing this means that you spend some frustrated hours staring at your computer trying to figure out some way to solve what you could do in 10 seconds with cut and paste, but the techniques you derive from that process are exactly what you are asking for.

Overall I've never regretted doing it "the hard way". No matter how much time you think some small hack will save you, it NEVER DOES. Not even on the first release (you pay for it in either testing or integration before the first release!).

In fact, in a recent project I was trying to extract out some testing functionality and ended up writing my own scripting language (Essentially a testing DSL, but a real one, not some twisted combination language that had to follow the compiler restraints of another completely unrelated language).

An entire language with parsing, looping and variables allowing us to manipulate testing objects--and even if you just count it being used in just a single project, it's been acknowledged by everyone involved to have saved time. (We do have a strange testing situation, we are testing on set-top cable boxes and recompiling was a lot more expensive than editing a text file)

link|flag
+1 DRY really is a fundamental that forces you to get better if "brutally" adhered to ^^ – Oskar Duveborn Mar 6 at 20:58
vote up 2 vote down

To pick up on your chess analogy - you on't become a better chess player by playing lots of games against people of your own level or lower.

You only become better when you learn from people better than you...

link|flag
FYI, I play chess professionally. Even playing against better players, say international master, can do very little to your game. To better you game, you need to: analyze other games, learn opening, middle game, end game, solve positions, etc..I am just scratching the surfice – Sasha Mar 5 at 22:03
You should also go back to your old games and improve on it... – Sasha Mar 5 at 22:03
Agreed - it was a quick reply... if you don't bother to learn from others then you are just going to get beat over and over again :) – Klelky Mar 5 at 22:22
vote up 2 vote down

Learn security.
Often programmers neglect proper design principles, either because they are unaware of them or because they're looking for shortcuts.
When you learn security, you learn to enforce those principles, and that there ARE no shortcuts ("No free lunch"). Basically you learn "to do things right".


If you're interested in some resources to get started, start with the OWASP site. Also, check out Writing Secure Code. After that, there are tons more resources for specific issues...

link|flag
good. Any reference where to start learning security? – Sasha Mar 9 at 13:44
Sure, I'll add a couple links... – AviD Mar 9 at 14:30
vote up 2 vote down

Become a contractor (hired gun)… you will learn faster by participating in brainstorming sessions with various groups, seeing best practices get implemented successfully, and also learn from other people's mistakes.

You also get to work and exposed to different applications, systems, frameworks.

link|flag
that can work, however it is pretty dangerous to sacrifice an ongoing career – Sasha Mar 9 at 13:43
vote up 1 vote down

I would highly recommend joining an open source project (or at least follow the development).

There you get all the advantages mentioned in the other answers. You write a lot of code. The code gets reviewed. You work with team members. You discuss programming concepts.

There are many great open source projects in any language or platform that would love to have another contribution.

Another good option is to follow a well documented/blogged project. something like Rob Conery's MVC Storefront. This way you actively participate but you get to follow and can gain a lot.

Good luck

link|flag
vote up 0 vote down

On top of writing lots of code, make sure you spend some time each day to just learn. Try new things, do a side project in a different language.

Do some pair programming if possible, it really helps a lot

Patterns of Enterprise Application Architecture By Martin Fowler

PHP|Architect's Guide to PHP Design Patterns

link|flag
Please be more specific... – Sasha Mar 5 at 17:59
vote up 0 vote down

The only way to get better at anything is by practicing at a level that is HIGHER than you current level. So it is not enough to just write code. You must write code in a way that you have never written, constantly searching for a better way to do things. Once you've written your code, let more experienced developers critique it.

Only by constantly pushing yourself and forcing yourself to strive for greater excellence will you get better.

link|flag
vote up 0 vote down

I would look at what is the single most influential book every programmer should read. My favorites so far:

  • The Pragmatic Programmer
  • Code Complete

link|flag
A very good thread as well.... – Sasha Mar 5 at 19:02
vote up 0 vote down

I became a better developer by listening to all se-radio podcasts.

link|flag
Great! when do you find time to listen? – Sasha Mar 5 at 22:01
I use the 2 hours per day in train to and from work. Other good podcasts are JavaPosse and Manager Tools. – cherouvim Mar 5 at 22:09
vote up 0 vote down

You've gotten to the point where writing more of the same code isn't helping you learn enough, and you want to keep learning. This is good.

You need to do something different to keep learning. Learning a significantly different language is very good. Look for different paradigms. Aim to be at least basically competent in an object-oriented language, a functional language, a scripting language, a traditional compiled language, and an assembly language. (For the last, you might want to avoid the usual 86-based CPUs, at least at first, and go with something different or emulated. I've done reasonably large projects in three or four assembly languages, and my brain tries to shut down when I study the Intel documentation.) Make sure you learn Common Lisp, if only to get familiar with the macro system. Try different development environments, preferably including both Visual Studio and the older, Unixy, command-line tools.

Also, find different sorts of projects from what you usually do. Open Source projects are good for this, since you can usually ease into them and learn from what's already there. You can also read other people's code, and learn from them (even if they're mostly bad examples).

Read different sorts of books. There's a lot of good ones already in the thread, but mix them up. Read about user interfaces, implementation details, design histories, theoretical topics, practical topics, whatever.

You probably won't get through all of this in one lifetime, but the good thing about that is that you'll be able to keep learning new things.

And don't forget to have fun doing this. If this stops being fun, you'll cut down on it, and won't get as much good out of what you do do. If it gets to be a grind, consider taking a break.

link|flag
vote up 0 vote down

For at least a few that I've done one way or another, here would be my main ones:

1) Upgrade of technologies / tools for building things, including adding new ones. What I may have written years ago in classic ASP is hideous compared to what I can do with ASP.Net these days. This also includes upgrading my IDE to newer versions as well as using add-ons like ReSharper to help with refactoring. Sometimes starting over from scratch can be useful if the situation is drastically different, like taking a desktop windows application and transferring it to the web to reduce headaches in providing updates and upgrades and that everyone is using the same version.

2) New methodologies. Using Test-driven or Agile instead of Waterfall can help improve old code bases if there are likely to be UI changes done over and over again and you don't want to lock the customer into a specific look. Does pair programming work better or do you prefer to be alone? How do you do code reviews?

3) New algorithm ideas/design patterns. We all learn some of these ideas and usually forget the odd one here or there like the old "divide and conquer," "dynamic programming," or "greedy algorithm" heuristics where there may be new ones coming out every now and then. Design patterns can also play a role here since for some situations taking code that didn't use them but were appropriate can elevate one's code.

4) Try to understand why this way or that will be better than the current one. Are you improving maintainability, scalability, readability, testability, or something else within the code with these so-called "improvements."

5) New architectures, for example cloud computing or multi-core architecture that we have today that I don't think we had 10 years ago.

6) Ask questions when attending various talks and professional development events. Do you ever stop a talk to ask a question or after a talk is done, try to have a chat with the presenter to learn more or have somewhat more specific questions answered?

link|flag
vote up 0 vote down

Programming, like chess, can plateau requiring break through moments in order to improve. Chess though, has a finite and smaller set of heuristics and techniques one learns to improve. Programming is a different kind of disciple and is indeed a collection of distinct disciples and skills, some applicable to some projects and jobs and others not.

Programming at it's root is about creative problem solving so all programmers can benefit but studying and improving problem solving techniques. I like How to Model It: Problem Solving for the Computer Age for exercises. I also used to read a lot of murder mystery novels (the real ones like Agatha Cristie and Ellery Queen). The important idea is that problem solving is a skill that can be learned, that has a body of knowledge and an individual can improve over time with effort.

Programming is also about defining the problem so I consider becoming knowledgeable about the subject your program addresses essential in many cases. Working on a customer service app for telephone support? Might not be bad to spend a day or two on the phones. Writing a flight simulator? Go to ground school. Defining the problem (or redefining it) can get one out of pitfalls and into multiple potential solutions.

Architecture is essentially about making technical decisions so study decision making techniques and tools. The art of decision making is learnable (and teachable) so one can also improve through study and practice.

Another idea to keep in mind is that the brain is part of your biological system, so health is very important. Exercise brings me clarity of mind, as does yoga and meditation. Curiously, eastern and western meditation techniques tend to be concentration exercises and like everything else, the more you concentrate, the better you get at it. Practice makes improvement. Some secular Tibetan Buddhist mediations are specifically about improving concentration (Lojong in particular).

There are other skill sets that help in specific situations requiring programmers to have a wide knowledge of non-code topics in order to excel. The nature of software engineering, architecture and development is interdisciplinary, so be broad minded and keep an open mind.

My suggestion is to study the peripheral skills we use (consciously and unconsciously) every time we tackle a spec, hunt a bug, or design The Next Big Thing. To become a better programmer one must program, but to break through and become a great programmer one must also not program.

link|flag
Great suggestion... thanks – Sasha Mar 9 at 13:43

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