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

I think this is my biggest downfall as a programmer, and/or a person in general. Sad, but I make myself get around it. Sounds extreme, but I wouldn't be able to do it any other way:

  • I have a friend drive me to a Starbucks. I refuse to pay for internet so that eliminates that distraction.

  • I give the barista my iPhone so it doesn't become a distraction either (they know me, so this step is up to your discretion).

  • I have said friend leave me here for hours with nothing but my computer.

Begrudgingly, I get into it and start getting work done. It's weird, cause I even enjoy programming. I do the same thing with video games. I love to game, but I just can't bring myself to do it. Maybe I am a little bit more broken than you are.

link|flag
vote up 0 vote down

Commit yourself to giving a hands-on demo by the end of the week to the management team.

link|flag
vote up 0 vote down

Usually a combination of a few things will help to put me back into a productive mode:

  • Determine what is a reasonable minimal amount of work that can be done so that there is something to test and use. Do you need to build a class, a web method, a page, a control, or something else?

  • Break down anything too big to take more than a day and possibly get second opinions about your approach to have some confidence that you are going down a good path.

  • Accept that you are human and code is rarely uber-optimized.

  • Sometimes it helps to think about seeing the end user with whatever you are building and imagine getting that, "Thank you!" once something is done.

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 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 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

To get me started:

  • Sleep deprivation
  • Lots of coffee

To get me over the finish line:

  • Sleep
  • Tea
link|flag
vote up 4 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 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

** rant * Ughh! I’m surprised to be reading so many comments about just start coding on this thread, where I thought the caliber of developer is a little higher. I’ve had to fix way too many programs where the philosophy was something working is better than nothing, so just code it. Those are the programs where each fix creates 2 new problems. THAT IS the reason for the poor level of software quality out there. It is a deserved reputation. It is the attitude that allows software jobs to be shipped overseas without the dramatic loss in quality that one would expect.** end rant *

Back to the original question:)

I solved the answer to your question by establishing a personal methodology for developing software. I follow the process every time and improve what didn’t work last time. I then back fit it into the company process. Eventually the process becomes fairly automatic. I keep a checklist of steps so it is available next time as each step feeds into the next.

I think a lot of the reason for not knowing which design approach to take is because you truly don’t understand the problem at hand. You may think you know what it is supposed to do, but you don’t really know what the system is supposed to do. Thus, you are worried about making the wrong choice because you have a lot of what ifs in the back of your mind. I solve this problem by always starting with the Use-Cases. The Use-Cases make you define the problem and identify exactly what the system is supposed to do.

I don't necessarily follow the strict definition of a Use-Case, I make the Use-Case a tool for what I need to get my job done, not what the theorists say it is supposed to be. Through practice, I have learned to write them in such a way that the architectural design just naturally falls out with little effort on my part (if I wrote the Use-Cases correctly). Then each of the modules will either design itself, or I write some more Use-Cases at the module level to understand the problem further where it’s needed.

Since I adopted this approach, I can’t remember the last time I got stuck in the analysis paralysis phase. I also like my designs a lot better because there is a natural ordering and flow-down. And most importantly, the designs are easy to understand.

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

48 minutes

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

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

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

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

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
  1. close the door to my office and cry
  2. open door back up
  3. tell myself its better to have a poopy final product then the perfect product that doesnt exist

and repeat

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

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 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

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
  • 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

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

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

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

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 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
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.