vote up 36 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 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 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 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 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 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 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

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

Exercise your brain with math puzzules: ProjectEuler.net

link|flag
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 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 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 7 vote down

Write code EVERYDAY

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.