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 3 4 5 6 7 12 next
vote up 9 vote down

This is usually my chronological order of learning any new technology:

  1. Regularly read good blogs (Atwood, Martin Fowler, etc.), Keep up-to-date with technology news, Follow stuff about interesting new technology. These steps will let me decide if I find anything interesting to further explore.

  2. Read the right book or any other resource to learn for your level (e.g. for beginners if you want to learn design patterns, I would suggest 'Head First Design Patterns'). I have also specific preferences for books.

  3. Roll out a toy project or two using the thing I learned. I don't worry about the usefulness of the project. My intention is just to exploit my learning. (e.g. A calculator project for OOP would be fine)

  4. I would see if I could use the stuff at work. (e.g. Though we don't use subversion at work, I use it as my local repository, I used Ruby for a task which would otherwise be too monotonous, and time consuming)

  5. This is the best part which I think most people miss out. Knowledge sharing sessions.Give a session or two to fellow team members for example. I believe teaching is one of the best ways to really learn the technology. I guarantee your level of understanding of the technology will become multi-fold, whether you audience gets it or not. :-)

link|flag
vote up 1 vote down

Read. A lot.

And write. Write about programming.

Fashion a passion for programming. Let it fester, er, grow!

The thing about programming is not the programming, but the concepts. If you learn the concepts well, you can apply (most of) them with any development language.

The single most effective thing you can do though is to never stop learning. Pay attention when working with others. Even a senior dev can learn from a junior dev if the senior programmer pays attention. Just remember that you never stop learning.

Second most effective thing you can do is read Pragmatic Programmer.

link|flag
vote up 1 vote down

To be honest, learning LISP, Prolog and ML went a long way to improving my skills as a programmer. Looking at the programming world through the lens of functional programming goes a long way. The math behind it is fascinating. It puts you in a completely different state of mind when you go back and work in C#/C++/Java/what have you. Functional programming is clearly not the end all be all of programming paradigms, but it's a great tool to have in your mental toolbox.

link|flag
vote up 0 vote down

Typing in crummy BASIC games from magazines, and then writing my own crummy games.

I'm a big fan of not reading code, but typing it in. For me the code is more real when I type it in because I "read" it slower and trying to understand it as I go. Downloading tutorials and clicking on buttons never really did much for me.

link|flag
vote up 2 vote down

I felt like my turning point from "okay" programmer to "good" programmer occurred during college. Two things, which happened to coincide:

  1. Take a compiler construction class (Compilers Construction and Finite Automata), where I built a C compiler
  2. Learn a decent UNIX text editor: I picked vim.
link|flag
vote up 1 vote down

I read "A Framework for Representing Knowldge" by Marvin Minsky - and discovered the Science part of the field, as opposed to just the Programming part, which I had gotten bored with

link|flag
vote up 0 vote down

I started programming about 25 years ago when programming was not taught in classes anywhere and whaever you learned you learned by reading and trying it out. All this really to say that programming was never a job for me... Even now that I work at a large company writting code and designing solutions all day long it's still a hobby for me - something that I love doing more than anything else in the world...

So the answer is I never had to decide to do anything special to get better at programming I always did it because I loved it so I always have been in the learning mode for more than 24 years now and I still learn new stuff almost everyday!!!

Programming is AWESOME!!!!

link|flag
vote up 1 vote down

I started life as a C programmer.

The biggest jump came when I switched from MS-DOS/Win 3.1/Windows 95 to Slackware Linux.

Close runners up:

Learned assembler. Learned about Functional Programming

link|flag
vote up 0 vote down

I decided to get better. It's easy to figure out where your deficiencies are, and it's even easier to ignore them. I read Bill Wagner's "Effective C#", and anything else I could find. I remember I was working this contract and I wasn't getting along with the internal staff, and the other consultants on the engagement were blatantly stealing bad code snippets from CodeProject and billing the client for a full day's work. I felt like there were enough poor developers out there and I wasn't going to be one of them. I always felt like I was a good developer, probably because I was just tenacious, but on that contract I made the decision that I was going to work on the hard parts, the uncomfortable parts, and that I was never going to stop learning how to do things better. Since then, I strive to live up to a standard, as Phil Haack said, "compared to yesterday, I'm always a bargain".

link|flag
vote up 1 vote down

Being around people that are much stronger than I am. You pick up the scent of good skills from these folks. On the other hand if you are around folks with much weaker skills, there's a tendency to cut corners, etc. This applies more generally than just coding. I take it as a general rule that I need to always be around people better than I am. I have always benefited when I have done so.

In terms of techniques, one that has really helped is actually reading blogs. Putting together a good collection of technical blogs that you read frequently is an invaluable growth tool. For example through blogs I learned about DDD, IoC, SOC, SRP, etc. Yes you can learn them many other ways, but blogs tend to be much less book knowledge and much more real application.

link|flag
vote up 0 vote down

Learn assembler and write a disassembler to see what the compiler really does.

link|flag
vote up 1 vote down

In terms of coding, it would be learning Common Lisp for me. I never got to do real projects in it, but it taught me most of the language features possibly present in other languages. It helps me learn new languages/think about problems in unusual ways.

For professional development, I learned a lot from a senior developer at my first job while still in college. He guided me through concepts/things like version control, deployment to servers, testing, and working with designers. These things were confusing to me as a new developer.

link|flag
vote up 0 vote down

Got a job teaching programming at university. Had to read all those text-books that I never read as an undergrad in order to try to get it into the heads of bored 19 year olds.

link|flag
vote up 1 vote down

Joined a relatively big open source project and contributed thousands of lines of code to it. In the process, I learned a lot about architecture of big programs, good cases to use programming patterns, advanced object-oriented design, teamwork, cross-platform compatibility and UI design. Ever since I joined the project, my programming skills keep improving.

So, to answer: it's the working with other people in a team that opens new horizons. And open source projects are very good for this since:

  • there is no pressure to get the work done ASAP
  • people will tolerate if you lack some skill and help you learn it
  • you don't have to program some part of application you don't like or find boring
  • the entire team is friendly, since it's in everyone's interest that the project goes well
link|flag
vote up 0 vote down

The single best thing I did for my skills? I taught for a few years during the economic downturn. (Finding "real" programming gigs was tight in late 2001!) By teaching for a few years, not only did I have to learn and know my craft at a way deeper level than normal (thus being able to explain it to other talented coders), but I also had to learn to think like a compiler.

That was the biggest benefit. I can often read a chunk of C# or VB .NET code (my strongest suit, and that which I was teaching) and determine beforehand whether or not the code will compile, and what the effects will be if it does. This helps me out on a daily basis when maintaining my clients' legacy codebases -- especially those I didn't build!

link|flag
vote up 1 vote down

Teach someone else how to program.

I teach programming after work at the local college and it requires me to be able to plan, to think on my feet, anticipate errors that people (including mysef!) make, and to empathize with the difficulties of people learning something new which makes it easier for me to face the frustrations of learning something new.

link|flag
vote up 0 vote down

Programming! I love this, anyway, so I do it at work, and at home, on open source projects or my own little projects. I keep learning, new languages, new algorithms, new APIs, etc. The only problem is that days are too short... :-)

link|flag
vote up 0 vote down

Maintaining a constant curiosity and a passion for learning. Observing my bored co-workers stuck in a rut is a great motivator for maintaining that on a daily basis.

link|flag
vote up 0 vote down

Practiced.

link|flag
vote up 0 vote down

The single most effective thing I do to improve my programming skills is read books. Not reference manuals or how-to-do-something-in-x-days books but books about best-practices, etc. Like these...

http://www.codinghorror.com/blog/archives/000020.html

link|flag
vote up 1 vote down

Read Code Complete by Steve McConnell

link|flag
vote up 0 vote down

Understand that knowing what question to ask is more important than knowing the answer (that's what Google or sites like this are for).

What is the best design pattern?

What regular expression...

How should I test...

Once you get that, life as a programmer becomes a lot easier.

link|flag
vote up 1 vote down

There are many effective things I did to improve my skills. I read and still keep reading as many programming/technical books I can cram into my skull. I also write as much code as my fingers will allow me.

Programming is an art form. Plain and simply. Just like the artists of history. Leonardo did not just see art as "just a job" but it was his life's work.

Another great thing to do is listen to other software developers who are not only better than you but who are on your same level. There are many ways to come up with a solution to a certain problem. This is where collaboration not only helps solve a solution but it also develops your programming skills as well as your team work abilities.

If you study and practice at it then you will be a great developer.

link|flag
vote up 1 vote down

Switch Industries every 3 years.

link|flag
vote up 1 vote down

The single most effective thing? That's easy: listening to other people.

link|flag
vote up 0 vote down

RTFM and practice, practice, practice!

link|flag
vote up 0 vote down

I adopted different methods. 1. Doing actual programming (especially working in diverse range of applications and languages helped) 2. Learning and reading programming/software engineering books and applying knowledge (as people often just read it) 3. Learning and modifying frameworks. 4. Learning from senior fellows (wherever they are) 4. I used to be a teacher as well so i learn quite a lot from my students and their questions. 5. Never restricted to any platform/language , so got diverse thinking and always apply my experience to use one across the board. 6. And the final "Never Stop Learningg whatever offer" ?

link|flag
vote up 0 vote down

Understand the hardware that runs your program, understand the people that will use the program and test every day if your knowledge of both of them is up to date.

link|flag
vote up 1 vote down

Applying the Extreme Programming aphorism, DoTheSimplestThingThatCanPossiblyWork, probably improved my overall software-engineering skills more than any other single event or practice. Of course, sometimes that "simplest thing" doesn't work, but that's OK: you've learned something, with minimal investment of time and effort. Even if you hate everything else about XP, that one principle is worth the price of admission.

link|flag
vote up 0 vote down

creating games was the best thing I ever did. now competing on spoj.pl and topcoder.com is the best thing I am doing ;P

link|flag
prev 1 3 4 5 6 7 12 next

Your Answer

Get an OpenID
or

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