When should you release a hobby project publicly? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T16:08:44Zhttp://stackoverflow.com/feeds/question/32265http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/32265/when-should-you-release-a-hobby-project-publicly/32272#322722Answer by Greg Hurlman for When should you release a hobby project publicly?Greg Hurlman2008-08-28T13:32:25Z2008-08-28T13:32:25Z<p>At idea conception. Given sites like CodePlex and SourceForge, you can "release" your code via open access to the SCM - and when you think it's "ready", you can package it up as a release on the site.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly/32276#3227612Answer by sparkes for When should you release a hobby project publicly?sparkes2008-08-28T13:33:45Z2008-08-28T13:33:45Z<p><a href="http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/ar01s04.html" rel="nofollow">Early and Often</a> for both Open Source and sharing your own toys with the world.</p>
<p>You just need a thick skin to cope with all the muppets who've never released anything telling you how they believe your father is unknown and you can't code your way out of a paperbag. It's character building and yes I'm bitter.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly/32278#322781Answer by 17 of 26 for When should you release a hobby project publicly?17 of 262008-08-28T13:33:50Z2008-08-28T13:33:50Z<p>I would say release it when you have enough functionality working to make the application actually useful. </p>
<p>Also, make sure what you do release is bug free as far as you know. Users tend to not want to use buggy software.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly/32285#322851Answer by Chris Karcher for When should you release a hobby project publicly?Chris Karcher2008-08-28T13:36:15Z2008-08-28T13:36:15Z<p>Do you anticipate a lot of people using your product as soon as it's made public? If not, I say release it.</p>
<p>If you'll only have a small user base to start with, consider it beta and solicit feedback from your users.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly/32309#323097Answer by Jason Baker for When should you release a hobby project publicly?Jason Baker2008-08-28T13:45:09Z2008-08-28T13:45:09Z<p>You're better off releasing it BEFORE all the features you want to implement have been implemented. This allows you to test what's already in the code before you start to add more stuff. Just make sure to not let the version number get above 1.0 until your app is feature complete and put plenty of warnings that things aren't set in stone and could very well change later on.</p>
<p>EDIT: Also, read this: <a href="http://producingoss.com/en/index.html" rel="nofollow">producing open source software</a>. The guy that wrote it has lots of experience in the open source world and there's a lot to learn from in there about versioning and just about every other subject that could come up.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly/32328#323281Answer by Owen Fraser-Green for When should you release a hobby project publicly?Owen Fraser-Green2008-08-28T13:50:09Z2008-08-28T13:50:09Z<p>As early as you're confident it's a project you're going to spend some time on. Sites such as Sourceforge aren't only a way for you to make your "finished product" [1] available but they save you having to maintain your own infrastructure - SCM, bug tracking (and even if you're the only developer for some time, you really want those).</p>
<p>Most of the projects on Sourceforge and similar sites are pre-beta but that really doesn't matter because, since the state of completeness is advertised for every project, nobody gets disappointed. I've picked up and begun using half-working pre-alpha-quality tools before and was very grateful they were published because there were no alternatives and I would have otherwise had to start from scratch myself. In a couple of cases, I had to make fixes to get the tools working for my case which I then fed back to the author. This is how many projects gain traction.</p>
<p>[1] There's no such thing.</p>
http://stackoverflow.com/questions/32265/when-should-you-release-a-hobby-project-publicly/32558#325580Answer by Dinah for When should you release a hobby project publicly?Dinah2008-08-28T15:18:48Z2008-08-28T15:18:48Z<p>My advice is to either release something publicly once it's reasonably stable -or- the other extreme: have it public from the very beginning and show the evolution. Either way is the same effect -- you don't receive many complaints that someone expects the software to be stable when it isn't.</p>