licensing

GPL and hosted services

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...

Objective-C runtime reflection (objc_msgSend): does it violate the iPhone Developer License Agreement?

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...

Licensing c program

Hi, How would i licence my c command line program, e.g limited functionality without a serial number? ...

Derrived work from BSD Licensed code

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...

What can I do with GPLv2 Code vs. MIT License code

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...

DirectShowNet for Compact framework licensing?

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? ...

License similar to the MIT license but without the ability to sell?

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...

Question regarding the ExtJS License

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...

GNU General Public License (v2): can a company use the licensed software for free?

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...

What movie website allows people to scrape 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 ...

Open-source: licence header on each source file OR a single COPYING OR both?

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. ...

VCRedist - Are we allowed to rename the package under the distribution license?

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 ...

Opinions/Discussion on Copy Protection / Software Licensing via phoning home

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...

Deactivate Air app created in AS3 after next Monday?

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...

IBM Toolkit for MPEG-4 terms of use, am I understanding right?

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, ...

Which license do you choose for google code projects, and why?

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...

how important to register(license) your own components?

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?...

Another one on licensing and selling

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...

Google code: what kind of license should I use?

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...

How exactly does linking in C# work?

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...