vote up 285 vote down star
365

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
3  
always a great question to ask of others! – therealhoff Sep 18 '08 at 23:14

361 Answers

prev 1 7 8 9 10 11 13 next
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 1 vote down

Took a job where I was in over my head, yet had a great mentor who was willing to show me the ropes.

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

I kind of learned it the hard way, but something that eventually really improved my programming skills is knowing when it's time when not to be using them anymore. To be more specific, to know when to take a break. I have spent hours trying to figure stuff out while being a certain state of thinking that made me run around in circles. Taking breaks really improves your skills... or at least their effectiveness.

link|flag
vote up 1 vote down

The single most important thing I've done is code. Anytime I've learned a new language, or was presented with a new environment or library/assembly, I try and just write some code for it, even if it's a stupid little program that doesn't do much. I used to try and do a hex editor in every new language I learned, it was fun and challenging.

But also, things to remember:

  1. Never stop learning. Also, realize you can learn from anyone even the "green" programmers. I think that I've tried to learn at least something from ever project I've been on.

and

  1. Never stop growing. Don't get too arrogant to think you know it all, and stop trying to improve yourself.
link|flag
vote up 0 vote down

Learn Lisp or Scheme

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

I think that most effective moment in anyones career is the moment you decide to get out of your box and meet the real world!

Once you start reading blogs, listening to podcasts and actively include yourslf in the community - your skills will boost dramatically.

link|flag
show 1 more comment
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 2 vote down

Walk, Talk, Eat and Drink.

Walk away from the computer away from my comfort zone. Go talk to a real person about what we need to make happen. Eat lunch with the team. Drink after work.

Programming, I've found, is an extremely social communication-intensive activity. The coding occupation is dominated by people like myself who would much rather not be social. I'd rather figure things out myself rather than ask a question. I'd rather grumble about the inherent superiority of my design than collaborate. I'd rather be passive aggressive than confront someone.

The agile approaches recommend a lot of face time. I become acutely aware of my anti-social tactics. My effectiveness as a programmer went up by leaps and bounds. And believe it or not, my code got better too.

Better requirements from better questions. Improved designs from more input. Beer helped relax me.

link|flag
show 2 more comments
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 1 vote down

One of the most effective things that I did to become a better programmer was to get laid off in 2003. Once I saw how few jobs were out there for my slender set of skills, I started to work harder at growing (and maintaining) my skill set, both to get a new job then and to keep up my skills since then.

One thing I find helpful is to read a lot of programming books, and to do the exercises and type in the code in the examples - instead of just reading over them, sit down and work at them - doing the work by hand, typing it in letter by letter, helps you to pick up on where you're likely to make errors in the future - do you forget to put in ; at the end of each line, do you accidentally skip putting spaces in... and you also can figure out any system problems - if the code should work, because it matches the book, it can make it easier to figure out why Java's not working.

Reading blogs is good too - keeping up with what people are talking about in the biz is helpful to keep yourself interested and up to date. You may not end up using hot new thing X - but just hearing about it helps keep your brain ready for new things on the horizon.

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
prev 1 7 8 9 10 11 13 next

Your Answer

Get an OpenID
or

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