As I understand it GPL says you only have to distribute derivative code for works you distribute, i.e. if you develop internal software you can keep your code private.
What happens if you develop a server application, say like Facebook or StackOverflow? The server app is not 'distributed' so what's the situation with your code in this c...
Does code like this (potentially) violate the iPhone Developer License Agreement?
Class clazz = NSClassFromString(@"WNEntity");
id entity = [clazz entityWithImage:@"Icon.png"];
SEL setPositionSelector = NSSelectorFromString(@"setPosition:");
objc_msgSend(entity, setPositionSelector, CGPointMake(200, 100));
I'm working on code that dyn...
Hi,
How would i licence my c command line program, e.g limited functionality without a serial number?
...
I'm not exactly sure that stackoverflow is the right *overflow to post to concerning this, but w/e. Just don't flame me.
If i took a file with a BSD-style license (or MIT/X11, or ISC, or NCSA, etc.) and i modified/refactored/incorporated it into my own project, what is the procedure for distinguishing my vs. another copyright. I've re...
For a project at my company, we need a interpreter. I have two candidates, one licensed under the GPLv2, the other under MIT License (pyMite VM and eLua, respectively). Both will require porting to my target (PowerPC).
Is it possible to pull the code in as a library of some sort, and thus avoid having to release code for the entire proj...
http://directshownetcf.com/
I can't seem to find anything on google to suggest whether or not i can use this in a commercial application. It does reference you can buy the source code for money, but nothing (that i can see) about using the already compiled dll.
Has anyone got any information on this?
...
I'm trying to decide how I want to license my Wordpress themes to the public. I know that the GPL is recommended to Wordpress theme creators, however I feel it might not be liberal enough for me because I want businesses to be able to use them if they want to. I really like the MIT license, the only thing that gets me is the freedom to s...
Let's say I create a CMS that uses ExtJS.
I want to avoid the license fee, so I open-source the CMS on github.
Now let's imagine that I make your friend Dave a website that uses my CMS. I spend three hundred hours designing a logo and layout. Can I charge a fee for this, and would I be obliged to open-source Dave's website too or i...
Here is the context of this question: I have code that is to be sold for profit, but I wish to make it available/free to individuals and non-profits, as long as their code remains free.
When a library is released under the GPL v2, can a company use it internally for free? If they develop software based on it, do they have to release it...
I've wanted to make a C# library to scrape movie information and return it to the application, but someone told me that it's against the TOS.
RottenTomatoes seems to have no problems with it from what I've read on their licensing page, but I'm not quite sure.
Where could I aquire movie information legally and without cost? It's for an ...
Publishing an open-source project, is it enough to add a COPYING file to the package or do i need to copy and paste it on top of every project's source file?
On public repository like github or google code i saw mixed things and i'm curious on how this aspect should be handled correctly.
...
Hey,
We have some software that will need to distribute the vcredists but due to maintaining a legacy system we will now need to place different versions within the same folder.
As a solution we would like to rename the vcredist to something like
x86_vcredist_2005
x86_vcredist_2008
x86_vcredist_2008SP1
I've looked through the brief ...
I'm developing some software that I'm going to eventually sell. I've been thinking about different copy protection mechanisms, both custom and 3rd party. I know that no copy protection is 100% full-proof, but I need to at least try. So I'm looking for some opinions to my approach I'm thinking about:
One method I'm thinking about is just...
Hi, I have an application deployed in Air, written in AS3 that the client wants to install and test, I have developed a simple license app, but he is pushing for a full license which he said he will fully pay on next Monday.
How would you create a procedure in AS3 to deactivate application next Monday? How secure will it be? Will simply...
The IBM Toolkit for MPEG-4 comes with the following paragraph in its licence:
Rights In Data
You assign to IBM all right, title,
and interest (including ownership of
copyright) in any data, suggestions,
and written materials that 1) is
related to Your use of the Program and
2) You provide to IBM. If IBM requires
it, ...
Starting a new project on Google code offers a choice of several licenses:
Apache License 2.0
Artistic License/GPL
Eclipse Public License
GPL v2/v3
Lesser GPL
MIT
Mozilla License 1.1
New BSD License
Which license do you choose, ans why? I'm also interested in opinions which license is the least restrictive license for commercial user...
I am new to component building, and I have noticed that other components have a comment on top of their units like agreement, terms and condition etc. whether its free or commercial.
How important is to register(license) your own component and how/where? and when do you need to register it?
How about freeware? Must have a license too?...
I know that there are lots of questions about licensing, licenses and selling your application.
Here's the thing:
Data for my application is stored in MySQL. I am using MySQL Connector to retrieve/store data.
My "business logic" is written in java.
My interface is also written in java and since it is a web application, it runs on Glassf...
Possible Duplicate:
Which Google Code license should I use?
Hello
I would like to store my code on a repository such as Google Code. What kind of license should I use? I don't want to block me. My code may be open source and reused by others but I want to be able to reuse it in any open source project or not, and gainful proj...
I want to use a GPL'd library in my C# application, but not necessarily release my own code under the GPL. If I understand correctly linking against a GPL'd library using dynamic linking and not distributing the library in question means I can license my own app in any way I want (the users of my software would then be required to instal...