Solo Software Engineering in FOSS projects - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:13:46Z http://stackoverflow.com/feeds/question/180893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/180893/solo-software-engineering-in-foss-projects 4 Solo Software Engineering in FOSS projects Mat 2008-10-07T23:58:34Z 2008-10-12T14:31:27Z <p>I'm interested in knowing any software engineering techniques developers might use when first starting an Open Source project. I would imagine that conventional processes would not be applicable, as many assume interaction with other developers, which might not be available when a project is first starting out.</p> <p>What facets of the plethora of software engineering methodologies out there do open source developers use?</p> http://stackoverflow.com/questions/180893/solo-software-engineering-in-foss-projects/180918#180918 8 Answer by S.Lott for Solo Software Engineering in FOSS projects S.Lott 2008-10-08T00:13:34Z 2008-10-08T00:13:34Z <p>The processes don't actually change. You still have use cases, you create an architecture, you design, you have a backlog, you do sprints, you code, you test, you deliver, you do configuration management and quality assurance.</p> <p>The only difference is that the meetings are shorter. And if you have disagreements, you have to change your dosage.</p> http://stackoverflow.com/questions/180893/solo-software-engineering-in-foss-projects/180932#180932 5 Answer by coobird for Solo Software Engineering in FOSS projects coobird 2008-10-08T00:20:05Z 2008-10-08T00:20:05Z <p>Perhaps <a href="http://producingoss.com/" rel="nofollow">Producing Open Source Software</a> by Karl Fogel may be a good starting point.</p> <p>Not only does the book talk about the technical aspects of starting and maintaining an open source project, it also goes into what the social aspect of OSS project, such as how to effectively communicate with other people. After all, it may be communication that actually makes or breaks a OSS project.</p> <p>It's also <a href="http://producingoss.com/en/index.html" rel="nofollow">available</a> for reading online as well.</p> http://stackoverflow.com/questions/180893/solo-software-engineering-in-foss-projects/180988#180988 3 Answer by Jay for Solo Software Engineering in FOSS projects Jay 2008-10-08T00:52:27Z 2008-10-08T00:52:27Z <p>Honestly, even with a single developer, it's just as important to set up a project website (wiki, bug tracker, roadmap/timeline, homepage) use source control, create design documents, comment and document your code, etc. For one, it's good (I'd go so far as to say "right") programming practice. Secondly, as soon as the project grows to > 1 developer, you'll find yourself having to set up all the same processes and procedures, only now they'll be interrupting your ability to work on new code. Far better to have them in place from the beginning.</p> <p>Of particular importance is documentation, both of design and implementation. After all, that's how new developers will get started with maintaining and extending your code. The better the docs, the easier it will be for them and the better chance your project has of taking off and attracting a development team. Similarly, using source control and bug trackers will help you keep proper track of your development and give you revision history and rollback capability for mistakes. Further, when new developers come on board, they will benefit greatly from the commit logs in understanding what has been done in the past - and why.</p> http://stackoverflow.com/questions/180893/solo-software-engineering-in-foss-projects/195551#195551 0 Answer by conny for Solo Software Engineering in FOSS projects conny 2008-10-12T14:31:27Z 2008-10-12T14:31:27Z <p>Perhaps you could also claim that there's some "methodology" involved when it comes to <em>bootstrapping</em> an open source project. Most successful small open projects grow according to the <a href="http://en.wikipedia.org/wiki/Snowball_effect" rel="nofollow">snowball effect</a>. </p> <p>In practice: keep your head cold and don't bother to "open source" until you have at least <em>some</em> assets to share. You'll only be wasting your time on setting up the infrastructure if your source code repository is <em>empty</em>. </p> <p>The other way around is usually more effective IMHO: start with a repository. Hack away solo and use it to "pre-bake" your project. Then, after a while, go publicize your intents and switch to a public repository.</p> <p>In the other case, when you can't create anything tangible yet - starting with a blog can help you get accumulate ideas, motivation and attention.</p>