vote up 35 vote down star
51

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

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

Zen. Try to solve the problem, not the program.

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

Refactor til DRY, constantly, in different languages.

link|flag
vote up 0 vote down

Read (in order of importance):

The Pragmatic Programmer - This book was a total revelation for me when I read it a few years back. The practices contained therein are not about any language or tool in particular but instead are about the process of becoming a better programmer and being more effective both in personal projects and as part of a team.

Pragmatic Thinking and Learning: Refactor your Wetware - This book is unique in that it's not so much about being a more effective programmer per se but about becoming a more effective learner!

Code Complete - This is the only one on the list that I have to say I recommend with 'a grain of salt' - I agree with most of what Steve McConnell has to say but the style and some of the content are not exactly to my liking. Still, there are nuggets of real wisdom here that aren't to be missed.

link|flag
vote up 0 vote down

here is a good article on the subject http://steve.yegge.googlepages.com/practicing-programming

link|flag
vote up 0 vote down

Any time you're tempted to copy and paste code from somewhere else, hit your head hard against a spike until the temptation has gone away.

Then work out how to change stuff so that the same code is only written once.

link|flag
vote up 0 vote down
  • chose a number of the best programmers' blogs and add them to your RSS reader. this will keep you always uptodate and you will read about their best ideas and challenges they face every day and learn from that.

  • read books about any cutting-edge technologies in your vacations.

  • run for 30 minutes every morning to refresh your body.

  • be part of an active online/offline programming community.

  • discuss programming topics with others.

link|flag
vote up 0 vote down

In short, I make myself a better programmer by programming. :)

Exposure to programming just through work isn't enough. I start up pet projects that touch technologies I don't generally get exposure to. I go through exercises in programming and algorithm books. As others have mentioned, I work on the problems at Project Euler. More importantly, I discuss the process with other engineers that I look up to and learn ways to approach and solve problems more effectively.

link|flag
vote up 0 vote down

There is not one good answer. I am sure that there are dozens upon dozens, because people respond differently to different things. Here are some of the things that I do or have done in the past:

  • Interact with your peers. Whether it is here, a newsgroup, or through user groups. A good combination of online and face to face interaction is great. When other people are asking questions and participating in a conversation, the flow is lead by more than one person - possibly taking a path that you did not expect.

  • Share your own knowledge. By sharing your knowledge with others, they often will ask questions that will make you rethink your approach or point out something that you had not previously considered.

  • Stay current. Pay attention to new tools and products within your area of expertise. Research upcoming products and see how they can be applied to what you are currently doing. Participate in betas and CTPs if you have the time to do so.

  • Understand architecture. Coding is only one aspect of being a good developer. Understand some of the common architectural methods in various types of application development. Often you will gain an understanding to why something is done. They "why", in my opinion, is just as - of not more - important than the "how".

  • Try to know your platform better. I have been enjoying books on subjects like architecture, performance, and scalability. It is incredible how many ways there are to do one thing, and there is a very good chance that they all do not work equally as well.

  • Apply what you learn. Ask for more challenging assignments or things that you normally would not be involved in. Try to do proof of concept work and present it for the basis for a legitimate project to expand upon.

  • Podcasts. There are so many to choose from. I can't keep up with the ones that I am subscribed to any more - but don't mind listening to them while working in the yard or in the car.

  • Books. Yes, they still make them. I try to pick up a book every six weeks or so. It helps if you can expense them. If not, try to get two to four a year.

link|flag
vote up 0 vote down

The best exercise is always to do the task. Solve real programming problems, not toy problems. Think of software you'd like to write, and the thorny problems will emerge, and you will have to learn to solve them.

This happened to me recently - I was programming what seemed on the surface to be a very simple multiplayer word game, and now I understand concurrency issues much more deeply than I did before.

Explaining things to others also helps. Making your knowledge intelligible to someone else has the beneficial side effect of clarifying it in your own head. In the work place, this is often referred to as the "Cardboard Programmer Effect" - you have a problem, you start discussing it with someone else, and in the process of structuring your thoughts for the purpose of explanation you solve the problem without any need for actual feedback from the other person.

link|flag
vote up 0 vote down

I have found that the following have helped me in the past:

  • Reading programming books, such as Code Complete, Framework Design Guidelines (if you're into .NET) or Programming Pearls. The best books are those that make you think and encourage you to find your own solutions to problems. Programming Pearls may be old, but it's still a classic in this respect. The same goes for Cormen's algorithm work or Knuth's multi-volume Art of Computer Programming.

  • Buddy programming. Take turns in 'the driving seat' and develop a feature in collaboration with others. Not only is this occasionally a lot of fun, but you get to experience different programming styles and can mentor others if you have more expertise in the subject matter.

  • Code reviews. This can include going over others' code in a work environment, or reviewing your own work some time after completing it. Often you can learn from your own or others' mistakes in addition to improving past work that you thought was done and dusted.

  • Take a break. If you can't see the wood for the trees sometimes, then I've found that a break or a change can give me fresh insight into the problem when I return to it.

I hope this helps. Best of luck.

link|flag
vote up 0 vote down

Pushups

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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