We've filed a lawsuit against GitHub Copilot
111–120 of 824 posts
Re: We've filed a lawsuit against GitHub Copilot
#112The only people who gain out of class lawsuits are the lawyers. This person (a lawyer) saw an opportunity to make money and jumped on it like a hungry tiger on fresh meat.
Re: We've filed a lawsuit against GitHub Copilot
#113If Kasparov uses chess programs to be better at chess maybe we can use copilot to be better developers?
Also, anyone, either a person or a machine, is welcome to learn from the code I wrote, actually that is how I learnt how to code, so why would I stop others from doing the same?.
Re: We've filed a lawsuit against GitHub Copilot
#114Can anyone with Copilot access give a short summary of its response to the prompts: function force=Gmmr2Array(mass1, mass2) and function [force, torque]=pointMatrixGravity(array1,array2) ? I'd love to know if some of my GPL v3 code [1, 2] has landed in the training set [1] https://github.com/4kbt/NewtonianEotWashToolkit/blob/master/... [2] https://github.com/4kbt/NewtonianEotWashToolkit/blob/master/...
function force=Gmmr2Array(mass1, mass2) {
var G = 6.67408e-11;
var m1 = mass1;
var m2 = mass2;
var r = 1;
var force = G \* m1 \* m2 / (r \* r);
return force;
}function [force, torque]=pointMatrixGravity(array1,array2) {
var G = 6.67408e-11;
var m1 = array1(1);
var m2 = array2(1);
var r = norm(array1(2:4)-array2(2:4));
var force = G \* m1 \* m2 / (r \* r);
var torque = cross(array1(2:4)-array2(2:4), force);
return [force, torque];
}Re: We've filed a lawsuit against GitHub Copilot
#115Earlier quoted context omitted.
So, if i made napster 2.0 and said that it is your job to make sure that you do not download anything copyrighted, that would be ok?
Now, IANAL, but iirc, that is all 100% okay and legal. In fact, I can even download copyrighted music and movies without issue. So, I don't even need to make sure I don't download anything under copyright. The issue isn't downloading copyrighted stuff. Rather, it's making available and letting others download it. That was where you got in trouble.
People used to get busted from buying bootleg VHS and DVDs on the street before P2P filesharing was a common thing. Then, early on, people were sued for downloading copyrighted files before rightsholders decided to take a different legal strategy to go after sharers and bootleggers.
Re: We've filed a lawsuit against GitHub Copilot
#116Earlier quoted context omitted.
That demonstrates that copyright laws are already stifling innovation.
That's the goal. To stifle using someone else's work. Like, copyright laws are also stifling my innovative business creating BluRays of Disney films and selling them on Amazon.
OpenAI did a dirty job though judging by the cases of the model just reproducing code to the comment, so I can understand why one would criticize this specific project.
Re: We've filed a lawsuit against GitHub Copilot
#117The only people who gain out of class lawsuits are the lawyers. This person (a lawyer) saw an opportunity to make money and jumped on it like a hungry tiger on fresh meat.
Re: We've filed a lawsuit against GitHub Copilot
#118On page 18, they show Copilot produces the following code: >function isEven(n) { > return n % 2 === 0; >} They then say, "Copilot’s Output, like Codex’s, is derived from existing code. Namely, sample code that appears in the online book Mastering JS, written by Valeri Karpov." Surely everyone reading this has written that code verbatim at some point in their lives. How can they assert that this code is derived specif…
They determined the other `isEven()` function was cribbed from Eloquent Javascript because of matching comments. I wonder if the complaint just left off telltale comments from that Mastering JS one?
Re: We've filed a lawsuit against GitHub Copilot
#119On page 18, they show Copilot produces the following code: >function isEven(n) { > return n % 2 === 0; >} They then say, "Copilot’s Output, like Codex’s, is derived from existing code. Namely, sample code that appears in the online book Mastering JS, written by Valeri Karpov." Surely everyone reading this has written that code verbatim at some point in their lives. How can they assert that this code is derived specif…
I wrote that exact function the other day, and I've never even heard of that book.
Re: We've filed a lawsuit against GitHub Copilot
#120Earlier quoted context omitted.
Say I produce a licensed library. Someone can pay me $5/year per license. I keep the code private and compile the code before sending it to customers. If you have co-pilot trained on my code base (which was private), that then reproduces near replica's of my code then they sell it for $5/year... Well, I'm eligible for damages.
> that then reproduces near replica's of my code Copying a few lines is not the same as copying the whole thing. Sharing quotes from a book is not copyright infringement.