active questions tagged development-process - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:19:08Zhttp://stackoverflow.com/feeds/tag/development-processhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/234609/how-do-you-bring-a-failing-project-back-on-track15How do you bring a failing project back on track?Vyas Bharghava2008-10-24T17:51:03Z2009-10-06T23:03:28Z
<p>You must have heard the archetypical story of a failing/failed project:</p>
<ol>
<li>A team of inexperienced programmers work 24x7</li>
<li>Bugs are fixed only to introduce new bugs</li>
<li>Customer is screaming that he could not even do the basic stuff (Saving/Querying) etc.</li>
<li>Programmers used to having the spec handed down struggle to improvise</li>
<li>No automated unit tests aggravate the situation</li>
<li>Architecture document that looked nice on paper was not followed in practice</li>
<li>Third party components used become bottlenecks not having been tested for fitness in the first place</li>
<li>Milestone after milestone missed</li>
<li>The team is not able to come up with a delivery date as nobody agrees as to the quantum of work actually needs to be done</li>
<li>No technical leadership / or a Cowboy Coder that can take on the technical issues</li>
</ol>
<p>Now, If you were to be brought in as #10 what would be your first steps?</p>
<p>Update: First of all: Thanks to you all for chipping in. Well... I'm being brought in as #10. I was the original Architect anchoring the solution when we made the proposal to the client. Then, unfortunately, I couldn't take on the delivery responsibilities as I was assigned somewhere else. :)</p>
<p>Let's say it's a webification of an existing desktop application. I'm now being brought in as #10. Running away, sadly, is not an option. I'm sure this can still be reversed by following agile best practices and just wanted to tap the community for ideas.</p>
<p>The larger question perhaps is this: If the development team does not have specs but only the (baselined) code for a running application, the original solution called for looking at the code and extracting business rules on the fly. Now, the inexperienced programmers are reluctant to look at VB 6.0 code and want documents! So how do you fight this if you were to instate Agile processes?</p>
http://stackoverflow.com/questions/1463348/what-kind-of-software-development-process-should-a-lone-developer-have15What kind of software development process should a lone developer have?Purple Tentacle2009-09-23T00:29:35Z2009-09-23T01:48:22Z
<p>I work as a lone developer in a very small company. My work is quite chaotic and I'm looking for ways to make it more organized.</p>
<p>One problem is that my projects have practically no management. Rarely anyone asks me what I'm doing, or if I have any problems. At some point there was talk about weekly status meetings, but that's some time ago. Seems that if I'd want something like that, I would have to arrange those myself.. Sometimes I'm a bit lost on what I should do next because I don't have tasks or a clear schedule defined.</p>
<p>From books and articles I have found many things that might be helpful. Like having a good coding standard (there exists only a rough style guide which is somewhat outdated in my opinion), code inspections, TDD, unit testing, bug database... But in a small company it seems there are no resources or time for anything that's not essential. The fact that I work in the embedded domain seems to make things only more complicated.</p>
<p>I feel there's also a custom of cutting corners and doing quick hacks on short notice. This leads to unfinished and unprofessional products and bugs waiting to emerge at a later date. I would imagine they are also a pain to maintain. So, I'm about to inherit a challenging code base, doing new development that requires learning a lot of new things and I guess trying to build a process for it all at the same time. It might be rewarding in the end, but as not too experienced I'm not sure if I can pull it off.</p>
<p>In a small shop like this the environment is far from optimal for programming. There's many other things needed to be done occasionally like customer support, answering the phone, signing parcels, hardware testing, assembly and whatever miscellaneous tasks might appear. So you get the idea about the resources. It's not all bad (sometimes it's enlightening to solve some customer problems) and I believe it can be improved, but it's the other things that I'm really concerned.</p>
<p>Is it possible to have a development process in a place like this?</p>
<p>Would it help to have some sort of management? What kind of?</p>
<p>Is it possible to make quality products with small resources?</p>
<p>How do I convince myself and others that the company which has worked successfully for decades needs to change? What would be essential?</p>
<p>Maybe there's someone working in a similar shop?</p>
http://stackoverflow.com/questions/1372341/scrum-technical-items-in-a-backlog-that-is-managed-by-a-non-technical-po2Scrum: Technical items in a backlog that is managed by a non technical PO?Per Arneng2009-09-03T09:14:31Z2009-09-18T01:43:51Z
<p>Should technical items such as "Upgrade sever from v1 to v2" or "Increase startup performance" or "Refactor login module to reduce code complexity" go in to the product backlog and if so how should a non technical product owner be able to prioritize them v.s other more functional backlog items?</p>
<p>Should there be a separate backlog for technical stuff? Should we have a joint PO role with two persons that could prioritize functional and technical stuff on the product backlog?</p>
http://stackoverflow.com/questions/1275287/it-works-dont-touch-it-and-continues-engineering25"it works-don't touch it" and continues engineeringidimba2009-08-13T23:44:01Z2009-09-09T17:40:39Z
<p>Sometimes I work with bad smelling code. Yes, there's bad code out there :) I'm not talking about design problem but about much more simple things like:</p>
<ul>
<li>messy indentation</li>
<li>non consistent use of empty lines</li>
<li>a big banners introducing functions, which just repeat the function/method names</li>
<li>non consistent name conversion, even in the same line</li>
<li>badly stuctured function logic (e.g. redundant checks, repetitions etc.)</li>
<li>tightly coupling of data and logic</li>
<li>and much more</li>
</ul>
<p>An example just to visualize what I'm talking about (C++)</p>
<pre><code>class MyClass
{
public:
/*******************************************************
| constructor |
********************************************************/
MyClass()
{
}
/*******************************************************
| destructor |
********************************************************/
~MyClass() {}
void Foo(char *Name, const char* Type, char* sub_type);
};
</code></pre>
<p>I personally dislike to work with such code, it just discourages me to write good code, discourages to think about more high level obstructions.</p>
<p>Mostly it drives me crazy when coworkers developers don't understand when you say to them that something is wrong with the code - they just happily continue to support the mess.</p>
<p>Unfortunately managers are not interested in "beauty" of code, don't see the impact of bad code in long term. When there's a spare window nothing is done to clean/improve code - this never scheduled as a task/project. Sometimes to my complaints I hear a well known response: <strong>"it works-don't touch it"</strong>.</p>
<p>I think this is a evil, bad practice. Not handling the problems is like a fat, that makes you clumsy, not competitive.</p>
<p>What to do? Constantly complain to deliver the problem? This will only gain you a bad name and managers won't understand what are you so not happy about. Changing code in your free time? Also not good - you can not take a risk of introducing a bug?</p>
<p>Writing good code should be an integral part of development process.</p>
<p>Do you have the same dilemma? What did you do to improve the situation?</p>
<p><strong>Update:</strong></p>
<p>The subject language is C++.</p>
<p>A new piece of code is written in an uncontrolled form, with emphasis on functionality. No code reviews or coding standards are currently affecting it (if they ever did). I want to change the situation, but just don't know how. </p>
<p><strong>Update 01</strong></p>
<p>Let's say that we want to perform only "syntax" refactoring on a big code base. For example fixing indentation, renaming variable (by using refactor tools of course - not by hand :))). Is it worth to do it and probably introduce a couple of bugs?</p>
http://stackoverflow.com/questions/1128966/eyetracking-package-for-usability-research2eyetracking package for usability research?Mark Harrison2009-07-15T01:37:47Z2009-08-05T10:45:08Z
<p>Here's an interesting writeup of using eye tracking software to generate "heat maps" that show where on the screen users spend the majority of their time.</p>
<p>Any leads as to good packages for doing this, without paying through the nose for somebody to come in and run the assessment for you?</p>
<p><a href="http://www.useit.com/eyetracking" rel="nofollow">http://www.useit.com/eyetracking</a></p>
http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be22What should the penalty/response for missing a deadline be?Arthur Ulfeldt2009-07-17T17:36:07Z2009-07-22T07:07:21Z
<p>Being relatively new to the software industry I have come across a question of deadline enforcement: </p>
<p>Back in the idyllic age of academia, the deadline was the end of the semester and the penalty was a well defined 'F' (or local equivalent). Out here in the real world we need to make code our current and future peers can work with, I face the situation where deadline comes, deadline goes, and the project is still not finished. </p>
<p>Now what? On one extreme we could fire everyone involved, on the other we could richly reward everyone involved.</p>
<ol>
<li><p>What actions have you seen applied as 'penalty' for missed deadline, and which of these eventually resulted in more-good-code? </p></li>
<li><p>What project-management responses caused the project to fail outright, </p></li>
<li><p>What responses restored working order and resulted in code that could be maintained afterward?</p></li>
<li><p>What responses resulted in more-bad-code?</p></li>
</ol>
http://stackoverflow.com/questions/1047112/does-anyone-else-get-worn-out-using-scrum-finishing-sprint-after-sprint7Does anyone else get worn out using Scrum, finishing sprint after sprint?Simucal2009-06-26T02:48:03Z2009-07-21T21:26:00Z
<p>I'm with a pretty small startup and we started using a form of a Scrum/Agile development cycle. </p>
<p>In many ways I enjoy Scrum. We have relatively short sprints (2 weeks) and I like the Burndown Chart to track the teams progress. I also like the Feature Board so I always know what I should be doing next. It feels good taking down a feature's card from the board, completing it and then putting it in the burn down pile.</p>
<p>However, we are now entering in our 18th Sprint release cycle and I'm starting to feel a little burnt out. It isn't that I don't like job or my co-workers, it is just that these sprints are... well, <em>sprints</em>. From start to finish I literally feel like I'm racing against the clock to maintain our development velocity. When we are done with the sprint we spend one day planning the next sprints feature set and estimates and then off we go again.</p>
<p>For people who work in a mature Agile/Scrum development process, is this normal? Or are we missing something? Is there normally time in a Scrum enviornment that is unassigned/untracked to get done some minor things and to clear your head?</p>
http://stackoverflow.com/questions/931664/what-is-your-opinion-about-uml5What is your opinion about UML? [closed]Bogdan Gusiev2009-05-31T08:47:48Z2009-05-31T09:40:46Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/18803/is-uml-practical">Is UML practical?</a> </p>
</blockquote>
<p>I heard many opinions about UML.
Some people says that it is useless. Some people says that it is very helpful.</p>
<p>What was your experience on using UML?
How does it effect on development process?</p>
http://stackoverflow.com/questions/892344/dev-business-teams-how-have-you-successfully-bridged-the-gap0Dev & Business Teams - How have you successfully bridged the gap?Eoin Campbell2009-05-21T10:53:40Z2009-05-22T15:36:09Z
<p>I'd hope some healthy discussion will come out of this more so than a <code>specific</code> solution so I'll Community Wiki it as it is a fairly subjective topic. Appreciate if it can be left open as a helpful resource.</p>
<p>Recently I've taken over as Dev Manager with a small Technical Team.</p>
<p>The Business/Marketting/Design Teams out number the technical team by roughly 4:1 so as you can imagine there's a lot of work involved trying to insulate the technical team from the flurry of requirements.</p>
<p>To that end, we've put some proper processes in place, using SCRUM for project development, requiring business team members to fill out proper requirements documents, use cases etc...</p>
<p>In the coming weeks after our first major release we'll be introducing the business team to proper UAT process, issue reporting & change request processes & ourselves improving our issue triage and bug fix procedures. But as you can imagine it's a pretty steep learning curve and mindset change for all involved.</p>
<p>Just looking for some general feed back from the technical community (dev's, team leads & dev managers) who've experienced similar and how they approached any particular snag points.</p>
http://stackoverflow.com/questions/865832/fast-development-or-stable-results-which-is-more-important-for-public-web-site0Fast development, or stable results, which is more important for public web site/services?Serapth2009-05-14T21:19:26Z2009-05-21T23:52:00Z
<p>This is really just me soliciting a number of opinions and as a relative newbie to this site, I hope I was correct in marking this post as a community Wiki. If I was mistaken, can someone please correct my mistake.</p>
<p>Anyways, here is the scenario. I am developing a web application and a number of services in support of that application. I am having a nasty time of deciding how to do things. What I am working on is very feature oriented and to be honest, I can add new shiny features at a pretty good rate. Shiny new features obviously can be quite effective at attracting new users to my service.</p>
<p>At the same time, for every feature I add, I increase my debugging, usability and other even more mundane tasks ( localization, graphics/UI development, documentation, etc... ).</p>
<p>It really is a tightrope walk. I want enough functionality that people will use my services and to differentiate between possible competitors. I also want to generate a great deal of WOW factor, to create more person to person buzz, so I can grow organically. At the same time, I do not want to ship a flawed project, where people would run in to bugs/glitches/flaws and then never return, or worse, create a negative buzz.</p>
<p>So, in a nutshell, that is my question. What is more important on a web based site/service... volume and speed of releasing features, or stability and polish?</p>
<p>I would love to choose both, but resources are definitely finite! As it stands, I have tried my best to balance both and have gone way past my (self determined ) deadlines as a result.</p>
http://stackoverflow.com/questions/35874/how-do-you-enforce-or-maintain-the-quality-of-the-bug-reports-in-your-bug-tracker5How do you enforce or maintain the quality of the bug reports in your bug tracker?vetler2008-08-30T10:45:56Z2009-05-07T02:32:08Z
<p>High-quality bug reports are essential for effective bug tracking - in an ideal world all bug reports would contain essential information such as which version of the software it affects and a step-by-step description on how to reproduce the bug.</p>
<p>In reality, though, bugs reported can vary a lot in quality. They might be on-liners ("feature X doesn't work, fix it!"), feature requests, PEBKACs or unintelligble.</p>
<p>How do you enforce or maintain the quality of the bug reports in your bug tracker to stay effective?</p>
http://stackoverflow.com/questions/778978/revenue-system-based-on-versioning-trac-ticket-statistics1Revenue System based on Versioning/Trac/Ticket Statisticsronnybrendel2009-04-22T20:09:49Z2009-04-22T20:19:49Z
<p>Lately I had the idea that a badge system system like stackoverflow's could be applied to trac (or whatever system) to stimulate your developers handle tickets, bugs and so on.
The naive approach would be very vulnerable to abuse (obviously).</p>
<p>The question is:
Is there a system like that is applied in a work process (non-community).
It might even be connected to monetary benefits.</p>
<p>I am not sure myself if this is even the right thing to do.</p>
http://stackoverflow.com/questions/154705/how-to-reduce-time-spent-in-meetings-as-a-developer30How to reduce time spent in meetings as a developer?Peter Hilton2008-09-30T19:58:12Z2009-04-15T11:37:45Z
<p>What is the single best tactic a developer can use to avoid spending time in meetings?</p>
<p>I'm mainly thinking of the seemingly-pointless meetings that (project) managers often schedule, that can be a real barrier to getting real work done.</p>
<p>So far, I have had some success with the following techniques, which seem to remove some of the need for meetings.</p>
<ul>
<li>Be able to answer all status questions with <em>'It's in JIRA'</em> (we use JIRA for task-management).</li>
<li>Be able to answer most planning questions with <em>'It's in JIRA'</em>.</li>
<li>Be able to answer most other questions with <em>'It's on the wiki'</em>.</li>
<li>Use the beer in the office fridge (or the coffee machine) to enable brief ad-hoc 'stand-up meetings' at the end of the day, so that everyone already knows what's going on.</li>
<li>Use an internal IRC channel or chat room so that everyone already knows what's going on.</li>
</ul>
http://stackoverflow.com/questions/553863/asp-net-content-functionality-versus-design-layout-styling2ASP.NET content/functionality versus design/layout/stylingChrisW2009-02-16T16:23:30Z2009-02-16T22:15:09Z
<p>When developing a web application using ASP.NET, do you have any hints about how to separate the development of content/functionality from the design, so that the two can be developed separately and in parallel?</p>
<p>The situation is:</p>
<ul>
<li>Customer has agreed on what functionality they want</li>
<li>Customer is changing their mind about the appearance (styling and layout) of the pages</li>
<li>Web designer is non-expert:
<ul>
<li>Isn't developing clean CSS-based layout from scratch</li>
<li>Is taking various table-based layouts (with CSS) from 3rd-party sites, to use as an example/prototype of the layout to discuss with the customer</li>
</ul></li>
</ul>
<p>Given this, how to start coding the functionality before the table-based layout is finalized?</p>
<p>I thought that one way to do it might be:</p>
<ul>
<li>Code the functionality (which includes creating the active elements on each page) without caring about (specifying) their layout and styling</li>
<li>Then, at the end, after the designer and the customer have agreed on a design, then cut-and-paste the active elements into the designer's prototype pages.</li>
</ul>
<p>Is this the only or the best way to do it? What other ways are there? Any hints, tips, or tricks to make this easier?</p>
http://stackoverflow.com/questions/44283/what-single-development-processes-can-you-not-live-without4What single development processes can you not live without?Ben Griswold2008-09-04T17:42:42Z2009-01-07T15:51:26Z
<p>I was recently brought into a company to help them define their overall software development processes. The company's team members were enthusiastic and very open to any practice as long as it would increase productivity and quality. Being a smaller shop, however, they really needed to watch their spending. This ultimately meant they needed easy-to-implement, light-weight, inexpensive options which would produce measurable, nearly-immediate results.</p>
<p>Two of my recommendations were the introduction of daily standing meetings to help with overall task management, priority/goal setting, general team communication and collaboration. I also suggested that they incorporate continuous integration as it lends itself to better source management, environment separation, unit testing, team communication, improved release processes and overall software development quality. </p>
<p>With consideration for the above constraints, what single development process would you recommend?</p>
http://stackoverflow.com/questions/416156/what-are-the-development-processes-like-where-you-work0What are the development processes like where you work?David McLaughlin2009-01-06T11:19:36Z2009-01-06T11:42:21Z
<p>Where I work we have this really simple system for working on code. We have our live application servers and a development staging server which exactly duplicates the live environment. Every product/site we have exists in version control (CVS) and to develop, you check out a CVS module to your local machine, edit the code.. commit it back into CVS and then update the stage site to see your changes. When your changes have been tested and confirmed by a project manager, one of two people sanity-check the changes and push them over to the live server. It's worked like this since I started. </p>
<p><strong>We know this is bad</strong> and we've known for years now. We're currently planning a major overhaul of all our development processes and I'm handling most of the software stuff (code reviews, unit testing, refactoring, etc.) and the development environment is being handled by someone else (my boss), who so far doesn't seem to have done anything. This issue is going to come to a head soon and I want to be fully prepared for when it does.</p>
<p>So do you do all your work on a local server before commiting the changes back to a central repository? Or do you have sandbox areas on a development server and work on your changes/bugfixes on a new branch of the project? Or something completely different?</p>
<p>I'm interested in the entire workflow from receiving a feature request or bug report from a project manager right through to your change making it into the live code base.</p>
http://stackoverflow.com/questions/152579/how-do-you-handle-tdd-in-the-continuous-integration2How do you handle TDD in the continuous integration?Petr Macek2008-09-30T10:59:40Z2009-01-06T11:25:51Z
<p>Imagine you are implementing the user story containing various new features and adding complexity to the code base. The existing code is quite well covered and you have just decided upon interfaces. You are starting to implement the functionality starting with tests. </p>
<p>Now you have fairly complex test cases based on the requirements but the implementation is nowhere near the point when you are able to commit to the SCM fully working code and many test are failing (as they should).</p>
<p>There is an assumption that in continuous integration all builds should be green if possible and thus you shouldn't commit as you would break the build. But you also shouldn't <a href="http://www.codinghorror.com/blog/archives/001134.html" rel="nofollow">"Go dark"</a> and keep such amount of code for yourself...</p>
<p>What is the suggested procedure in such situation?</p>
http://stackoverflow.com/questions/133847/responsibility-without-authority-is-meaningless-a-technical-based-solution3Responsibility without Authority is Meaningless - a technical-based solution?Sam Schutte2008-09-25T15:01:45Z2008-12-31T16:11:04Z
<p>My dad always says "Responsibility without Authority is meaningless".</p>
<p>However, I find that as developers, we get stuck in situations all the time where we are:</p>
<ul>
<li>Responsible for ensuring the software is "bug free", but don't have the authority to implement a bug tracking system</li>
<li>Responsible for hitting project deadlines, but can't influence requirements, quality, or team resources (the three parts of project management)</li>
<li>etc.</li>
</ul>
<p>Of course there are tons of things you could say to get around this - find a new job, fight with boss, etc....</p>
<p>But what about a technical solution to this problem? That is, what kind of coding things can you do <em>on your own</em> without having to convince a team to correct some of these issues - or what kind of tools can you use to demonstrate why untracked bugs are hurting you, that deadlines are being missed because of quality problems, and how can you use these tools to gain more "authority" without having to be the boss?</p>
<p><hr /></p>
<p>***An example - the boss comes to you and says "Why are there so many bugs!!?!?" - most of us would say "We don't have a good system to track them!", but this is usually seen as an excuse in my experience. So what if you could point to some report (managers love reports) and say "See, this is why"?</p>
http://stackoverflow.com/questions/282105/are-code-freezes-still-relevant-when-using-a-continuous-integration-build-setup3Are code freezes still relevant when using a continuous integration build setup?casademora2008-11-11T20:54:29Z2008-11-11T21:52:16Z
<p>I've used a Continuous Integration server in the past with great success, and hadn't had the need to ever perform a code freeze on the source control system. </p>
<p>However, lately it seems that everywhere I look, most shops are using the concept of code freezes when preparing for a release, or even a new test version of their product. This idea runs even in my current project.</p>
<p>When you check-in early and often, and use unit tests, integration tests, acceptance tests, etc., are code freezes still needed?</p>
http://stackoverflow.com/questions/201038/when-to-use-a-build-tool4When to use a build tool?Matthias2008-10-14T12:55:24Z2008-10-25T12:42:40Z
<p>A beginner question, bear with me: I'm just wondering under what circumstances one should use a build tool like nant or msbuild? I'm working on a medium sized application (.net 3.0), every developer is doing his work and builds on his machine checking his code changes into the repository as he goes. Once we're all done, I'll get all the code from the repository, make a clean build on my machine and we deploy the binaries. Just out of curiosity, where comes the build tool in?</p>
http://stackoverflow.com/questions/189786/is-there-any-reason-why-you-all-want-to-be-notify-whenever-someone-commit-some-co5Is there any reason why you all want to be notify whenever someone commit some codes?Nick Long2008-10-10T01:13:47Z2008-10-10T04:52:49Z
<p>I know there are things like doing manual check to make sure the codes committed is fundamentally correct. But beside that? Reason i asking is because a big project there are so many commits everyday.</p>
http://stackoverflow.com/questions/97185/when-to-review-code-before-or-after-checkin-to-main5When to review code? Before or after checkin to MAIN?toolkit2008-09-18T21:28:54Z2008-09-19T04:12:42Z
<p>Hi there,</p>
<p>Browsing stackoverflow, I noticed a number of posts stating that some developers advocate code review before checkin to MAIN. However, can this really be enforced? And if so, surely it reduces the likelihood of code being refactored due to the increased overhead involved?</p>
<p>Personally, I prefer the approach of employing continuous integration to catch anyone who breaks the build, and then perform code reviews on a more coarse-grained basis at the end of a significant piece of work. I don't mandate code reviews for minor refactorings.</p>
<p>I'm interested to hear your opinion.</p>
http://stackoverflow.com/questions/63100/scrum-process-management-tips-pitfalls-ideas2Scrum Process Management - tips, pitfalls, ideasSlavo2008-09-15T13:57:30Z2008-09-16T12:32:02Z
<p>I've been doing scrum with a team for a while, but things seem messy for whatever reasons. I've been thinking on how they can be changed and have a couple of questions that would like to raise here.<br />
First, what should be the role of testers, designers and non-developers as a whole in the scrum process? If they are equal to other team members a couple of issues arise. Designers and testers usually work on a task after development is done, so they cannot adequately plan for a sprint because of this dependency.<br />
Second, we have deadlines. These are strict and have a lot of impact on prioritization. The end result is backlog changes in the middle of a sprint because of deadline changes, or bad results in the end of the sprint.
We also have a lot of non-technical work like customer support that has to be done in the meantime and cannot be planned as it varies a lot.
So I'm thinking that the team structure, culture and practices are kind of not compatible with scrum. Scrum for me is a process management tool for teams working on the development of a single software product.<br />
What do you guys think about applying it in more specific and complicated scenarios, do you have any experience to share?</p>
http://stackoverflow.com/questions/63162/what-development-documentation-do-you-find-useful2What development documentation do you find usefulKief2008-09-15T14:04:31Z2008-09-15T16:54:59Z
<p>I find that for most software projects, documentation is often oriented towards the process of development the software, rather than supporting and maintaining it. This is particularly true when using agile methodologies, which emphasize minimalistic documentation.</p>
<p>The issue with development-oriented documentation is that it tends to be less usable as a reference, especially after a few releases. It's a pain to sifting through a pile of story cards (or story pages on a wiki, as our team uses) trying to work out which stories are current, and which have been modified (directly or indirectly) by more recent stories. A full waterfall-style requirements specification, technical-design document, etc. may be fine if development is always done in a big bang, but as bugs are fixed, minor features added, etc. it may be difficult to maintain.</p>
<p>I'm a fan of minimalistic documentation, as the less documentation there is, the easier it is to find things (assuming what you're looking for is documented, of course), and the easier it is to maintain. </p>
<p>I am thinking of extending our wiki-based story pages to contain some meta-data, i.e. references to other stories which are related, affected, obsoleted, etc., similar to <a href="http://en.wikipedia.org/wiki/Request_for_Comments" rel="nofollow">IETF RFPs</a>.</p>
<p>I'm interested in hearing about other peoples' experiences with lightweight approaches to software documentation that works for maintenance and support, not just delivering a project and tossing it over the wall.</p>
<p><em>Update:</em> I don't consider class-level documentation to be enough, whether using inline documentation such as javadoc or unit tests as documentation. These are fine for developers, but testers, support staff, trainers and the like need a way to understand what the expected behavior of the code is. This needs a higher level view of functionality than class-by-class. Each class may be doing what it was meant to do, but is how is the component as a whole supposed to work? This is why I personally favor the user story as a basic unit of documentation.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly7When should you release a hobby project publicly?Rob2008-08-28T13:30:19Z2008-08-28T15:18:48Z
<p>In regards to hobby projects, at what point do you consider it to be mature enough to release the first version to the general public? Do you wait until you have all of the features implemented, or do you release it once you have solid functionality and keep working on it?</p>
<p>Also, what are some of the differences between releasing a hobby project as an open source project?</p>
http://stackoverflow.com/questions/24203/how-do-i-decide-which-features-to-implement6How do I decide which features to implement?Anders Sandvig2008-08-23T12:55:16Z2008-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—if it was significant and not too boring—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>