vote up 115 vote down star
81

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 '09 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 '09 at 0:40
2  
+1 It's the #1 point on my "suck less" action list. – boris callens Apr 20 '09 at 8:54

64 Answers

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
vote up 1 vote down

I first google in order to avoid "Reinventing the wheel" and reducing the time. Then I code expecting the worst inputs.

link|flag
vote up 1 vote down

I find that giving a problem some good thought, then getting some code written help clear the head. The code doesn't have to be perfect right away (if ever), and further perfection tends to reveal itself over time. It's code. You can always make it better.

link|flag
vote up 1 vote down

Promise yourself it's just a prototype and you'll rewrite it later.

link|flag
vote up 1 vote down

Work in a team. The others will soon kick you into shape.

link|flag
vote up 1 vote down

I often suffer from the same mental block, as do many.

What I normally do is bring up my specific programming problem at a weekly team meeting. If anyone else at my company has tackled a similar assignment, they can usually provide some insight as to what direction to try first. These meetings often get me started down the right path, but just as often the answer is "I don't know, just try something and see if it works." Either way it's helpful. If I get the "I don't know" answer, then at least I know that I really am up against a hard problem, and I won't get slammed in a code review because everyone already had a chance to weigh in.

Lately I've found that Stack Overflow is another place that's helpful to ask around to see if anyone else has had a similar problem.

link|flag
vote up 1 vote down

When i stuck on this stage, i tell myself following: Premature optimization is harmful. Finding perfect solution is a premature optimization. Make something working now, and if you are not satisfied, you can optimize it later.

link|flag
vote up 1 vote down

To get me started:

  • Sleep deprivation
  • Lots of coffee

To get me over the finish line:

  • Sleep
  • Tea
link|flag
vote up 1 vote down

the speed of your programming is related to the speed of the questions you ask yourself, so if you get stuck ask a different question, ask a better question, break a problem down into multiple questions, whatever it takes, just don't keep asking the same question over and over again.

link|flag
vote up 1 vote down

I like to use a tool like Rescue Time or oDesk Team being able to see metrics of how much time I've wasted inspires me to actually create something.

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

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

link|flag
vote up 0 vote down

Build the thing from the bottom up... Use a dynamic language that's forgiving, like Python. Try things out in the REPL in small pieces and then glue the pieces together to form a whole. That's the essence of hacking!

link|flag
vote up 0 vote down

Don't waste your time on projects where finishing them / getting stuff up and running does not benefit you in some way. If it does, the motivation to just write the damn thing will be there. Projects without such motivation are best worked on when you are really bored...

Perhaps your problem is that you are too concerned with details to realize the value of the finished project.

(by "benefit" I don't mean only financially of course)

link|flag
vote up 0 vote down

I find headphones and good music a good place to start. I have to admit I do things backwards most of the time and tend to start coding before I have a solid design. this leads to a lot of code being thrown away and rewritten, but I find if I spend to long worrying about the design like you say nothing gets done. I suposed its a case of finding a happy medium

link|flag
vote up 0 vote down

Track your project like the big dogs do, with meaningful version numbers that serve as milestones for you. Your first try will never be version 1.0, it'll be version 0.1, an alpha release, and that is a-ok.

Tell yourself that jumping to version 1.0 in your first release violates the most basic development tenets. That should free up your mind to get cracking on version 0.1.

link|flag
vote up 0 vote down
  • Just do a "good enough" design, doesn't have to be perfect.

  • "Shipping is a feature too" - i.e. part of design is getting it done, consider prototyping something out and let that morph into the development if it makes sense.

  • “Premature optimization is the root of all evil.” Start with a simple design, refactor later if is worthwhile.

link|flag
vote up 0 vote down

Focus on some part of the problem, then make a list of some of items that can be done. Use TDD to implement them, then review the list items and implement more. At the very least you'll have implemented some of the project, possibly more than you realised.

Be prepared to throw at least one version away.

Relax - take walks during lunch or in the evening. Stress may be a driving force for some, others find it can drive them into panic.

link|flag
vote up 0 vote down

Not that my experience necessarily mirrors your own, but I've found almost all my code to be one of three types:

  • Making it work.
  • Using it.
  • Making it work for future development (refactor).

When I get coding block it has never been blocking all three of those types at once, so I switch gears to keep coding.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

The thing I found was the most useful is to set yourself a short time limit.

Like 1 hour, maybe 2, at most 3.

The time limit should be short enough so that if you don't start coding soon then you will not get anything done.

link|flag
vote up 0 vote down

Recognise that your code is more beautiful when it exists with imperfections, than when it is perfect with no implementation.

Read http://en.wikipedia.org/wiki/Wabi_sabi

link|flag
vote up 0 vote down

You are committing the worst sin -- premature optimization -- at a very high level. Just start with the most natural, straightforward design, at every level. Only substitute a "better" design if it's obviously better and isn't excessively complex.

link|flag
vote up 0 vote down

I suggest doing some planning, such as making lists, flowcharts, and such. If plan in extreme enough detail, either one of the things listed below could happen:

  1. You convince yourself that the task isn't as hard as you thought.

  2. You find that the planning has made the task easier.

  3. You have found that you put so much work into planning that it would be rather silly to not just do the whole darn thing now.

  4. You find that you've wasted too much time planning.

Hopefully, you will feel something along the lines of one of the first three items in the list, and the planning will have helped you.

link|flag
vote up 0 vote down

Just write it. Write it any old how at first, then after every 5-10 line refactor it into patterns (using resharper if you are .net).

link|flag

Your Answer

Get an OpenID
or
never shown

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