vote up 105 vote down star
77

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

Actually, I think it is an uncommon trait - almost all programmers I've ever met were all to ready to jump in there and start hacking away!

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

Prototype. That's how I do it.

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

First off, I think it is a good idea to take some time to analyze the problem at hand, instead of just diving in and writing code. It never hurts to build a thorough flowchart in your head before starting to code.

As far as getting psyched for it, I would pick a "piece of the puzzle" that piques your interest the most and just dive in. After that piece is complete, move to the next relative piece. Once you get the ball rolling and have an idea of what it's going to take to complete the project, in full, write down a target date and try your hardest to follow it.

Chances are (based on my experience), you will not finish early, or even on time. The point is, once that date passes, it's real easy to convince yourself that you are procrastinating way too much.

link|flag
vote up 0 vote down

Once you have a handle on what needs to be done, I think it's best to start coding knowing that you may begin refactoring almost immediately. You need to apply your knowledge to understand it. Every time you apply your knowledge and then refactor, you have learned something.

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

I find that having my clients bitching away that they want it now! And at half the hours I've quoted the project at just sucks the "is this the right way to do this?" right out of me. (Really) Time is money. get 're done! Sorry - this is all I got.

link|flag
vote up 0 vote down

If the project's getting frustrating, get away from the computer and do something else, maybe come back the next day.

When you're back, remove distractions. Close email, IM, etc

Then write down a list of TODOs of tasks to complete the project, cross them off as you go. If you discover you have 'sub-tasks', write them down too and cross them off as you go.

Crossing things off keeps you focus, and is very satisfying.

link|flag
vote up 0 vote down

Meditation works for me. It calms your mind and clearing out the clutter that is causing you anxiety. Then, you can focus on enjoying the process of writing the code, without focusing on the end result.

I recommend the book "Mental Resilience" as a good, pragmatic introduction to meditation that mostly skips over any of the metaphysical/mystical aspects of meditation that has the potential to turn people off.

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 38 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
3  
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
1  
This is fantastic! "Find the lie that you can tell yourself which you know you will believe, and use it to manipulate yourself to do what you want yourself to do." +1 – Charlie Flowers Mar 23 at 2:23
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 0 vote down

Think agile
"Make it run, make it right, make it fast, make it small" - Kent Beck

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.