I am interested in how much of your daily work time do you spend on implementing new features compared to fixing bugs.
|
|
|
|
|
|
|
I don't code any new features as long as there are some unfixed bugs in my software. The only reason I can think of to let a bug unfixed in my software is that it's definitely to costly to fix. In this case, we may choose to change this from 'bug' to 'known limitation' or 'known bug', and we fix the feedback we give to the user accordingly, so that the user knows exactly what's going on and why it's not fixed (see my edit below) So typically, I spend all of my time bug fixing as long as the QA is complaining about something, and all of my time coding when it's not ! :) I do that because :
Joel Spolsky has written an interesting post on that question in his 12 steps to better code. Edit to answer comments : If I'm experiencing random crashes, that's definitely a bug, not a "known limitation". Once I know exactly what is going on, and only then, I can decide whether I can fix it or not. I was rather thinking of the following situations :
|
||||||||||
|
|
|
I work for a group inside my company that is suppose to both create "featurettes" and respond to customer issues. I tend to spend more time on high priority customer issues (read: bugs). So I would say my time is nearly 100% spent on fixing bugs. That said, lets read between the lines a bit. It seems that this question is a way of saying "ugg, I spend so much time on bugfixing...wish I could do more feature development". If that is the case, I think you need to look inward a bit. As I said, I spend nearly all my time on fixing bugs for customer issues, but I have also written a ton of tools to help with that process. I have everything from specialized log analyzers to generic visualstudio solution file error checkers. Not to mention some of those sweet wndbg scripts I have written for esoteric breakpoints! It is by doing stuff like that where I fulfill that desire to work on "something new". And in a way, it is much more rewarding than implementing some new small cog in a huge enterprise application. |
||
|
|
|
|
There's a broad spectrum of priorities I have in my head when I'm triaging my work:
As you can imagine, #3 category work doesn't get worked on all that often, which is a bit frustrating from an engineering perspective. But, our customers love us since they get an engineer working on their issues almost immediately after they call our support line and generally have a resolution within 24 hours, regardless of their size or importance. |
||
|
|
|
Many projects have a development phase ("code thaw") where active adding of new features occurs concurrently with bug fixes, and a "code freeze" stage where feature set is frozen and 100% of the work goes towards bringing the critical bugs count to 0 (or fixing as many bugs until a fixed deadline as possible), so the answer would depend on the stage your project is in. When I "do bugs," I also make my best effort to claim at least one feature to work on at the same time, or (when encountering a particularly buggy block of code) request a mandate to refactor the entire block. Thus I get to do some new development (and, face it, most of us prefer to write new stuff to fixing the old) while reducing the bug count. |
|||
|
|
|
It depends on the bug. Is it a minor cosmetic issue such as mislaigned label or a huge knock out bug that corrupts data? Even if it is minor or cosmetic, is it causing user headaches, like a pop-up opening up in the wrong place? Is the data corruption bug only in Firefox 2 with a full moon (and your corporate intranet is IE 6)? Good question though... |
||
|
|
|
|
Since I don't get paid to maintain any project, most of the time i'm working on new projects, hence adding new features all the time. However, each feature needs to be tested and debugged thoroughly, so you can say that 30-40% of the time spent implementing a feature will go into debugging it. |
||
|
|
|
|
It all depends on kind of project I am working upon currently. If the project is new then we do have a phase called bug fixing after the testing phase. Most of the bugs get fixed there. (!) If the project is maintainance project then fixing bugs is a daily routine. |
||
|
|
|
|
It depends on the project, if there is a show stopper bug I focus on it but sometimes when I'm not motivated enough I just add one new cool feature so I can at least work on it instead of not doing anything. This is for personal projects or before pre-release / research products |
||
|
|
