vote up 281 vote down star
352

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 8 9 10 11 12 next
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 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 0 vote down

Wrote code and took an interest in improving it.

link|flag
vote up 0 vote down

Having a background at mostly Perl, PHP and C++, I once started learning Common Lisp. This lead me to learn functional programming and metaprogramming, which dramatically opened my mind.

link|flag
vote up 0 vote down

To boil it down into a few sentences and echo some things I'm sure others have said (didn't get a chance to read ALL the answers):

  1. Try new things. See a little blog post somewhere about erlang and it sounds kinda neat but you don't have any specific or practical use for it at the moment? Spend a day goofing off with it anyway. You might never use it in a real project, but the extra perspective will help more than you realize. I actually have a policy wherever I'm working that anyone who works for me (who are mainly software engineers) HAS to spend Friday working on whatever they want, and a big reason for that is specifically this point.
  2. Sounds silly, but talk to people who aren't programmers but involved in the same projects/products/companies as you. Get perspective. Learn WHY somebody would want to do something, have a feature, etc. and how it would impact them. I've found this generally leads to designing more practical and well thought-out software, which requires you to think about it a little harder and thus, learn new things.
link|flag
vote up 0 vote down

In my opinion, the most important bit is to keep you mind flexible as the decades whoosh by. I see so many people who are unable to embrace anything new, as they forgot the principal rule of IT: everything changes. If you lose the ability to learn and change in an environment that changes rapidly, you will soon end up fossil-minded.

I personally like competitions like google code jam, topcoder.com, projecteuler.net - it really keeps you CS skills in shape. The rest - it's just reference. After using a few OO programming languages, the rest is pretty much the same. It's all the same in the end. It's easy to learn the N+1. th language. But paradigms, algorithms and the rest don't change all that often.

link|flag
vote up 0 vote down

Hello!

Improving my communication skills with bosses, other programmers and customers

This was my most effective thing to learn. Back in the beginning of my career, I usually thought I understood my boss or a client, when they told me, what feature etc they wanted in the program I was coding. But usually I did not completely understand, what they really wanted, because we usually have different views of things - this is especially true for non-coders!

But with each project and with each mis-communication I learned to listen more specific, to ask for more details and to let the other person explain their ideas in full and to make sure to visualise their ideas with simple sketches - so today I spend a lot more time to make sure I understand the task given, but I save a lot of time and frustration with coding things that were neither wanted nor asked for.

Best regard, B

link|flag
vote up 0 vote down

Learn Lisp or Scheme

link|flag
vote up 0 vote down
  1. Faithfully reading development blogs such as Phil Haack's
  2. Reading Code Complete 2nd Edition
  3. Attending developer conferences annually
link|flag
vote up 0 vote down
  1. Working with developers more experienced and smarter than me.
  2. Mentoring developers less experienced than me.
  3. Paired programming
  4. Code reviewing other people's code
  5. Learning new programming languages
  6. Writing cross-platform code
  7. Coding for fun
link|flag
vote up 0 vote down

RTFM, everything else had to wait until I figured that one out.

link|flag
vote up 0 vote down

For me, it has always started with an idea and a problem to solve.

For example, I had learned C in 9th/10th grade on my own, and then wanted to learn this "C++" thing. I had an idea for this simple little "Quote of the Day" app that would greet me when I booted my machine (this was back in DOS and autoexec.bat). I realize it didn't have much to do with OO but I used it as a challenge to begin thinking that way and wrote the app.

I often meet programmers today who seem overwhelmed by the sheer size of the frameworks and other "stuff" around the languages and what not today. It almost paralyzes them from really exploring because the fear of the unknown stops them from spelunking.

When I didn't know how to open a file and read its contents (for my quote of the day app), I started digging (The Programmer's BBS! and spent way too much at B. Dalton/Waldenbooks back in the day.) for answers and ultimately rigged up a solution. I have also always been interested in the best solution, so when I would find a better way to do it, or learned that I had maybe not solved a problem appropriately I would refactor my code.

Start with an idea, a problem, and then write code.

link|flag
vote up 0 vote down

I definitely support Aaron - being a better programmer involves solving problems, not reading about the language. For me the key event was my Latin course back in school. Each "feature" in Latin was explained in our textbook by a text solely constructed of the new grammar style, e.g. a text with an "ablativus absolutus" in each and every sentence. Wow, how I hated this. After sometime we moved from the textbook to Caesar and - BOOM - he wrote about history and I simply wanted to dig through his stuff, so I wanted to read and understand him. No artificial language any more but I created a self interest.

For me it is exactly the same with programming. It's nice to know, that a certain feature exists, but you can grasp it fully, if you use it to solve a problem, even if it's a problem you just thought up for training.

Think about a nice simple tool and hack it up in your language of choice. That's learning how to program!

link|flag
vote up 0 vote down

Learning a unit test framework and integrating tests into everything I did. My code quality went from so-so to sterling in a matter of months. Learn from others who are successful and read lots - the pragmatic programming series of books are great for tips and tricks.

Pragmatic Programmers

link|flag
vote up 0 vote down

Blog!

Many people have mentioned reading blogs, but I think that's too passive.

For me, blogging technical topics has really helped boost my rate of learning, and also retention. As Joseph Joubert said:

To teach is to learn twice

It's important to note that I'm not talking about posting stuff like "silverlight sux". I mean set yourself the task of writing a blog post that properly explains the thing you are trying to learn.

Having to write about your learning is a great discipline, for it forces you to fill all the gaps and leaps of understanding in order to convey the topic well.

It matters less whether you have a real or imagined 'pupils', but if you write well enough then the readers will find you!

link|flag
vote up 0 vote down
  • Learn a new programming language every year. Include some very different, non C based, languages like Lisp.
  • Write articles and present at user groups. There is no better way to learn something than having to explain it so someone else :-)
  • Focus on problem solving skills instead of technology. The latter changes every few years anyway :-)
  • Pair programming.
  • Listen to smart people (and know when to ignore them).
link|flag
vote up 0 vote down

Diversify your logic training. Any chance you get you should branch out and really explore as many other logic based disciplines as possible. It can be surprising how learning the techniques of another field can help you bring fresh insight into algorithm design and help you approach programming problems from a new perspective.

link|flag
vote up 0 vote down

Read.

Back in the early 90s, I remember reading a column in C++ Report that said if you read one book per year on your own time you are ahead of 90% of your peers. It stuck with me and helped motivate me to read a lot on my own time, which helped me a lot in my growth as a developer and in my career.

link|flag
vote up 0 vote down

I got myself into the habit of writing pseudocode or otherwise planning the LOGIC before starting to do actual programming.

link|flag
vote up 0 vote down

Two things together:
1. Stopped (actively) programming
2. Learned security.
And then there can be 3. Go back and start programming securely. I did this when I went to become a HPC(/security consultant), and I highly recommend it.

I know, I'm a bit of a security bigot - but seriously, secure code IS better code. Works better, usually performs better, by necessity has fewer bugs, and is overall more thought out.

And in addition, I had to learn a lot more about, well, everything, things I'd never touched on while programming and things I would have never experienced. Not to mention reading HUGE amounts of MANY other peoples production code - the good, the bad and the ugly - and seeing the results of the difference between them. This also forces you to think about EVERYthing up front, in very short time frame - so you're virtually guaranteed that your design is solid from the ground up.

link|flag
vote up 0 vote down

Watch all of the SICP lectures and learn to program in the way that they do.

http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/

I've known rudimentary Lisp for half a year now and programming for 1 and a half years before that. Right now I'm starting to watch the videos, and I'm almost certain I'll watch them again in a few years to refresh my memory. They're entertaining, interesting and mind bending of the way you think about programs.

link|flag
vote up 0 vote down

During my university days the single most course that improved my programming skills the most was the data structures and algorithms course. I chose c++ as my language of choice and it was a classical experience.

link|flag
vote up 0 vote down

On each project I try to use a new technique or apply a different design pattern. I also go back to older code and re-read to see what areas of opportunity I missed try to match those items with new things I have learned. I also read, read, read programming blogs and books.

link|flag
vote up 0 vote down

Hiring really good developers and working with them, as much I was able to.

link|flag
vote up 0 vote down

Learning vim AND regular expressions well.

link|flag
vote up 0 vote down

Started reading the development blogs. It's almost too much information and I doubt I'll ever get to even 25% of the stuff I bookmark but it keeps me up to date and excited about development every single day and because of that I'm a better developer.

link|flag
vote up 0 vote down

I listened, attentively, to those who were willing to teach and show.

link|flag
vote up 0 vote down

Be responsible for both writing and supporting the customers who use the code you write. Any lack of quality will be your own job to fix, you get the irate calls, you soon learn to make the code better.

link|flag
vote up 0 vote down

Worked with other developers. Moving from a small 2 person development department to bigger outfits really opened my eyes in terms of different ways of approaching problems, different coding styles etc.

I'd say that was the "Single most effective" thing for me.

link|flag
vote up 0 vote down

Just love your job, and you'll improve. If you wake up every morning in bad mood because you don't want to work, then leave your company ! Your work is 50% of your life, if you don't enjoy it you'll never improve.

link|flag
prev 1 8 9 10 11 12 next

Your Answer

Get an OpenID
or

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