Is it allowed to use ideas from open source in closed source software?
I've met people who say to not even look at open source (GPL and LGPL were mentioned) if you write closed source software.
|
1
|
|
||
|
|
|
|
Ideas aren't the subject of copyright; code is. As long as you don't steal the implementation, you're fine. Patents, on the other hand... |
||
|
|
Yes, it is allowed to use ideas from open-source software. While the exact details differed based on which license, you can sometimes not use any code from an open-source project in a closed-source project. |
||
|
|
|
|
Yes. Then it depends what you mean by ideas... If you mean inspire yourself by looking at the software features, then ok. If you mean copying big chunks of code, you might need to double check the license. |
||
|
|
|
|
Ideas cannot be copyrighted, although they can be patented. Nor does this apply to a large number of open source licenses. GPL and LGPL are the most likely to fall under this band, since they're widely used and there are consequences for redistributing them. I'd think that the most likely reason is that, if your developers haven't looked at Foo Extreme or whatever the project is, you have an easy way of showing that they haven't copied something from it. The next most likely is that it is possible to copy something without consciously realizing it. |
||||
|
|
|
Like Nathaniel has already said, yes it is fine to use ideas. You may also use the code, but, and I cannot stress this enough, it depends on the licence and not all licences will allow it. I think the reasons people are discouraged or even disallowed from looking at OSS code is to prevent the intentional or unintentional use of parts of the code in software where this will cause a breach of licence agreement. Having never worked in such an environment, its hard to say but it seems logical. Also, if its enforced that developers may not look at OSS or other projects' code, its a given that they have not been able to steal code from within. Some licences allow the use of code in other projects, as I said above. However, this is always (that I have seen) with the condition that copyright notices and whatnot remain intact. Reading the particular licence in question is recommended for viewing the specifics. As always, if in doubt surrounding licences and whatnot, seek legal advice to avoid doing something you might regret. :) |
||
|
|
|
|
Yes you can. As others have alluded to the code is the implementation of an idea, the rights to use them are separately assigned. The opposite is also true, you can have an open source version of a patented idea. VTK, an open source graphics package, used to have a separate part of its source tree set aside for patented algorithms (it still may, I haven't looked at it for a while). |
||||||
|
|
|
As many have said here: yes, in many cases. If you are looking at an OSS project for ideas to use, ask yourself "why?" You may find an OSS project that has already done 80-95% of what your closed project is trying to accomplish. Why re-invent the wheel? You can benefit from what others have done. Review the project in question then tell your boss/ceo/whoever "We can save ___ hours/manmonths if we use this OSS tool instead of writing it ourselves. You could even "pay for it" by making a financial contribution. Another way to contirbute/"pay for" the OSS tool is helping the project grow. For instance, You may still need to "tweek" it a bit to get it to be a perfect fit for your company. So, if you do just be sure to at least send your additions with a brief explanation of what and why you added/changed something to the core OSS devel team for review. Rem, if you use the open/community code its only fair and good that you contribute back any improvements. Do not worry you company's business data and processes are almost never required to be sent in. There are a few projects (like nessus) where the "data" (nasl scripts in this case) may be protected also. Those few projects has to be very carefully evaluated. OSS fosters a cooperative community and ever-improving code-base, and can save a lot of time. I can personally say that using OSS has really helped the last few companies I've worked for. My opinion of OSS in general has changed a lot in the past few years. In fact, at one of those companies we used both open- and close-sourced projects/tools to tailor our product for each customer's business goals. It is, of course, immensely easier, cheaper, and faster to tailor OSS, but sometimes there is a "special purpose" backend system that must be integrated into a solution. Remember OSS is about free as in freedom too, not just free as in cost. I hope this helps
|
||
|
|
