vote up 7 vote down star
2

I noticed today that stackoverflow's cc-wiki (aka creative commons attribution/share alike license) does not allow the answers to questions to be used in commercial products.

Very specificially, and perhaps I've misunderstood the license, it has a share-alike clause, meaning any derivative work would also be share-alike.

Corporations eschew such clauses, because while the answer might be necessary, or even key, they must retain the rights to their own work. Not just corporations, but anyone who holds a copyright.

So what's the right license to put on sample code? I don't want people ripping off my code or productizing it with little to no work of their own and making tons of cash. But I also want larger projects to be able to use it.

EDIT: Some clarification. I actually want commercial usage to be ok. Supposing I write a good caching algorithm in answer to a question; I don't mind if some larger project like Mozilla or IE wants to use it, even a commercial product, but I don't want someone to take the algorithm and start selling it.

IE, it's ok if they want to USE the algorithm in their product, not OK if their product is the algorithm.


67% accept rate
1  
WRONG! CC-BY-SA does allow usage in commercial products; to disallow such usage (like CC-BY-NC or CC-BY-NC-ND) would make it not a free license. See freedomdefined.org/Licenses/NC . It is true that it is Share-Alike meaning that derivative works are also share-alike. This makes it a copyleft license (like the GPL), and it entirely compatible with copyright. – ShreevatsaR Jun 4 at 17:25
Share Alike — If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one. Meaning you can't distribute your larger work under your own for-fee nontransferrable license. – davenpcj Jun 4 at 20:06
@davenpcj: That's right. But it does allow commercial usage, in the sense that someone can sell (derivatives of) your code as long as it's also available as free software. See gnu.org/philosophy/selling.html Using a non-commercial license prevents people from putting a derivative on a free-software CD they're selling, for example. Or for using it in any free-software project at all, because "non-commercial" is considered excessive restriction and is not compatible with any of the common free-software licenses. – ShreevatsaR Jun 5 at 1:56
@Shree: The problem is not sale, but the legal burden of having to provide the rest of your proprietary code. – davenpcj Jun 6 at 19:46

migrated to meta.stackoverflow.com by Jeff Atwood Aug 30 at 12:20

Browse other questions tagged or ask your own question.