vote up 16 vote down star
9

In personal projects I often find myself tinkering over code and keep rewriting it because there's always something that can be improved. I'm looking for ways to tell myself 'ok the code is not perfect but I need to move forward now'. How do you motivate yourself to go forward and take the imperfect code as is?


merged with "How to stop being a Perfectionist Programmer":

I'm a code perfectionist in the best sense of the word. I'm the total opposite of the 'cowboy coder' who doesn't care how things work, look like. I literally brood over sometimes trivial problems for hours, attempting to come up with the perfect solution. When I find it, I sometimes stare at it with a fuzzy warm feeling.

I justify the outrageous time expense in my head by telling myself that this is a one-time expense as I will then be able to reuse the gained knowledge later on how to solve a particular problem perfectly.

I need to stop this. It's turning my projects into lengthy hunts for great solutions more often than not ignoring the fact that I still didn't ship yet.

I know there are more programmers out there with this kind of 'problem'. How did you tackle it, what do you do to not fall into this trap while programming away?

flag
9  
This question will probably get closed unless you make it Community Wiki – oxbow_lakes Aug 23 at 20:49
7  
"I literally breed over sometimes trivial problems for hours, attempting to come up with the perfect solution." -- I could say the same! – Bruno Reis Aug 23 at 20:50
8  
"I literally breed over..." LOL! The image that brings up... – T.J. Crowder Aug 23 at 20:51
5  
Without this problem, SO would have no need to exist -- everyone would just hack at things with imperfect solutions and move on... Instead, SO is full (well, a large percentage, at least) of folks looking for the next better solution. – lilbyrdie Aug 23 at 20:57
7  
Of course this is a dupe - of stackoverflow.com/questions/1196405/… among dozens – Neil Butterworth Aug 23 at 21:23
show 11 more comments

48 Answers

1 2 next
vote up 13 vote down check

Don't treat your "art" the same as you would a job.

With a job you are rewarded to achieve a task, so it is easy to just get to the end result. But with personal projects, the reward probably isn't just the end result but the process and challenge in itself. If you ask yourself why you think you are taking on this project, you'll probably find the answer is what is dictating your behavior.

If you find yourself being a perfectionist, is it because you thoroughly enjoy eek-ing out every bit of performance from your code and formatting everything exactly so? Maybe that's where your enjoyment comes from in doing this project.

But if you think your perfectionist tendencies are interfering with your enjoyment of completing (honestly, it'll never be complete right?) the project, try giving yourself "feature versions" to shoot for. Version 1 gets the feature functional. Version 2 refines it, or just a portion of it, etc., etc.. That way you can quickly get to a functional result, but can still work on refining it if you choose to.

But just remember, don't turn your art or hobby into a job!

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

Get married and have a baby.

link|flag
vote up 1 vote down

In case you are self-employed:

Remember that the extra time you put in to go from good to perfect is not paid by anyone. Calculate the hours you spent last week for that purpose and multiply by your average hourly wage. Think what nice geek toys you could have bought if you would have been productive during that time instead.

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

Work for a start-up. Then you'll program very imperfectly or be fired very quickly :) If you start the company then there is no better motivator to ship your product :)

link|flag
vote up 0 vote down

Become a different human being with a different philosophy on life. Seriously, I've never seen anyone change it any other way.

link|flag
vote up 0 vote down

I encourage you to read Getting Real http://gettingreal.37signals.com/ by 37 signals (its free for pdf online version).

Keep reading this.

I often revert to parts of it - especially when I get to the stage where Im asking "what have I achieved this week?"

link|flag
vote up 2 vote down

You need to set limits to the time you spend on a task, i think its called time boxing, where you only allow like four hours for something you need to do so you're more in a hurry and have less time to think about making it perfect.

link|flag
vote up 3 vote down

Don't rewrite every piece of code you come in touch with. Learn to love legacy code. Use lots of open source. READ! lots of open source code. BREATHE!

link|flag
vote up 2 vote down

Spend more time in thought; thinking is faster than coding. That way when you actually get down to coding, your code is more likely to be something you're satisfied with on the first try.

Often this won't catch larger things that you won't notice until you're much farther along. But those things tend to be the type that actually need to be fixed.

link|flag
vote up 2 vote down
  1. Get a life! Spend more time with your family, with your friends, do sport activities, go to cinema or to theater, read more books. You'll soon understand that there are way more interesting things in the life rather than tackling with the code.

  2. Get paid! Join a project, where you're paid not for the hours spent in the office, but for the new features that you implemented or where you get a percentage of sales. (Alas, this is quite rare, unless you're in startup/consultancy). Getting paid for "cowboy-coding" and not getting paid for perfectionism is a powerful thing :-)

link|flag
vote up 2 vote down

Start writing C solutions for Project Euler. Do not use functions or loops.

When you can do this without flinching, you've been cured.

(Hint: It corresponds to the assembly instruction jmp.)

For extra credit, use only one-letter variable names.

link|flag
3  
Many enter. Few return. None return unscathed. – Imagist Aug 24 at 7:24
show 2 more comments
vote up 2 vote down

I had a similar problem. I used to run many routines through the debugger, checking every code path, validating that they worked. I wrote solid code, but hated change requests - every change to a method required re-validating it.

Then I learned about Unit Testing, Test-Driven Development (TDD), and Extreme Programming (XP). These got me out of the debugger, and helped me fear change less (OK, I still don't embrace it!). When your tests match your specifications and all your tests pass, you're done. You can also go back in and revise or refactor your code with confidence, since your tests will reveal breaking changes.

The Open Closed Principle (part of S.O.L.I.D.) can also help you here.

Read some of the resources on unit testing/TDD, pick up a book or two, and start doing it. It will change your life (for the better!).

link|flag
vote up 6 vote down

Redefine perfection. No seriously.

I your customer isn't happy, it ain't perfect. Admittedly it probably never will be but at least you'll be focussing on what matters.

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

Code late at night so your too tired to care, just as long as it works and safe!

your (average) clients care about that much too!

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

Negotiate regular cleanup periods with your employer or customer. Prefer employers (or, if possible, customers) who appreciate "doing it right" as well as "getting it done".

Do not "write your code to throw it away tomorrow". (See eJames's and jrockway's answers). The costs of throwing it away can be huge, because other code will depend on it. If you cannot finish a clean solution, produce and release a working version, and mark it by a "TODO" comment.

During the cleanup period, satisfy your perfectionism: First prioritize your TODO list. It may have accumulated many items. Your understanding of the problems and their relevance will have become much deeper. Some TODO items may have become irrelevant because more fundamental solutions have become possible. Use the given cleanup time well, and don't despair, if you cannot solve everything now, the next cleanup period will come.

link|flag
vote up 4 vote down

This is a good question and one that I have trouble answering because I suffer from it myself!

However I'll give it a try...

Keep in mind that if you're any sort of decent programmer, then code you've written 6-12 months ago no longer has the "this is perfect code" badge of honour. It's either been superseded by newer code or techniques that you've learnt since it was first written mean that it could quite easily be rewritten better / cleaner / faster / etc.

Therefore, I think the benchmark to which you should measure your satisfaction should be in the following order:

  1. Has the change I've just made the user experience any better?

  2. Has the change I've just made my colleague's life easier?

  3. Has the change I've just made my life easier?

If you're simply trying to satisfy yourself only, then you'll end up in a spiral of self doubt and perfection seeking that will never end.


Also, I don't quite agree with sticking "todo: make this better..." in you're code, because it drives people crazy when they see this and get frustrated that perceived "bad" code has been left around. The code is probably in a good state, but didn't quite reach your level of perfection, which is of no real help to anyone new looking at the code.

link|flag
vote up 18 vote down

This is a good habit to be in. You just need to do it faster. You get faster at programming like you get better at the piano -- practice. Keep pushing yourself to write good solutions quickly, and soon you will be able to write excellent code AND get it done on time.

Advice like "treat your code like you're going to throw it away tomorrow" is not such a good idea. If you didn't have time to get it right today, you're not going to have time to throw it away tomorrow. Once the code is written and deployed, the last thing on your mind is how to improve that working code. You'll move on to the next task, and before you know it, the parts of your program won't fit together anymore, and taking things apart will result in an explosion of little pieces that you'll have to crawl around on the floor looking for. Every tiny change will take slightly longer, costing you much more time in the long run. All because you were too strained for time to add some oil to the machine once in a while.

I've worked on applications like this before, and simple things, things that should take two people an hour to implement, started to take weeks. Technical debt is bad -- don't let it ruin your project.

link|flag
3  
Yeah. I've noticed that the reason most deadlines are missed is because they are set too optimistically. "Oh, that won't take long." Well, that won't take long, but what about fixing the bugs in the current production version of your app, people taking vacation time, meetings to decide when to have meetings, ... etc. (I have also noticed that with deadlines too far out, I can become a little too relaxed. So it is definitely hard to get this right.) – jrockway Aug 24 at 2:54
show 2 more comments
vote up 2 vote down

How about make everything work as fast as possible using any means at hand, even when the code is not very 'elegant'. When everything works and has passed your tests, make sure everything is safely committed into sourcesafe or at least backed up somewhere and start then to refactor everything in a more elegant way.

Making everything work first assures you that you'll have always something to hand in when the deadline strikes, whereas you start writing prefect code from the beginning you'll never know you will finish in time.

link|flag
vote up 31 vote down

This one hits close to home. If you're like me, the idea of implementing a less-than perfect solution makes you cringe. The best way that I have found to deal with it is to add a comment reminding me to revisit the code at a later date. Something like:

// NOTE: find a better way to do this

Leaving that bookmark in place gives me peace of mind that I can always go back and find it again when I have the time to work on it. Once it is recorded somewhere, I can move on.

Here's the interesting part: most of the time, you never come back! You may swear up and down that finding the perfect solution to that problem is the very next thing you will do as soon as you have free time, but the truth is that your original solution works just fine, and there are more interesting / more pressing problems to solve.

link|flag
2  
I do almost the same, but I prefer my // NOTE: improve... because I like to eliminate all "// TODO"s before shipping, and a "Find in solution" for "// TODO" is practical. This might reflect the fact that I won't come back, as you said! – Bruno Reis Aug 23 at 21:07
1  
@Spence its better than a bug without a comment – lobsterino Aug 24 at 5:49
1  
This is completely counter productive. If the code is so bad that you should come back to it then it will be obvious without the comment, if the code is fine and you're just splitting hairs you'll forget about it. – Spencer Ruport Aug 24 at 6:25
4  
There is an unwritten rule of programming that you can get away with ANYTHING, so long as you say it is a hack in a comment. – Chris Needham Aug 27 at 14:07
show 5 more comments
vote up 49 vote down

Some tips that made me escape from the "perfect world":

  • Don't marry your code
  • Write as if you are going to throw it away (if not today, next week)
  • Iterate often
  • Align your efforts and code with the reality once in a while
  • Think of you code as a means to a specific end (a special case) not as a general solution to achieve world peace and produce sliced bread at the same time
  • Work on a side-project to keep your perfectionism ventilated
  • Appreciate the warm feeling you get when something is released (each iteration) rather than when it is "finished"
  • Realize that you'll never get the time spent back (you won't find a similar problem again that is worth the time you spend on a perfect solution)
link|flag
1  
Those are really good valid points – Breadtruck Aug 23 at 21:06
14  
I like the side project suggestion. Whenever I get the urge to write "poetry", I start a little hobby project. I rarely finish them, but that's beside the point :) – Thorarin Aug 23 at 21:26
1  
+1 for throw away code. – amaterasu Aug 23 at 22:48
9  
My only quibble is with "Write as if you are going to throw it away". This is a problem. Cause that goes to the other extreme of just writing crap code to suffice for now. And then you just end up with a pile of junk that desperately needs refactoring... but that refactoring would take more time and a lot of thinking. The best place is somewhere in between. Lots of thinking at the beginning, but not so much you get stuck in loops pondering 6 of 1 half a dozen of another solutions. – Alcon Aug 24 at 3:14
show 6 more comments
vote up 3 vote down

I have two suggestions:

  1. Practice. Find programming assignments somewhere (For instance, try codekata.pragprog.com/ Link seems to be down right now though) and complete them in the shortest time possible.

  2. Strike a deal with yourself that you put your perfectionism aside to make something work first, and then revisit your code and refactor it. For extra credit, try to stop refactoring when you can't justify making the code even more expressive and clean.

link|flag
vote up 6 vote down

Write the best code you can in the time that you have to do it, and as soon as you have some free time to examine your old code, improve it with the lessons you have learned from the experiences you've come across between when you wrote the code and when you revisit it.

Every programmer wishes they had enough time to get it right the first time, but the fact is, you will rarely ever get it right the first time.

Programming is not an exact science, there is never one perfect answer (for the most part). The more you are exposed to, the more you'll learn and improve. Take the experience you learn and apply it

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

The reason behind the "perfectionism" is the fear of losing control. It is a symptom of a design issue, a good design should provide abstraction which is essential to have ability to isolate not-so-well code.

edit: Besides, "the perfect code" is often is also less maintainable, lack of evolution process makes it more fragile.

link|flag
vote up 9 vote down

If you can regard the time spent on a task as a factor affecting its perfection, then your perfectionist side will try to solve the issue faster in order to approach the perfect.

link|flag
1  
I like this answer. It has a certain depth to it if you think about it... – Subtwo Aug 23 at 21:20
2  
I really like this answer as well. I have to think about this one. Quite an eye opener. Thank you! – Alex Aug 23 at 21:22
show 2 more comments
vote up 2 vote down

I think every programmer feels he/she has to write perfect code. simply put, perfect code doesn't exist. I prefer to start coding, then I perfect my code through revision.

link|flag
show 5 more comments
vote up 9 vote down

Learn to tell the difference between what's important and what's not.

link|flag
vote up 15 vote down

I'd start by time boxing your tasks. Say for example that you are doing a website and you want to do a contact details page. Set yourself say 2 hours to complete this task. After the 2 hours stop and move on to the next task even if it isn't perfect. I use the pomodoro technique for this and it helps me.

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

How about asking your manager to fire you if you don't deliver your next project on time?

link|flag
1  
That is seriously funny! – Breadtruck Aug 23 at 20:51
2  
+1 for asking your manager to keep you accountable for the deadlines you commit to! :-) – phsr Aug 23 at 20:53
7  
You know, oxbow, if you're going to point out (correctly) that this should be a community wiki, you should make your answer a community wiki. That way, you also won't lose points from the humorless. – Chris Lutz Aug 23 at 20:55
1  
@Chris - I should do, I've hit my daily point limit anyway! – oxbow_lakes Aug 23 at 21:04
show 5 more comments
vote up 2 vote down

I've had the same tendency for my personal projects. I have found a trick which works well for me: I have two TODO lists for a project. The first one contains the features to implement, bugs to fix, refactorings to do (the "necessary" ones). The second one contains the tinkerings, rewrites, refactorings for refactoring's sake and so on.

Whenever I am working and I am feeling that I am drifting from "real" work to perfectionist work, I stop, think, and add an item to the second TODO list. This usually is enough to go back to "real" work. And whenever I am in the mood, I do one or two items from the second TODO list.

link|flag
vote up 0 vote down

Sell it. You'll find that once you've been paid for your efforts you're less inspired to keep dressing it up... that, and you'll then be in support mode.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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