In my previous job I architected a system/language to build large finanical models. Company got acquired, I couldn't get a long with new management so I quit. Tried to do a start up but that went south and now I'm at another job that's very nice. So far, so good.

But, I still have a bunch of code lying around that took me half a year to write (a version 3.0 so just the coding, thinking was done over years) and I'd hate to see it go to waste.

So now I'm thinking to upload that to a open source project hosting site to see if anyone else would like to help on it as a pet project. (I really like the subject, think of it as a crossover between Excel, OO and Sql with concepts from Olap, functional programming and intentional programming.)

Couple of issues/ rants I'd like to have your input on before I just upload it somewhre. Hard to put the genie back in the bottle.

  1. Ownership. Suppose this thing works out ok and we get good software that we could make money with. How would you deal with such a case? Can anyone just download it and use it commercially? How can I (we if someone decides to pitch in) protect that? Actually the value to the customer would in be the models that run on it, no so much the system itself.

  2. What is the best place to do such a thing? Codeplex, SourceForge, etc. Any reason to take one over the other? (Whole thing is based on MS technology so far C#, Sql, ANTLR)

  3. Anyone else been in this situation, what did you do?

  4. Thoughts, tips?

Thanks in advance,

Gert-Jan

link|improve this question

2  
Sounds like a question that should be asked on programmers.stackexchange.com – Oded Dec 18 '10 at 15:12
3  
First Off, You should check if your previous company doesn't have the legal ownership of the code you developed while working for them. I would start from that (I had the same issue a couple oif years ago and got screwed) – Mika Jacobi Dec 18 '10 at 15:20
1  
Hi, I wrote the whole thing from scratch again in my own time after I left, with many of the ideas that I couldn't get ok for. There's isn't a single line of code shared between them. Not stealing stuff here. – gjvdkamp Dec 18 '10 at 15:25
2  
Fair enough. I don't know if the moderators can migrate to programmers yet. You can flag the question for moderator attention - if migrated, answers will be migrated with it. – Oded Dec 18 '10 at 15:41
1  
@gjvdkamp: Sorry, we don't have a migration route set up to Programmers SE yet since it just came out of beta. I hope we get one soon though. – Bill the Lizard Dec 18 '10 at 15:55
show 8 more comments
feedback

closed as off topic by Mitch Wheat, Oded, chibacity, gnovice, Graviton Dec 20 '10 at 3:11

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

Disclaimer: I'm not a lawyer. Especially not a copyright lawyer. If you want good legal advice, find a lawyer.

First off, check you own the code and the copyright. Most permanent employment contracts have a clause allowing your company to take ownership of any relevant intellectual works made during your employment period.

There are lots of different licenses you can use to release code. Some of them say "You can't use this code commercially" or "You can't modify and use this code". The spirit of Open Source, though, is that you're giving it to the community, so those kind of restricted licences aren't really very useful.

If you do make the code open-source, then the only thing stopping someone from downloading and using it commercially would be the copyright license, together with relevant morals and the threat of litigation. You can certainly tell people they can't use the code commercially, but I'd question why you're making it open-source if that's what you want to do.

If you open it up and ask anyone else to help with it, they own the copyright on anything they contribute. They can release it with the same license as yours, but you can't then say, "No, we're going to make this project commercial". If you're looking for community help for your project, bear this in mind. You'll need every contributor's permission to change the license conditions.

Having said that, a lot of companies make good money just with support or donations, and my tiny little open-source projects have been great in helping me find jobs which pay well.

Have a look at the Apache, GNU general public and Creative Commons licenses. They'll give you an overview of some of the options available.

Whichever software repository you use is largely irrelevant - I'd choose it based on the version control etc. Codeplex, SourceForge and GoogleCode are all great.

link|improve this answer
Hi, thanks for your time. So Basically it's either go open source and let others help but also make money without me getting a kickback, or keep it closed. In between it's neither fish nor water. Tried the latter, guess it leaves the first option. Not too bad, most value would be in the consulting anyway. – gjvdkamp Dec 18 '10 at 15:41
feedback
  1. It's in the spirit of open source software that people use it to make money, and that the author of the software doesn't receive any share of that money (look, e.g., at Linux, Apache, gcc, ...). What gets prevented is that somebody can claim that they wrote the software when they did not, and that they can make a monopoly out of the software: anybody else can offer the same service, and make the same money. Choice of license influences whether they will have to share enhancements with everybody or not.
  2. Choice of hosting place should be driven by the dev tools you want to use (what version control, what bug tracker, do you need mailing lists or not, etc). It doesn't have to be all in a single place, either. Google will find it on any of them.
  3. I typically open-source all code I write unless it belongs to my employer.
  4. Release early, release often :-)
link|improve this answer
Ok that spirit seems fair enough. You either share for real and get real value back, or do it yourself. Guess I'll just clean it up some, write some docs etc and post it. Thanks! – gjvdkamp Dec 18 '10 at 15:47
feedback

If you want the possibility to make money from an open source project, you should

1) require that all contributors give up the copyright of their patches to you (the FSF does this so it's possible), and 2) license it under the GPL with the option to buy a commercial license.

link|improve this answer
Hi, thanks! But how much help could I really expect if I ask people to do that. Any projects that do this? – gjvdkamp Dec 18 '10 at 15:49
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.