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 12 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 48 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 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 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 22 vote down

At the root, perfectionism is motivated by one thing: fear of not being good enough.

If you understand this, you can stop being driven by it so much. Throw your work out there. Expose the fruits of your code. There's no prize in this business for being perfect. Good enough is all that counts. Once you get comfortable with knowing when your work reaches "good enough", you'll know when to move on.

link|flag
1  
+1 - Interesting notion. Did you make that up or get it somewhere? If you got it some where, I'd like to know where... – Frank Jul 28 at 21:24
2  
+1 that was kind of inspirational. – slypete Jul 28 at 22:20
1  
@hasen: Yeah -- I relate to what you say about your work being good enough for your ego. I've been frustrated a lot with the difference between the standards I set for my work, vs the standards that are actually expected in the job. It took a while for me to realize, though, that for 98% of the work you do, no one cares how your code looks under the hood, or how efficiently you accomplish some task -- all the stakeholders care about is whether it works. Unfortunately, it's just not possible to do all that's asked of you, and also do things as well as possible. – bigmattyh Aug 29 at 18:32
show 4 more comments
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 15 vote down

I find deadlines are a wonderful motivator ... :-)

link|flag
1  
sometimes you dont have a deadlines , like your pet projects – Adinochestva Jul 28 at 20:06
1  
Even on personal projects, setting a deadline for specific functionality, et al, will help to keep you moving forward. – Kitsune Jul 28 at 20:09
1  
I generally like to keep things moving. Even simple deadlines like "must get this bit working before bed" are good motivators. I generally deal with perfection once I've got a major chunk of code working or I need to add a new feature and find it's not going to fit without refactoring. It's a long term goal for me. Getting something working is my primary motivation. – Chris J Jul 28 at 20:26
1  
Problem is that then you just don't go to bed. – Jimmy Jul 28 at 23:43
show 2 more comments
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 9 vote down

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

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

By being pragmatic. Ask yourself, "Have I delivered enough testable code to meet the core requirement?" If yes, move on and accept that there's always room for improvement.

In addition you could consider adding, "Would I be embarrassed to review this code with my buddies?" ;-)

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

By reading the Cult of Done Manifesto again. Also by realizing that the goal of software is to solve problems, not be the most elegant and beautiful thing ever written.

link|flag
5  
That really is a very anti-quality document. No wonder software is so bad if people really believe that. – Paul Nathan Jul 28 at 20:41
1  
I wouldn't consider it anti-quality at all. You are reading way too much into it. Use it as motivation, not as a programming bible. If you are working on software for the space shuttle or an MRI machine (or some other super duper important software ), I agree, the CDM is a very poor methodology to follow. However, for many projects, it can be a very useful reminder to stay on task and help you push through. It's equal entertainment and resource – Cody C Jul 28 at 23:23
show 5 more comments
vote up 4 vote down

In some ways I disagree with the "get something done" / "set yourself a deadline" arguments. There's a lot to be said for taking time to explore paths that you might not be able to at work.

Tinker, meander, rewrite. Take your time. Try to find patterns and abstractions. Refactor your test code again. Wait until you *are* fairly happy with your code. You can only win from this: You'll learn things that you can apply to your other work, you'll become better at judging when to to draw a line and move on and you'll probably add a few things to your "ok, let's not go there again" list.

Obviously, your approach will vary according to what you want to get out of your personal projects.

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

I have this problem as well. It's common to any creative pursuit, like writing or painting. Sometimes it's hard to know when to stop.

It's especially hard when the project is something you're working on in your own time, primarily for your own benefit.

My advice is to make some goals for your project. Create milestones or criteria that can help you decide what "Done" looks like. Once you've set some goals, you can think about how to meet them and how long the project will take. Then adjust accordingly.

link|flag
vote up 3 vote down

Things started to change for me when I started to feel really in charge of the product and the relationship with customers.

When you are really committed to provide something useful to somebody in a timely fashion, you just have to be more pragmatic about getting things out quicker.

It doesn't hurt either once you come to realize that you can never get things right the first time, mostly because customers don't really know what they want until you get them something they think they wanted but actually don't. All this time spent perfecting the invisible side of the app can often turn out to be a waste.

We make up for that by always using small modifications requests as a chance to get around and refactor nearby stuff along the way to fit our new quality standards. Bigger clean up efforts are engaged when it makes real business sense and we can justify to ourselves investing that much time on it.

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

have a strict schedule for your projects , if you just got a spare time refactor your code

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

By wanting to see the code actually do something. Or, if it does something, something more. Or to see it pass all the tests I write. Personally, I find this more alluring than perfect code.

link|flag
vote up 2 vote down

TDD. Write the tests that show that the code meets the requirements. When the tests pass, you're done.

link|flag
2  
An important part of TDD is refactoring (Make the test fail, then make the test pass in the simplest way, then refactor). – Halvard Jul 28 at 21:08
vote up 2 vote down

I tend to take the view of asking this question, "If I spend x more hours on this, am I going to get something for it?" This does require that you value your time and have a number of other things going on that you'd rather be doing so it is a quesiton of competing priorities. The time will pass regardless of how you spend it, so why not make it count if you know that there is a very small chance of finding something to refactor in a good way.

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