vote up 35 vote down star
53

Lately, I have taken to programming without a mouse to force myself to become more comfortable with different shortcuts. It's been a good exercise as I feel using shortcuts is essential for productivity .

I figured I would ask if anyone else did the same types of things and could recommend other things to help improve my habits.

flag
show 7 more comments

44 Answers

1 2 next
vote up 55 vote down check

Teaching,

Showing another programmer something you have recently learnt. I find it reinforces my knowledge, since they tend to have pesky questions they need answering.

link|flag
1  
And if you can't blog, apply for a management position. – Haoest Nov 6 '08 at 21:38
show 5 more comments
vote up 32 vote down

I think it takes more than just one thing to make you a better programmer. I think it requires a passion about programming, a willingness to always be learning and a multi-faceted approach.

I head over to Project Euler every now and then and work through their programming problems. I enjoy the problem solving and seeing how other people solve the problems in different programming languages is often enlightening.

Another option is to present on a programming topic at a local user group, code camp or even a lunch'n'learn at your company. It will force you to dive into a subject more deeply. Not a member of a user group? That would be another good start ;)

The third thing that I always do is to learn a new language or technology (like WPF in .NET) by assigning myself a pet project using the new language or technology. When I do this, I try to create something I will use to keep my motivation and to make it real. They are usually little utilities that just make life easier.

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

Here's an answer from an old post on my blog:

Secret Teachings: The Programmer's One Inch Death Punch

How do programmer's get better at their job? Few programmers think of programming as a true profession. For most it's just a job. They go to work, do what's asked, and go home. They don't read. They don't attend conferences. They don't train. In fact, the training business for software is pretty much dead and has been for years.

Other professions have different attitudes. Professional athletes train constantly to improve their skills. Even doctors and accountants have stringent continuing education requirements so they stay current.

What can we programmers do? Let's first look at how expert performers are created in the first place. That might help us figure out how we can become better. Time in an article called The Science of Experience has a lot of potentially fruitful ideas:

  1. The number of years of experience in a domain is a poor predictor of attained performance.
  2. Rather than mere experience or even raw talent, it is dedicated, slogging, generally solitary exertion, repeatedly practicing the most difficult physical tasks for an athlete, repeatedly performing new and highly intricate computations for a mathematician, that leads to first-rate performance. And it should never get easier; if it does, you are coasting, not improving.
  3. They key is "deliberate practice," by which is meant the kind of practice we hate, the kind that leads to failure and hair-pulling and fist-pounding. You like the Tuesday New York Times crossword? You have to tackle the Saturday one to be really good.
  4. Great performance comes mostly from deliberate practice but also from another activity: regularly obtaining accurate feedback.
  5. Experts tend to be good at their particular talent, but when something unpredictable happens, something that changes the rules of the game they usually play, they're little better than the rest of us.
  6. Entire classes of experts � for instance, those who pick stocks for a living, are barely better than novices. (Experienced investors do perform a little ahead of chance, his studies show, but not enough to outweigh transaction costs.)
  7. Researchers found that élite skaters spent 68% of their sessions practicing jumps, one of the riskiest and most demanding parts of figure-skating routines. Skaters in a second tier, who were just as experienced in terms of years, spent only 48% of their time on jumps, and they rested more often.
  8. Experience is not only insufficient for expert performance; in some cases, it can hurt. Highly experienced people tend to execute routine tasks almost unconsciously. Experience in a particular task frees space in your mind for other cognitive pursuits, wondering what's for dinner, answering your cell, singing along with Justin Timberlake, but those things can distract you from the accident you're about to have.
  9. Experience can also lead to overconfidence: a study in the journal Accident Analysis & Prevention found that licensed race-car drivers had more on-the-road accidents than controls did.

None of this trips my BS meter. It makes a lot of sense and jibes with experience. We all know people with 10 years resume experience in X who couldn't program their way out of a paper bag while someone with just 1 year of experience continually delivers quality results. And I know I've grown the most when truly challenged to solve new problems.

Given the science of experience article I think Coding Dojos seem like a potential solution to the programmer training dilemma. A coding dojo is "a meeting where a bunch of coders get together to work on a programming challenge." It's a form of deliberate practice, which is "not the same as experience gained while doing your job. It is when you actually seek out experiences that will stretch your skills just the right amount, and give you feedback that enables you to learn."

For thousands of years martial arts have been taught in a deep mentoring relationship using a long progression of increasing difficulty and challenge. The path from a white belt to a black belt is long, it's hard, but in the end you learn. You learn through constant practice and challenge.

It would be interesting to consider how a similar infrastructure could be setup to train programmers.

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

Learn a new programming language.

Particularly something that had features or a style you haven't used before.

link|flag
vote up 10 vote down

In the past, I would figure things out on my own, but now the ubiquity of answers on the web has made me a lazy developer. I realized I was depending too heavily on Google for answers to small coding problems.

So I decided to give myself a five minute window to analyze a problem and see if I would be able to arrive at a solution myself, using the documentation. It seems trite and silly and, well, obvious, but I don't think I'm alone in developing a lazy dependency on Google (or SO for that matter).

Now, if I want to know how use LINQ to reorder a string, I sit down and write the code to figure it out. Then I truly understand it, rather than just pasting someone else's answer into my code. The exercise forces me to understand things I wouldn't normally dive particularly deep into.

That was a difficult thing to admit, by the way.

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

(Why am I not surprised no one mentioned this....)

I carefully document my code (and sometimes other people's) particularly if it involves an API other people will be using.

It forces me to re-examine the choices I made in the design, particularly those concerning the interface ("if ParamB can only be true when ParamA is false, why am I asking for both?"). These often lead to more efficient implementations.

link|flag
vote up 9 vote down

Exercise your brain with math puzzules: ProjectEuler.net

link|flag
vote up 9 vote down

Ok, this is going to sound really insane, and it's not a joke, but actual exercise makes me a much better programmer.

Something to do with endorphins and blood-flow to the brain I imagine, but after a workout, I get really good programming flow.

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

Read a book on Design Patterns or Refactoring. I'm in the process of reading one on each right now.

link|flag
show 2 more comments
vote up 8 vote down

Sleep. I make sure I get plenty of sleep, so that my brain can run on all cylinders longer.

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

Write code EVERYDAY

link|flag
vote up 7 vote down

Write / blog about some coding problem, explaining it to the you of a year ago. Take some technology or algorithm that challenged you and write it down in a way that you think is so clear that "if only I'd read this a year ago..."

What you'll find is that you want to break down the steps into discrete functions. You won't want to use inaccurate or unclear names. When you do something tricky, you'll realize "I can either explain this in three paragraphs or refactor my code so that it's clearer," and that realization will help you understand if the issue really called for a tricky technique or, more likely, that with a small bit of refactoring you can make tricky programming less and less common.

When you write about programming, you come to understand that the readability and comprehensibility of code is deeply linked to code quality.

link|flag
vote up 7 vote down

To expand on the prior post - "Teaching"...

A great way to expand your knowledge is to begin teaching a real class in a formal setting like a community college. By "real class" I do mean paying students.

The thing about teaching paying students is that they then have expectations of you. There is nothing quite like having to demonstrate real examples in front of a group with expectations to hone the skills.

Start with something you know very well. You will quickly discover just how much you need to learn! ;-)

Having said that, teaching is not for everyone. I liken classroom work to "tap-dancing naked in front of a large audience". You are on display, with all your faults clearly visible. It can be a rush, or a nightmare (sometimes both).

But nothing else will so clearly demonstrate just how much you have to learn as that.

As another bit of advice - forget the lectures. Lectures bore people unless you are a really gifted speaker. Besides, most lectures are just the same info found in the text. These are adults (at a community college level). What most learners at this level want is TONS AND TONS OF EXAMPLES. Don't use the simple examples in the text, but derive new ones based on the material. Especially work examples similar to the assignments.

I started out lecturing, and quickly found that it was the examples that captured the class. Sometimes the class format still requires lecturing (like if I'm teaching a multi-secion class and the lead instructor is preparing new powerpoints (yuk) each week), but when it's my class, I assume they have done the readings and just leap into examples.

Cheers,

-R

link|flag
vote up 4 vote down

Try doing something by hand that your IDE will normally do for you. This forces you to actually learn many small things about your environment that you may not even know that you did not know.

And conversely, learn something new about your IDE too. Sometimes its worthwhile to go to an online tutorial for your ide and see what's new. You would be surprised that there are many things in the IDE that would make you a more productive developer and you may not even know about it.

link|flag
vote up 3 vote down

I read books (and magazines) on lots of different topics. It gives me a different perspective on things, both from a business perspective and from a design/development one.

link|flag
vote up 3 vote down

I try to pick a question on SO that I have no clue about, and try to learn about the different things involved. I found that I learnt alot from this way, and you tend to get real life production problems that other users encounter.

link|flag
vote up 3 vote down

I like problem programming like Project Euler to get yourself forced to code things you perhaps wouldn't do yourself. You can also see how other people did the problems in different languages.

Coding in "hard" languages like machine code or doing some more hardware-related stuff also can be very refreshing.

link|flag
vote up 3 vote down

Analyze/Optimize your code. Either use a profiling tool for your language or write your own timer function (make sure it's accurate enough: in C# the Stopwatch class is very accurate, the DateTime class is not).

You're guaranteed to be surprised at what is making your code slow :)

link|flag
vote up 3 vote down

There are several good points and answers already given. I'll add this:

It's a different class of programmer that programs outside of work hours, with no monetary compensation (at least at first). You get exposed to a refreshing and invigorating world when you step out into the realm of open source (OSS), and contribute to OSS projects, or even start up some of your own. Think about it: what would you think of a mechanic that worked on cars in his day job, but never worked on his own vehicles at all? Or a chef that cooked in a restaurant by day, but had no passion to cook at home? Or a musician that never played music outside of his place of employment?

My experience has shown me that the coders who are not involved in OSS at all are just stuck in the languages, tools and technologies they learned years ago. There is no desire to learn anything new, in any area, whether that is picking up a new version control system, or a new language, or a new build tool, or a new web browser, or a new UNIX shell, or a new window manager, or a new editor. They just want to come into work, bang out code to spec, then go home.

In the OSS world, most people are interested in cutting-edge stuff, regularly trying to push the envelope and find things that make process X flow better, or task Y easier, or to try out the next cool thing that is generating buzz in the blogosphere.

In my opinion, getting involved in OSS makes you a better programmer.

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

I try and work out four days a week. Healthy body == Healthy mind

link|flag
vote up 3 vote down

Refactor til DRY, constantly, in different languages.

link|flag
vote up 2 vote down

Tutorials. ... on any and all languages I can come up with. Granted, most of them are "hello world" kinda tutorials, but its always best when you know what else is out there other than your core.

Oh! and attend meetups, interact. Sometimes this ONE PROGRAMMER tells you this ONE tidbit that makes your code 200% faster or easier to read or ...

/mp

link|flag
vote up 2 vote down

It is not for everybody, but trying to raise two kids with any kind of authism, helps a lot:

  • communciation, you need to be very clear to say what you mean. (And they are better than the best lawyers to find the loopholes).
  • patience...
  • react to new situations every day.
  • and react predictable.
  • keep yourself together.
  • and try very hard, not to get angry.

And of course, wait patiently for the day you can teach them how to program.

And just a warning for you all, if you mix the genes of two geeks, you have bigger chance to get kids with authism or related effects. But then again, we like chalenges. (But we also like some rest...)

link|flag
show 2 more comments
vote up 2 vote down

I run at lunch. On days that I run at lunch, I'm much more productive in the afternoon. Running helps me clear my mind or figure out things that are nagging me. It also gets me away from the screen for a little bit.

link|flag
vote up 1 vote down

I play mind-exercising games that are different from what I normally do.

For example, Trivial Pursuit, Sudoku, Go, Chess, Pinochle, and many others.

Changing my patterns of thought make me think about things differently.

I also read-up on other industries, to see what processes they're using may apply to me.

link|flag
vote up 1 vote down

Ditto with project euler

However, I tend to jump out of the IDE and go crazy in Notepad.

link|flag
vote up 1 vote down

I don't jump right into coding when given a problem. I let the problem rest for a while then code.

link|flag
vote up 1 vote down

I recently discovered a blog that addresses this problematic. It's not updated anymore but it's still a valuable ressource : http://codekata.pragprog.com/

link|flag
vote up 1 vote down

I do problems out of books. Programming Pearls, CLRS, and tAoCP all have exercises at the end of each chapter. Find a good textbook in the subject you're interested in and do the problem sets.

link|flag
vote up 1 vote down

I like to review my old projects and rewrite them a lot of times in different ways and different languages. It always helps me to write better new projects.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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