How do I decide which features to implement? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T13:21:25Z http://stackoverflow.com/feeds/question/24203 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement 6 How do I decide which features to implement? Anders Sandvig 2008-08-23T12:55:16Z 2008-08-26T13:55:40Z <p>I am considering resurrecting <a href="http://www.wincue.org/" rel="nofollow">an old hobby project of mine</a>, but since my time is limited I am having trouble deciding how to proceed. I already have an extensive backlog of bugs and feature requests that I probably should be doing, but on the other hand there is also a big need for some serious refactoring to make up for old sins.</p> <p>Initially I only created the project for fun and technical challenge, but now that there are actually other people out there using the software, I feel somewhat obligated to listen to their input and implement the changes and improvements they request.</p> <p>Previously I used an internal <code>todo.txt</code> file and a public Bugzilla database to keep track of issues and ideas, but there was never any democracy involved in selecting which features I would implement or which bugs I would fix. If someone nagged me about a bug or feature, they were more likely to get it fixed&mdash;if it was significant and not too boring&mdash;but most of the time I would just add stuff I came up with that I wanted to try out or I thought would be useful.</p> <p>I realize this is not an ideal way to run a (democratic) open source project, so I am wondering, how should I decide which features to implement and what should be on my backlog for the next release?</p> <p>Should I set up a voting system for feature requests and bug fixes (<a href="http://stackoverflow.uservoice.com/" rel="nofollow">i.e like the one Stack Overflow has</a>) or should I stick with the "dictator" model? Other suggestions?</p> <p>I don't mind offering some public service by adding features requested by users, but since this is a hobby project I think it should be something I look forward to picking up when I get home from work, not something I keep putting off because I don't want to do it. One of the reasons the project has been lying dead for so long is because I have felt there was so much (boring) work to be done before I had anything I could actually be proud of that I would rather spend my time on other things. </p> <p>This may sound a bit selfish, but I know similar issues are common to many one-man software projects, so I would like some feedback on how do best handle it.</p> http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement/24210#24210 6 Answer by The.Anti.9 for How do I decide which features to implement? The.Anti.9 2008-08-23T13:06:49Z 2008-08-23T13:06:49Z <p>Fix all MAJOR bugs first. After that then work on the fun/interesting features that have been requested until you run out of fun/interesting ones. Then fix more bugs. Judge what you think would be more useful to the users. Also a voting system would be a pretty good idea. Just have a big list of features and have people upvote or downvote the ones they like or dislike respectively.</p> <p>If you come across a feature that you are not particularly interested in, spice it up a bit yourself. Add your own flavor to it.</p> <p>And when your bored of all of that, refactor!</p> http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement/24213#24213 7 Answer by cschol for How do I decide which features to implement? cschol 2008-08-23T13:08:52Z 2008-08-23T13:08:52Z <p>First, get the software up and running to a point where it is usable and YOU are happy with the code (including refactoring). Until then, do not take any requests for additional features from others users (other than bugfix requests). </p> <p>If you start the "democratic process" too early you will never get to a point where anything really works. Another important issue: DO NOT try to make everybody happy! It is impossible! </p> <p>You as the developer have to be the final filter for any kind of requests for improvement. If it doesnt make somewhat sense to you, don't do it. Separate bugs and feature improvements strictly. Bugfixes come first, feature improvements next. </p> <p>Personally, I think putting feature requests up for voting is a good idea. But I would make sure to have filtered through the requests in terms of "does it make sense?" and "do i really want to do this?" before putting them up for vote.</p> http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement/24266#24266 1 Answer by Kristopher Johnson for How do I decide which features to implement? Kristopher Johnson 2008-08-23T14:36:36Z 2008-08-23T14:36:36Z <p>Don't worry too much about what other people want. This is your project and you are doing it for free. Your goal should be to make yourself happy. </p> <p>If I were you, I'd identify whatever it is that is causing the most pain, and fix that first. Then just keep doing that. </p> <p>Voting might be an interesting way to determine what your users most want, but you should be a dictator. Design by commitee never works </p> http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement/25718#25718 0 Answer by Anders Sandvig for How do I decide which features to implement? Anders Sandvig 2008-08-25T07:03:35Z 2008-08-25T07:03:35Z <blockquote> Fix all MAJOR bugs first. After that then work on the fun/interesting features that have been requested until you run out of fun/interesting ones.</blockquote> <p>I agree, in principle, but one of the challenges here is that most of the bugs and issues I am not happy with would likely disappear if I rewrote some major parts of the application. Naturally, this would probably introduce new, possibly different, bugs, but at least I would hopefully have more fun doing it than struggling with the old code. The downside to this approach is naturally that it will take much longer time until I have something suitable for release to the public.</p> http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement/25745#25745 1 Answer by Mark Harrison for How do I decide which features to implement? Mark Harrison 2008-08-25T07:49:04Z 2008-08-25T07:49:04Z <p>Prioritize like this:</p> <pre><code>seriousness, effort </code></pre> <p>So you might have a less serious bug you can fix in an afternoon, and you might do that instead of fixing a more serious bug that takes a month and takes you over a release cycle.</p> http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement/28097#28097 1 Answer by Jason Baker for How do I decide which features to implement? Jason Baker 2008-08-26T13:55:40Z 2008-08-26T13:55:40Z <p>To add to what schroeder said, I would also like to point out that you should take feature requests that are backed by code a lot more easily than I would any other type of request. If you turn them away, you could risk losing a future developer.</p> <p>EDIT: See the following book. Read it and then read it again just to make sure you got everything. I'm serious about this.</p> <p><a href="http://producingoss.com/en/index.html" rel="nofollow">Producing Open Source Software</a></p>