Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:AGPL, legally weaker than a EULA. (Score 4, Insightful) 53

In addition to the terms of the GPL, You violate the AGPL when you (1) copy the source code and (2) modify it (3) host the modified version over the network and (4) don't provide source for your modifications. Since by default (1) is a copyright violation if there isn't an explicit permission to do so, if you say you don't agree to the AGPL, then you don't have permission to do (1) either. So if you do the above, you can't claim that you didn't agree to the terms of the AGPL without acknowledging copyright infringement.

Comment Re:GPL not appropriate for taxpayer funded project (Score 1) 116

The issue is that a license like the GPL is discriminatory to certain business models, namely those that keep source code changes private.

Huh, the GPL doesn't forbid you from keeping changes private. It forbids you from distributing changes without source. If you don't distribute, there is no problem.

And there is no business model so your point is not on topic. ;-)

Sure there is. It's part of many organisations' business models. To take one heavy-handed example, Google. They grab Linux-based source code, create their own internal distribution, and use it to power internal development and massive servers that are turning in a pretty penny.

Comment Re:GPL not appropriate for taxpayer funded project (Score 1) 116

Huh, the GPL doesn't forbid you from keeping changes private. It forbids you from distributing changes without source. If you don't distribute, there is no problem.

Furtheremore, Whatever, GPL isn't the only free license. Use a BSD-style license or any other license without copyleft.

I still don't understand how an agency of the US government can claim copyright, though. Usually what happens is that the government subcontracts to individuals and are then bound by the copyright claims of those individuals. How is NASA getting away with this?

Comment Wesnoth (Score 1) 329

Wesnoth has some of the most beauutiful C++ out there (yes, there is such a thing as beautiful C++). If C++ is what you want to work with, I recommend you start looking at their stuff. Play the game first, of course, so you can start to get a feel for what sorts of things it does. Then you should be able to start guessing where things in the code may be. Step through the code with a debugger too, of course. I find that "ok, I'm gonna try to make the code do this", i.e. starting with a specific goal, setting breakpoints, and stepping through the code is the best way to get comfortable with an unfamiliar codebase, no matter its size.
GNU is Not Unix

Submission + - Emacs violates GPL since 2009 (gnu.org)

Digana writes: Emacs, one of GNU's flagship products and most famous software creation of Richard Stallman, has been discovered to be violating the GPL since 2009-09-28 by distributing binaries that were missing source. The CEDET package, a set of contributed files for giving certain IDE functionality related to static code analysis, has distributed files generated from bison grammars without distributing the grammar itself. This happened for Emacs versiones 23.2 and 23.3, released during late 2009, and has just been discovered.

Slashdot Top Deals

Remember, UNIX spelled backwards is XINU. -- Mt.

Working...