473,803 Members | 3,899 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Which License Should I Use?

I've been watching the flame war about licenses with some interest.
There are many motivations for those who participate in this sector, so
disagreements over licenses reflect those agendas.

I don't have an agenda, at least not right now. I do plan on writing a
few programs.

These will be tools I need for firmware testing. They will be
relatively simple things like tools for breaking down data by its
structure for easy viewing, sending commands/macros over serial ports,
etc. Similar things exist, but they don't do everything I need. These
will also be excellent learning opportunities for me, since I'm still
pretty shaky on Python.

How do I decide on a license? Are there any web sites that summarize
the pros and cons? I guess I don't care too much about how other
people use it. These things won't be comprehensive enough or have
broad enough appeal that somebody will slap a new coat of paint on them
and try to sell them. I guess I don't care if somebody incorporates
them into something bigger. If somebody were to add features to them,
it would be nice to get the code and keep the derivative work as open
source, but I don't think that matters all that much to me. If
somebody can add value and find a way of making money at it, I don't
think I'd be too upset.

I will be doing the bulk of the coding on my own time, because I need
to be able to take these tools with me when I change employers.
However, I'm sure that in the course of using these tools, I will need
to spend time on the job debugging or tweaking them. I do not want my
current employer to have any claim on my code in any way. Usually if
you program on company time, that makes what you do a "work for hire".
I can't contaminate my code like that. Does that mean the GPL is the
strongest defense in this situation?

I'm open to suggestions as to which licenses to consider. However,
please try to keep the conversation to the decision process or what
sounds like it is best for this purpose. Let's keep the broader issue
of which license will bring about the fall of Western Civilization on
the other thread.

Ron Britton

(The gibberish on the next line really is my email address.)
nk67v8o02
at
sneakemail.com

Nov 25 '05
51 3287
""Björn Lindström"" <bk**@stp.lingf il.uu.se> wrote in message
news:87******** *******@lucien. dreaming...
Mike Meyer <mw*@mired.or g> writes: If they have the rights to the code, they can sell it, under the GPL or
any license of their choosing. In addition, if you GPL it, your employer
will be able to sell it, just like anyone else.


If they have the rights to the code, you don't get to decide on the terms
under which it will be distributed (if at all) -- they do.
Nov 27 '05 #21
"mojosam" <nk*******@snea kemail.com> wrote in message
news:11******** **************@ g43g2000cwa.goo glegroups.com.. .
I would have to talk to a lawyer to be sure, but right now, I think I
can argue that anything I do on my own time belongs to me. I'm
technically a consultant right now (even though I'm spending 40
hours/week with the one "client"). I can take on other clients, as
long as they don't directly compete. This means they're hiring my
expertise. If I bring my own tools, that's part of my expertise. I do
recall there was a clause in the contract that anything I did on their
time belonged to them. For my next client, I should definitely include
a clause about rereleasing open source changes.


Yup. If you're not an employee (that is, if you get a 1099 form rather than
a W-2 form from your client), then any work you do belongs to you *except*
for what you agree in writing belongs to them. So if you write code that's
not part of any deliverable, it's yours.

Of course, they might object to your using their facilities, or working on
their time, on stuff that isn't part of a deliverable. But that's a
separate problem entirely.
Nov 27 '05 #22
"Robert Kern" <ro*********@gm ail.com> wrote in message
news:ma******** *************** *************** *@python.org...
You're in something of a gray area, but one that has seen a lot of
litigation. Although you are "technicall y" a consultant, you are
probably considered an employee with regards to the "work made for hire"
doctrine. You should probably have a chat with a lawyer soon (I am not
one! TINLA!).


I'm pretty sure that there was a change to the copyright laws a few years
ago (perhaps as part of the DMCA), that made it clear that you own
everything you produce, unless you're a W-2 employee or there is a written
agreement to the contrary.

Nov 27 '05 #23
Andrew Koenig wrote:
"Robert Kern" <ro*********@gm ail.com> wrote in message
news:ma******** *************** *************** *@python.org...
You're in something of a gray area, but one that has seen a lot of
litigation. Although you are "technicall y" a consultant, you are
probably considered an employee with regards to the "work made for hire"
doctrine. You should probably have a chat with a lawyer soon (I am not
one! TINLA!).


I'm pretty sure that there was a change to the copyright laws a few years
ago (perhaps as part of the DMCA), that made it clear that you own
everything you produce, unless you're a W-2 employee or there is a written
agreement to the contrary.


The US Copyright Office does not agree with you.

http://www.copyright.gov/circs/circ09.pdf

But you can read the text of the DMCA itself.

http://www.eff.org/IP/DMCA/hr2281_dm...pl105-304.html

--
Robert Kern
ro*********@gma il.com

"In the fields of hell where the grass grows high
Are the graves of dreams allowed to die."
-- Richard Harter

Nov 27 '05 #24
Andrew Koenig wrote:
Yup. If you're not an employee (that is, if you get a 1099 form rather than
a W-2 form from your client), then any work you do belongs to you *except*
for what you agree in writing belongs to them. So if you write code that's
not part of any deliverable, it's yours.


Please stop saying things that are demonstrably untrue and could get
people into legal trouble if they believed you.

--
Robert Kern
ro*********@gma il.com

"In the fields of hell where the grass grows high
Are the graves of dreams allowed to die."
-- Richard Harter

Nov 27 '05 #25
"Andrew Koenig" <ar*@acm.org> writes:
I'm pretty sure that there was a change to the copyright laws a few years
ago (perhaps as part of the DMCA), that made it clear that you own
everything you produce, unless you're a W-2 employee or there is a written
agreement to the contrary.


Definitely not. The most recent change to the copyright laws made
works of music recorded to fullfill a contract "work for hire" by
default.

<mike
--
Mike Meyer <mw*@mired.or g> http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
Nov 27 '05 #26
Steven D'Aprano wrote:
On Fri, 25 Nov 2005 11:30:46 -0800, mojosam wrote:
I guess I don't care too much about how other people use it.


Then probably the best licence to use is just to follow the lead of
Python. For that sort of small program of limited value, I put something
like this in the code:

Copyright (c) 2005 Steven D'Aprano.
Released under the same license as used by Python 2.3.2 itself.
See http://www.python.org/psf/license.html for details, and
http://www.python.org/2.3.2/license.html for the full text of the license.


Gaak! No! The Python license you point to contains horrible amounts of
cruft due to the ownership ping-pong game. (And just using the hyperlink
like you did leaves it vauge as to who is doing the liscensing - Steven
D'Aprano? the PSF? BeOpen? CNRI? Stichting Mathematisch Centrum?) As I
understand it, the PSF's official position is that the Python license
(even just the top most one) is not appropriate for any program besides
Python itself.

http://wiki.python.org/moin/PythonSo...tionLicenseFaq

Note that the Python license is not even appropriate for third party
code that's intended to be contributed to the Python standard library or
core!

If you want a "like Python" license, try the MIT or "new-BSD" license
instead:
http://www.opensource.org/licenses/mit-license.php
http://www.opensource.org/licenses/bsd-license.php
Nov 28 '05 #27
Steven D'Aprano wrote:
On Fri, 25 Nov 2005 11:30:46 -0800, mojosam wrote:

I guess I don't care too much about how other people use it.

Then probably the best licence to use is just to follow the lead of
Python. For that sort of small program of limited value, I put something
like this in the code:

Copyright (c) 2005 Steven D'Aprano.
Released under the same license as used by Python 2.3.2 itself.
See http://www.python.org/psf/license.html for details, and
http://www.python.org/2.3.2/license.html for the full text of the license.

I use that as a no-brainer licence: it is weaker than but compatible with
the GPL, and requires less documentation.

Not only is this inappropriate, it doesn't even license users to use
your software, it licenses them to use Python! The official advice of
the PSF is that the unmodified Python license should *not* (and, really,
can not) be used to license any other software.

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC www.holdenweb.com
PyCon TX 2006 www.python.org/pycon/

Nov 28 '05 #28
mojosam wrote:
I've been watching the flame war about licenses with some interest.
There are many motivations for those who participate in this sector, so
disagreements over licenses reflect those agendas.


One point that frequently gets ignored in licensing debates:

The value of a license is directly proportional to the amount of time,
effort, and money you are willing to spend enforcing it.

It doesn't matter how fancy the legal wording is - it is up to you, as
the copyright holder, to bring legal action against infringers (or at
least send a cease-and-desist letter). If you're not going to bother,
any and all clauses in the license, no matter how artfully crafted,
won't do you any (legal) good. People using your program are left acting
on the honor system. Which may be just fine - but you don't need a
fancy, legalistic license to accomplish that.
Nov 28 '05 #29
Rocco Moretti <ro**********@h otpop.com> wrote:
One point that frequently gets ignored in licensing debates:

The value of a license is directly proportional to the amount of
time, effort, and money you are willing to spend enforcing it.
That's a very important factor, yes.
It doesn't matter how fancy the legal wording is - it is up to you,
as the copyright holder, to bring legal action


This is true as far as it goes. What is sought, though, is not "fancy
legal wording", but clarity of intent.

The wording is *extremely* important, since it must express, as
clearly and unambiguously as possible, the intent of the license
granter. Legal action and judicial interpretation will play their
part, but the clearer you can make the license text, the less
guesswork is needed on both sides to determine what is and is not
permitted in the license terms.

The GNU GPL, and the Expat license (née X11, MIT, 2-clause BSD, etc.),
are popular in part because the intent of their terms is expressed
very clearly.

--
\ "He who wonders discovers that this in itself is wonder." -- |
`\ Maurits Cornelis Escher |
_o__) |
Ben Finney
Nov 28 '05 #30

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
2883
by: madcap | last post by:
Hi, Our company was looking for contract programmer to develop an internet/intranet application. We were approached by a freelancer who have quite a lot experience and his resume was impressive. But he did mention that if we download php & mysql and use the application developed within our company, we should be fine and there will not be any legal issues. While some of the folks see this as a low cost solution, others are concerned...
8
4855
by: simo | last post by:
OK, so I'm at the stage where I want to make a choice between wxPython and PyQt. Currently I'm using wxPython mainly due to the fact that it has GPL Linux and Windows versions. I prefer Qt to wxWindows, but am confused with all the Windows licensing issues. For the moment this is just for my own tinkering and utility apps, but
9
2185
by: Daniel Keep | last post by:
I'm currently working on a Python program, and was wondering if it's possible to license the program, some associated tools, and a few other libraries I've written under the Python license. I had a look at the new PSF Python license on the list of OSI-approved licenses, but it makes numerous direct mentions of Python and the PSF. Is there any acceptable way to simply say that a particular source file is under the PSF license (like you...
18
2059
by: Antoon Pardon | last post by:
I have made a module derived from the Queue module deliverd with python 2.3. I would like to make this module (called tube) available for other people. However it is not clear to me how I can do this in accordance with the python license. First of all it seems I have to make a sumary of how my module differs from the original. Second it seems I have to include the following in
2
4386
by: Amine | last post by:
Hi ALL, I am trying to add a license agreement to my setup project. I have added the lic.rtf file to the setup project and added the "License Agreement" dialog to the setup. But when I run the installation, the license agreement is empty. Any ideas? Thanks a bunch A
122
7925
by: seberino | last post by:
I'm interested in knowing which Python web framework is most like Ruby on Rails. I've heard of Subway and Django. Are there other Rails clones in Python land I don't know about? Which one has largest community/buzz about it?
24
2877
by: invitro81 | last post by:
Hello I've recently learnt python and I do love it! I congratulate all those geeks who produce this nice language; well, because I could be called a nearby newbee I've decided to improve my abilities by writing my own nice editor with python; so I've to choose among all those GUI toolkit's available there.. But I've no idea which one I should use to start with.. I've read that tkinter seems to be the de facto standart in the pyhon...
2
1839
by: yawnmoth | last post by:
The PHP license states the following: 4. Products derived from this software may not be called "PHP", nor may "PHP" appear in their name, without prior written permission from group@php.net. You may indicate that your software works in conjunction with PHP by saying "Foo for PHP" instead of calling it "PHP Foo" or "phpfoo" As the author of something released under the PHP license, can I, as I see fit, just grant permission to an...
14
4513
by: Frank Rizzo | last post by:
I've been given a project to work with which involves connecting to MySQL from .NET 2.0 app. I've googled looked and there is a metric ton of different MySQL ADO.NET providers from different people. Is there a consensus on which one is the most stable, more or less supported and has good support for the standard MySQL features (e.g. stored procs)? Regards.
0
9564
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10068
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7603
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6841
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5498
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5627
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2970
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.