vote up 105 vote down star
76

I go through phases where I spend far too much time stressing out over the best way to program something instead of just programming the damn thing - a trait I don't think is uncommon among programmers. So, does anyone have techniques for psyching oneself out so one can relax and let oneself code something which, while not 100% perfect code, is good enough?

I know the reasons why (believe me!)... I'd like to know ways of overcoming this mental block.

flag
1  
+1 You are never alone. Many programmers suffer from analysis paralysis and try to build the perfect solution the first time. CHeck out the 37signals.com book, they have some strategies that might be fun for you to try out. – Jas Panesar Feb 13 at 19:10
1  
+1 I suffer from the exact same thing. Happens to me every time I start a new task. Sometimes I succeed in building something right...other times I struggle and have to slip back to old habits in order to get the job done on time – mezoid Feb 14 at 0:40
2  
+1 It's the #1 point on my "suck less" action list. – boris callens Apr 20 at 8:54

64 Answers

1 2 3 next
vote up 59 vote down

Tell yourself you are going to do some exploring in code and get hacking. Worrying that you're designing everything perfectly is stopping you from finding the solution. Don't even worry if you're going to code something to throw away the first time.

link|flag
6  
and on the plus side ... once it works, you can then refactor. You can't refactor nothing :-) – WestDiscGolf Feb 13 at 10:55
1  
This is like what when writers do a stream of thought to get there idea's flowing. – David Basarab Feb 14 at 17:03
show 2 more comments
vote up 42 vote down

I know the feeling. I will put off a project because its hard or its intimidating -- and goofing off is just so much easier :)

So how do I get into a project? I cut out all distractions. Email, IM, turn off the phone and if Im developing on localhost, I unplug the internet. I even put up a big Do Not Disturb sign and put on my noise canceling headphones. It's amazing what I can get done then.

In addition, I'll just talk to my co-workers and friends. I'll let them know that I'm working all day on a project. After doing that, I get the feeling that they are watching me and holding me accountable. This can also keep me motivated.

link|flag
show 3 more comments
vote up 37 vote down
  1. Modularize the code so that you can build in a sloppy amateur feature right now
  2. Swap in a robust, professional feature-packed version of the feature immediately afterwards*
  3. Profit!

*You will not bother with step 2

link|flag
2  
Lol. I really liked this. Wish I could vote it up by +2 :) – fluffels Feb 13 at 9:51
2  
I gave it a vote, i wasnt going to, so its like you voted twice... – DFectuoso Feb 14 at 4:53
show 1 more comment
vote up 26 vote down

Start on the easy parts to get the ball rolling. As you finish pieces, you can feel the momentum building up.

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

Take a step back!

I don't even know how many times I was just not in the mood to do a job that was too dull or too boring, too complicated, or too something for me to want to do it.

Mainly, what generates my mental blocks are related to database work, I generally dislike working with databases, SQL or anything in that general direction, so every time I have to do some project that relies on databases, I go on a tangent, start finding cool new ways of not having to really touch the database.

I did this quite recently with a project where I am the one responsible for creating Business Intelligence Cubes for our call center performance report.

The way out is to take a step back, do a different project if you have to, something you like, this will give you some energies/enthusiasm to spend on the assignments you care less about.

So my advise mainly consists of taking your head out of the problem at hand, to have a different approach:

  • Take a step back, stop doing the horrible thing you don't want to do for a while

  • Talk to someone about how much you dislike/don't want to do it, hearing yourself whine will put you off your own lack of willpower and kick you into action

  • Finish the other project (there is always one) that you didn't finish before and its just lying there making mental clutter

  • READ, reading about the problem, (not just googling for a solution) but really doing some proper reading, again, not just filtering and searching for the direct solution, but reading:

In my case, I read books by people who like databases and SQL, from beginning to end, sometime in the middle I will feel like I don't hate the damn thngs so much any more, and better yet, the problem as I was seeing it before, is actually something covered in 101 basics xyz, pet talk near the Introduction of those books.

We all feel your pain :^)

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

When faced with this kind of block, I try to break the required work down into "micro-requirements". Then I look at each of those "micro-requirements" one at a time, and try to implement it without thinking about the rest of the requirements. After a while, I start to realize that I have a good portion of the work done, and the rest doesn't seem too intimidating. This technique works well with TDD, too.

link|flag
vote up 9 vote down

Overdesigning is a common mistake perfectionists run into. Realize that you'll have to iterate, and design loosely and modularly.

link|flag
vote up 9 vote down
  1. MSN - Log off
  2. Headphones - On
  3. Play: Astral Projection or Infected Mushroom
  4. I'm in the zone. No worries at all.

Thank you, Astral Projection and Infected Mushroom, you have no idea have much you have helped throughout the years.

link|flag
vote up 7 vote down

Visit the Loo :) !!!

I spend 5 minutes of quiet-time on the potty during which I prepare myself mentally.

I try to calm down and decide for myself that when I get out I'm going to go straight to my comp and jump into that code.

If you don't enjoy those soothing 'bathroom sounds' (or you don't need to poop), any quiet place would probably work just as well.

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

Happens to me all the time - it's very common, so don't worry that it's something bad in you.

The most efficient way of getting out of such slumps for me is a bit of self-trickery. I convince myself to start coding "just for 15 minutes". So I open the editor and start writing code. After 15 minutes, chances are (99%) that I'm already into it so I keep going. This actually works very well most of the time.

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

Prototype. That's how I do it.

link|flag
vote up 4 vote down

I do the same thing, all the time. The problem for me is that usually there are so many good ways to do X that the design options are overwhelming. If that's the case for you, I would recommend going ahead and jumping into it.

You're never going to get it right the first time, that's why the waterfall method went the way of the dodo. Much more important is trying to stay flexible, so when (not if) you find you want to make changes, you can. This sets your code up to be maintainable, as well.

It will suck the first time. It will. Just get in there, and plan for changes.

link|flag
vote up 4 vote down

Its called "Analysis Paralysis" and its not limited to programming. I have it very bad. I have just started implementing my strategy to deal with it which is to write down a "To Do" list and start with the items that are easiest. Ive been doing this for a few days and it is working. I have actually made progress and do not in any way feel that i am missing out on some grand ideas. Youll be thinking of "best ways" while you are doing the work and much of it could not have been anticipated by simply sitting back staring at screen and speculating.

link|flag
vote up 4 vote down

You should to understand the main point, Its almost impossible to make something perfect, so take it as a fact, this is helping to relax, even it untruth :) .
Take some time before starting, to relax, don't code immediately. Only when you feel that "new task panic" is off, you can start to design and coding. Its take less then half of hour, but really help to the program future.(something like short walk, or relax music)
Never do big tasks, split him to the small tasks as much as possible.

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

What's usually helping me is to have good conversation with some coworker/friend. It has to be in person and away from computers. The thing is, it relaxes me and rarely go on for more than an hour (a lunch break) and sometimes you could even clear out some task challenges during the conversation. Too bad I'm working from home now and can't use that technique myself.

The other way that sometimes helping me is to have coffee/coca cola drink and some aggressive music in my headphones. But that's not as good.

Short walk outside also seems to be helpful. But it won't work if you're working in the city center or if the weather is awful.

The bottom line I think is - you have to relax somehow and cut off all the annoyances. But it's usually what's hard to do in the first place and there's always a danger of over relaxing :)

link|flag
vote up 3 vote down

I learned this trick from school

  1. Write it fast (understand the problem & have something working and hand in)
  2. Rewrite it better
  3. Rewrite it best (by this time, you'll understand the problem and solution)

Try to get through three iterations of any significant piece of code for best results. Deadlines get in the way of this quite a bit, so beware.

link|flag
vote up 3 vote down

Urgh. I am a terrible procrastinator. Here are my tips:

  • Make sure I've had just enough coffee (too much and i'll end up browsing the web with 50 tabs open)

  • Just do it for 10 minutes. Find some small task that you are confident you know how to approach and make yourself sit there for a few minutes to bust out a couple of classes. Someone else has already said it, but I find that after this period I usually have enough momentum to keep going.

  • If you are dealing with Analysis Paralysis, I have found it helps to not worry about doing it 'correctly' and just start hacking. As you continue to hack the 'correct' way will become clearer to you as you get a better grip on the problem at hand. Of course the more you do practice this, the more you'll find that your hacking instincts are closer to what the 'correct' solution is.

  • Refactor, refactor, refactor. This is related to the last point. Dont leave refactoring to the end. Do it whilst your coding. All the time.

link|flag
vote up 2 vote down

When I am in a situation like this often I have a number of tasks to do/program I will do the easiest ones first, this allows me to be productive while still thinking about the design of the more complicated project/task. Additionally I always keep paper around to write down ideas as I get them.

Obviously this approach doesn't work for every situation.

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

Stop worrying about what others will think about your design/coding decisions.

If you have reasonable programming experience you are not going to make many major design errors. But even if you do, performing the work in iterations means you can pick these errors up very early, and have a chance to refactor.

The biggest cause of stress over how to "best" build something is really just peer pressure. You are trying to second guess what another programmer will say about your code/design.

While this "different viewpoint" is useful to iron out obvious issues, perform this process just once on each new part of your design/code. Make any obvious changes, but then forget about it and get going on the implementation.

link|flag
vote up 2 vote down

I'm going to suggest something contrary to the general opinion here...

I don't see a problem with trying to get it right. Not perfect, but on fairly hard problem, spend a few damn hours on it so that the next 20 guys to read your code don't have to spend an hour staring it trying to figure out what the hell you hacked together.

If you are really really stuck and you don't feel your design is moving forward, you start with what you can do. Get it coded--even if it's a little sloppy, but just be prepared to delete it all and start over if you get to a dead-end.

At first it will seem a little painful, but eventually you'll notice patterns that work and some that don't and you'll become quicker at doing a much better coding job.

I guess I'm saying that at one point I just decided I'm never going to do it "Fast" when I can see that there is a "Right" way--and I've never regretted it.

Also, the "Right" way, more often than not, turns out to actually BE the "Fast" way.

link|flag
vote up 2 vote down

Do not fool yourself that there's a way to stop perfectionism. I say embrace perfectionism, and I'll explain why I think perfectionism is a good thing.

It has been reported that 80% or more of software projects fail. There are of course a myriad of reasons for this including but not limited to failure to understand the scope of the project's requirements, lack of skill to produce high-quality software, lack of budget, change of focus by the client (e.g. your boss), and lack of sufficient research into the problem domain as a side effect of the omnipresent need to get the project to the market.

In my experience, the more one analyzes any given project's problem domain the better suited one will be to reason about it in its future.

Obsessing over the perfect solution to a project scales well with project complexity. One's understanding of the problem domain will be higher than those who simply start hacking away on day one. Thus, one will able to quickly consider the applicability and scope of new features, the possible reasons for reported defects, and other issues that might arise in the project's lifetime.

The majority of a project's life is spent in maintenance. "Getting it right" from the start could make maintenance a breeze.

There's an implicit tradeoff here between time-to-market/completion and "getting it right." This tradeoff can be at times black and white (don't choose assembler for your next desktop GUI project), and in other scenarios gray (build vs. buy). Experience in doing things the wrong way will also help you embody the lessons of effectively handling this tradeoff for each project you work on.

link|flag
vote up 2 vote down

48 minutes

link|flag
vote up 1 vote down

I'll take unforgiven3's Prototype suggestion a little deeper and say that you should code an outline of the highest level containers (or components) of execution logic, so that you can visualize the main pieces. Then you will find yourself naturally refactoring as you go, deciding certain things belong in a class library, etc.

Start by thinking monolithically and then start expanding the number of components in the design as you reach a roadblock, like the fact that you need an additional thread or that you need to organize code centrally.

link|flag
vote up 1 vote down

When I find that I need to do something difficult or I'm not happy with my planned solution for the problem I will divide and conquer. If there is stuff that I can trim away that I know I will use no matter what my ultimate solution ends up being, I will start working on that. While I'm working on that stuff I will try to break down the difficult part and work on some of that if I can. Again I will try to work on things that I know I can end up using.

When I go to sleep at night I will think about the things that I'm having a difficult time with, because I come up with some of my best ideas after sleeping on it.

If it gets close to when I actually need to work on something that I've been putting off and I still don't have a solution I'm happy with, I will talk to others about my ideas and get their feedback.

Almost every time that this has happened to me I have ended up with a simpler and better solution to the problem by waiting then I would have if I had charged in and tried to force a solution out of myself.

Sometimes when under a tight deadline you have to implement the poor solution and put in a better one at a later time.

link|flag
vote up 1 vote down

It all really depend on the size and importance of the project you are working on. If it is something that is going to be quite important and at least moderately complicated, then proper planning and design is required. Just worrying about is not good enough! On the other hand, if it's something that you are coding for fun and relatively short, what is the harm in hacking at it right away?

Maybe you can start asking yourself how you developed this fear? Where does this perfectionist attitude come from? Are you like this just for programming or rest of the things you do too? If it's everything, I suggest looking at tackling perfectionism.

Perhaps you are afraid of having to change your code later on? One of the traits of a great programmer is that he/she is brave enough to code for the present and worry about changing the code later on if requirement changes/something else doesn't fit the model. Of course, the smart programmers will also learn from his and others mistakes; so, the more you code and make mistakes, the better understanding you will have the less mistakes you will like make in the future. The best way to learn from others is to read programming construction books and read/post on forums such as this one!

link|flag
vote up 1 vote down

divide the project into things you know how to do and things you don't know how to do; for each, determine the next action to be done to advance the project, e.g. prototype a piece of it, read something, ask a question on SO, etc., then just pick whatever next-action you feel like doing (or pick one at random) and do it, then pick the next action for that piece and put it back on the list. Repeat until the project is done.

if your next-actions are small enough, you can nibble away at the edges while the details get filled in, and soon you'll discover that you've finished; this also makes it easier to do 'a little bit' when you have a spare hour without getting overwhelmed with everything you're not doing

and keep a development log for the project of what issues you encounter and decisions you've made, so you don't repeat yourself and can jump back into context faster

[yes, I'm a fan of GTD]

link|flag
vote up 1 vote down

Start with the fun bit! There's always a fun bit somewhere. Once you're up and running and in the zone, that's half the battle won.

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

My mantra -- and I know some people will disagree -- is "code is flexible". There is no decision that you make that cannot be reverted at some later point.

link|flag
vote up 1 vote down

Write a prototype and/or test cases first, then you'll suddenly find yourself filling in the gaps

link|flag
vote up 1 vote down

For me, it depends on the project. I try to start from small, independent pieces of software and build up from there, while ignoring the big picture at first. I'm not saying that it's the best thing to do, but it makes easier at the beginning.After all, there is a Chinese proverb saying: " A journey of a thousand miles starts with a single step".

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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