Judge to Oracle: A High Schooler Could Write rangeCheck
mikejuk writes with an update on the Oracle vs Google Trial. From the article: "One month into the Oracle v Google trial, Judge William Alsup has revealed that he has, and still does, write code. Will this affect the outcome? I think so! After trying to establish that the nine lines in rangeCheck that were copied saved Google time in getting Android to market the lawyer making the case is interrupted by the judge which indicates he at least does understand how straightforward it would be to program rangeCheck from scratch: 'rangeCheck! All it does is make sure the numbers you're inputting are within a range, and gives them some sort of exceptional treatment. That witness, when he said a high school student could do it — ' And the lawyer reveals he doesn't: 'I'm not an expert on Java — this is my second case on Java, but I'm not an expert, and I probably couldn't program that in six months.' Perhaps every judge should be a coding judge — it must make the law seem a lot simpler..."
From yesterday; the Oracle lawyer was attempting to argue that Google profited by stealing rangeCheck since it allowed them to get to market faster than they would have had they wrote it from scratch. Groklaw, continuing its detailed coverage as always, has the motions filed today.
From yesterday; the Oracle lawyer was attempting to argue that Google profited by stealing rangeCheck since it allowed them to get to market faster than they would have had they wrote it from scratch.
Because 5 seconds make all the difference.
Obviously this competent, experienced jurist should have recused himself because of this conflict of interest.
Give me Classic Slashdot or give me death!
Apparently, you are stupid enough to take a Judge's dismissive comment to the plantiffs as an absolutely specific assessment on the population's programming skills. Perhaps you are the moron here?
Pretty much this. Half the people on slashdot could have written it when they were in Elementary School.
AccountKiller
I think I'm beginning to understand why Oracle has chosen to sue, rather than innovate, they're idiots and lazy to boot! :)
For those interested: (from http://news.ycombinator.com/item?id=3940683)
From OpenJDK:
private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) {
if (fromIndex > toIndex)
throw new IllegalArgumentException("fromIndex(" + fromIndex +
") > toIndex(" + toIndex+")");
if (fromIndex arrayLen)
throw new ArrayIndexOutOfBoundsException(toIndex);
}
From Google:
private static void rangeCheck(int arrayLen, int fromIndex, int toIndex) {
if (fromIndex > toIndex)
throw new IllegalArgumentException("fromIndex(" + fromIndex +
") > toIndex(" + toIndex+")");
if (fromIndex arrayLen)
throw new ArrayIndexOutOfBoundsException(toIndex);
}
}
Here's a news flash for you: complete idiots can (and do) program. The ability to code is a piss poor measurement of intelligence.
Has nothing to do with age. I had my first PC when I was 16. First computer course in school was at 17 ( no programming just basic stuff ). I officially started coding during my second year of university, I was 19! But if I ever knew it existed when I was younger and had access to a PC I would have coded at that age. Some people simply don't have access or don't know!
Reading that summary made me feel like I was taking crazy pills. So many mixed tenses. Could someone clean that shit up for readability?
Fore chrissakes, anyone who has been writing any degree of code for more than a few years has implemented a range check function, and whatever the language C, C++, Java, C#, BASIC, 80x86 assembler, they all basically look the same. If this is truly what Oracle's case boils down to, then they literally have nothing, and this comes out looking no different than what SCO's claims against Linux ended up being. It's fucking ludicrous. To claim that somehow a nine line range check function gave Google some vast market edge to my mind breaks credibility. I'm guessing this is pointing pretty heavily towards Oracle being handed their balls on a platter over this.
The world's burning. Moped Jesus spotted on I50. Details at 11.
What does it matter how easy the code was to write? And if it was so easy why did google need to copy it?
I tried to submit this over the weekend but it wasn't selected. http://www.wired.com/wiredenterprise/2012/05/google-oracle-decompile/
As someone who really likes Java and Google I don't like this lawsuit one bit.
Sun created Java and mostly gave it away for free except for the mobile part which they were licensing to create revenue. Sun and Google couldn't come to terms regarding licensing and Google decided to just make it themselves.
Sun didn't seem to care, or didn't have the money/will to fight it. Then comes Oracle.
Please resolve this amicably soon. I don't like it when mommy and daddy fight.
What a colossal waste of money !
Oracle and Google waste money on lawyers on such silly functions instead of spending the money on building more useful technology.
We as users are the only losers in this non-sensical fight.
And you wrote that comment without once referring to PHP. Bravo!
Learning HOW to think is more important than learning WHAT to think.
Unfortunately, when you did that, you violated this patent, so all the proceeds of your patent have to go to those guys.
I am officially gone from
It's a range check function. They all look largely the same.
The world's burning. Moped Jesus spotted on I50. Details at 11.
Of course it's an exact 1:1 copy - the guy who wrote it gave it to both Sun AND Android. And if you've been following the trial, Sun never registered a copyright on that specific function.
Oracle is *SO* screwed.
Let's call it what it is, Anti-Social Media.
Ok, let's have a contest. Gather a bunch of high schoolers who have some idea how to program in Java, give them the spec for rangeCheck, and see how long it takes them to write it. The winner takes the prize equal to the damages Oracle is asking for. Bonus points if completed in less than 15 minutes.
No. Not even a little.
If the judge's statement is even a half-truth, the code in question checks a number, and passes it somewhere if it's a good number.
That is what all goddamn code does. A dumb American high schooler could accomplish that in about twenty minutes if you refused to let them leave until they did, because if you aren't doing that, you haven't written a program! A seven year old could probably do it faster; they haven't "learned" yet that they're dumb.
The lawyer is a disingenuous jackass who assumed that the judge, like him, would see a piece of code and assume it's an arcane fucking ritual without even trying to parse it. He deserves derision.
You don't need to register copyright. That is only for patents. Since the guy was working for Sun, all his work belongs to Sun/Oracle (unless otherwise stated in contract).
You idiot! You just caused $2.6bn of harm to Oracle!
Nowadays the recommended method of coding is to use variable names and function names that are self-descriptive. Given that, it seems to me that the code is pretty much the natural way anyone might write it. Google did say that they copied it, but really, how else might one write it? It's definitely the level of a first year programming course. The only interesting bits are (IIRC) the use of a ToIndex that is one more than the length, to eliminate a bit of arithmetic in the loop. So were they inclined to dissemble, Google could have claimed that it's just a coincidence.
It's easier to be a result of the past, but more fun to be a cause of the future! http://www.spacefinancegroup.com/
Not being able to write code doesn't mean you're stupid.
However, equating them means you're ignorant and arrogant.
You haven't had to register copyrights in the US for decades. Ever heard of the Berne Convention?
Slashcode ate that all up. F you /. my reply looks like shite also because of that and I can't be bothered to figure out how to post code without it being de-htmlized. Fix that, right after you fix UTF-8 mkay? I checked the link, in psuedocode its:
fromIndex has to be from 0 to toIndex
toIndex has to be from fromIndex to arrayLength
Anybody else see a bug? I donno their array implementation, but it looks like they are zero indexed arrays while also allowing a "array's length" equal to the to index value. Classic noob array out of bounds mistake staring at me.
Lets make up moron array
index 0 is first value
index 1 is second value
index 2 is third value
array length is 3, don't believe me, count the lines. I see 3 lines so thats a 3 long array.
Set fromIndex to 1 and toIndex to 3.
Does it pass fromIndex GT toIndex? Yes, indeed 1 GT 3 is false so no exception.
Does it pass fromIndex LT 0? Yes indeed 1 LT 0 is false so no exception is thrown.
Does it pass toIndex GT arrayLen? Yes indeed 3 GT 3 is false so no exception is thrown
I'm imagining the next step, something somewhere accesses index 3, runtime says WTF are you doing we're only defined up to 2 here, kaboom.
Now I don't do java so I donno if GT LT are actually impled GTE LTE in java, or there is some extra code or purpose of this such that array(toIndex) will never be accessed, or there is some extra error code detection that handles out of bounds array access.
I just thought it was pretty funny looking when looked at completely out of context.
Like when you see something like lparen x LT 2 vbar vbar x GT 10 rparen and you just know thats a bug because its obviously supposed to be AND not OR and they were probably trying to check an interval.
"Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
The issue of whether or not an API can be copyrighted has nothing to do with whether or not the judge is a programmer. APIs can be complex, and a lot of design may go into an API (what patterns to expose to programmers, etc.). Some programmers would not even object to APIs being copyrightable; many people use proprietary languages that are implemented by a single vendor, and would not even be affected by such a ruling (unless they also use Java).
Palm trees and 8
How would it not be?
There is nothing creative there. If you had a 100 people do it you would probably get lots of exact copies.
This guy was working at google when he wrote both by the way. Can you now steal your own copyright?
It's such a short and simple function that you could conceivably get two different people to write it and they'd end up with exactly the same code. The code reads:
There's nothing you could really remove or change about it. Sure, you could put the checks in a different order, but it wouldn't fundamentally alter the code.
Title says implies that the judge made the statement about the code being trivial. The judge makes no such claim -- instead, he says that a previous Google witness made that claim. This is a world of difference!
There is zero inventive value in that function. It is a completely standard approach that everybody writing containers has used hundreds of times.
This Judge seems to get it.
Most ACs are not even worth the keystrokes to insult them. Be generically insulted by this and ignored otherwise.
A truly exceptional lawyer.
For those of you who don't want to read all the transcript, this is what the judge said:
Oracle: I think the law with respect to infringer's profits, rather than damages, only requires us to show that there was a product that contained infringing material and that the product produced revenue, and then the burden shifts to the other side. If I'm wrong about that, I still think it's possible to demonstrate a nexus by showing that speed was very important to Google in getting Android out, and by copying they accelerated that.
Judge: We heard the testimony of Mr. Bloch. I couldn't have told you the first thing about Java before this problem. I have done, and still do, a significant amount of programming in other languages. I've written blocks of code like rangeCheck a hundred times before. I could do it, you could do it. The idea that someone would copy that when they could do it themselves just as fast, it was an accident. There's no way you could say that was speeding them along to the marketplace. You're one of the best lawyers in America, how could you even make that kind of argument?
Oracle: I want to come back to rangeCheck.
Judge: rangeCheck! All it does is make sure the numbers you're inputting are within a range, and gives them some sort of exceptional treatment. That witness, when he said a high school student could do it--
Cosplayers.net - The Cosplayers Network
Because it goes directly to the claims that it infringing it was the source of a substantial quantity of Google's profits.
The decompiled files are a different issue than rangeCheck. Google didn't decompile them, Noser -- a contractor for Google -- did, against the express prohibition in the Google-Noser contract, which required all original work or open-source code, and expressly prohibited copying or decompiling proprietary code.
I tried to submit this over the weekend but it wasn't selected. http://www.wired.com/wiredenterprise/2012/05/google-oracle-decompile/
"Judge William Alsup ruled that evidence presented during the trial had shown that Google infringed on Oracleâ(TM)s copyrights by decompiling eight Java files and copying them in their entirety for use with Android."
Espically when you consider that the programmer who "copied it" for Google is the programmer who originally wrote it for Sun....
"I do not agree with what you say, but I will defend to the death your right to say it"
You cannot copyright logic or match. Range check is pretty much what it is. The function/method exist before Java was first created. If someone don't know how to write code similar to this (at least in a simpler function) they shouldn't be holding a programming job.
Oracle's lawyers are being brilliant at what most lawyers do well: make insanely stupid arguments in order to run their clock as long as possible. It's not about justice. It's about that new yacht Oracle's head lawyer is saving up for. Those nine lines of code might be worth only $20, but the lawyers are making a killing.
Celebrate failure, and then learn from it - Nolan Bushnell
Google pretty much admitted it was copied - claiming it was accidental (the same guy wrote it for Oracle and later, Google). It has since been replaced. The jury - completely reasonably - found that it infringed. This is no longer in debate
The question is whether it is worth anything.
Google says no. Oracle's own expert witnesses said no. The judge - who has apparently revealed he is a programmer - says no. Oracle are arguing it's worth millions.
Someone is desperate here, and its not Google
That "Oracle lawyer" is none other than David Boies.
Set your phasers on "funky"!
I've been following the Oracle vs Google trial on other websites. Not sure why /. hasn't been covering it routinely. It's a pretty big deal not just to Google , but there are some issues being judged which may affect the programming community in general, down the road.
Alsup seemed to be a little perturbed with some of Oracle's ploys to captialize on the assumed "programming ignorance" of the jury. I haven't seen the RangeCheck code, but from Alsups statement it sounds like Oracle is trying to make a case from egregiously far-reaching evidence. One which basically means Oracle doesn't, and never had, much of a case to begin with.
Join the Slashcott! Feb 10 thru Feb 17!
What's logical and what's legal per the law ain't ever exactly been similar.
You must register copyrights if you wish to sue for punitive damages (eg: damages that are in excess of your loss because the intent of the damages is to send a message to anybody else who infringes on your copyright). If you have not registered your copyright, then you are only allowed to sue for compensatory damages (eg: the damages that have affected you directly).
In this case, Oracle has apparently not registered the copyright yet (there is nothing stopping them from doing so now or in the future and suing again), so they can only sue Google for compensatory damages, which in this case, as the judge pointed out, is over a rangeCheck function that literally every programmer that has ever done any non-negligible work has done. That means that the losses Oracle suffered as a result of Google's alleged infringement (9 obvious lines of an obvious function, to me, is not infringement) are likely zero or not worth suing over (being next to zero).
The only complications are that those 9 lines were written for Sun, and then for Google, by the same person. That is the only infringement theory available, because in the US you have to use clean-room reverse engineering; you cannot just hire somebody to reimplement something they did for your competitor (unless you're Microsoft and you are reimplementing the NTFS filesystem and the WinNT kernel as "brand new" and "original" technology). So, once Oracle registers the copyright, Google will need to hire somebody to clean-room reverse engineer the rangeCheck function, which should consist of the guy who originally wrote it staring at his code on one side of a wall and talking to another engineer (who has never seen the rangeCheck function code) writing code on another computer about the purpose of the function, possible tests and results for the function, and basically describing the function in every way except going through the algorithm explicitly.
So, once Oracle registers for the copyright, Google will do this (it would take, literally, more time to setup the clean room than to actually implement the function appropriately), and the Dalvik code, including the rangeCheck function will be available to anybody and everybody under whatever license Android is under (read: free to use and modify by anybody in the world). In other words, Oracle is damned if they do sue, and damned if they don't sue. They are losing, and will lose, this fight completely, but they will have shot themselves in the foot because now companies are afraid to use Oracle's Java over patent and copyright concerns (because Oracle is an asshole company run by an asshole). It's a good day to be IBM, Google, and Microsoft because your platforms are looking more legally bulletproof by the minute.
Having lived in a lot of places in the world, I can assure you that Americans are no stupider than people anywhere else.
Nowadays the recommended method of coding is to use variable names and function names that are self-descriptive. Given that, it seems to me that the code is pretty much the natural way anyone might write it.
It seems like someone would copy something like this because it's so simple enough that you would end up writing the same thing, so instead of spending the minute to do that you might as well just copy it and move on. Sort of like how Javascript lacks an Array.indexOf method to find a certain item in the array. I could spend the minute or two to write and test that loop myself, or I could spend 30 seconds looking it up on Google and using what I find there. Either way it's going to be the same thing, a loop that runs through the array looking for the item. The rangeCheck function is just a pair of if statements that compare one number with 2 others. As G.W. Bush would say, this isn't rocket surgery.
"Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
well, they'll certainly be very similar, they would probably end up the same if you instructed them to follow certain code conventions on variable names and the like.
To tell you the true, this gives us a clear hint about Oracle's future.
SCO did exactly the same thing in the past - but, honestly, I think SCO's lawyers did a better job.
Lisias@Earth.SolarSystem.OrionArm.MilkyWay.Local.Virgo.Universe.org
Because to do it differently would be to make the code worse. Go to your local hardware store, and look at the hammers. Despite many different manufacturers, they all look and function basically the same. The reason why is because mankind worked out the most efficient hammer design a long time ago and there is nothing left to innovate there.
Imagine how retarded competitor's hammers would have to be designed to get around a patent like the one Oracle is asserting here. This is why there is so much folly in patenting something so elementary, like 'slide to unlock', or a range check.
No need to be so pedantic. Regardless of the binary-ness of the situation, there is still always an analog component. For something to become binary there needs to be a threshold, a majority has it's threshold set to 50%. If one then passes the threshold, but barely, then one could say that there is "barely a majority". This concept can be extended to vast majority (i.e. ~75%) and what I meant with vast vast majority is that some percentage (well over 50%) of Americans fall into that category. Probably asymptotically approaching 100% given the way the World populace is headed...
Btw, not all programmers are computer science/information theory types. There are those of us who are real electrical engineers who realize that a transistor has infinite states and it is only a simplification that we see it as binary; greatly reducing the complexity of computer style circuit design.
timeo Danaos, et dona ferentis
bool rangeCheck(int value, int lowerBound, int upperBound)
{
return value >= lowerBound && value <= upperBound;
}
So, Oracle is suggesting that Google would rather copy something like this to save time than spend the thirty seconds to type it out themselve? OK, sure, the Java one is 9 lines long, not one line long, because it has some exception handling, but seriously...
It's well within the grasp of most middle schoolers, and it wouldn't take long to find an elementary school child who could write it ;-)
And the other half coulda banged out the code in binary using a toy xylaphone in pre-school.
Random Thoughts From A Diseased Mind (Not For Dummies)
I know right.
Why I bet that half of the population of America is below average even.
I wanna know whether David Bowie could programs those nine lines faster than David Boies.
My first Journal Entry ever, in 8 years! http://slashdot.org/journal/365947/aphelion-scifi-fantasy-horror-poetry-webzine
You sir, are incorrect. By copying this software that would have taken a lawyer 6 months to write, they were able to gain an unfair 32 seconds on the rightful coder Oracle.
by Mike Buddha -- Someday the mountain might get him, but the law never will.
J2ME is a pretty feature-limited version of Java. It certainly was never going to be suitable on the mid to high end smartphones. Pretty much every smartphone out there now is perfectly capable of running the full-blown JRE out of the box. In other words, with or without Dalvek, mobile Java editions are a fading proposition.
The world's burning. Moped Jesus spotted on I50. Details at 11.
SCO had the same lawyer.
lame troll attempt? patents have to describe a process that isn't obvious. range checkers for any language have a very limited number of ways they could be implemented efficiently, and are thus obvious.
insensitive clod overlords obligatory xkcd car analogy russian reversals whoosh pedant fanbois ftfy in 3...2...1..PROFIT
To tell you the true, this gives us a clear hint about Oracle's future.
SCO did exactly the same thing in the past - but, honestly, I think SCO's lawyers did a better job.
In what way? Oracle is the 2nd biggest software house on the planet, the clear leader in several verticals and makes and/or sells literally hundreds of products. Which of these things in even a remote way, describes SCO?
If privacy had a tombstone it would read "We did it for your own good" . -- John Twelve Hawks
There are all kinds of majorities defined for things like voting for laws in parlament. Some types of laws require bigger majority, one could say a vast majority, to be approved. A programmer should be aware of these real-world situations and code appropiately.
This case is about how Oracle can monetize Java. They spent 6 billion dollars on Sun and what Google is doing without direct compensation to Oracle devalues Java. This is the first step of many by Oracle to force profits from their purchase. Ellison is fairly adept at making money, and doesn't seem concerned about whether or not he is liked. This first case of making the Sun purchase pay for itself is not going in his favor currently.
You're talking about a different copyright infringement.
In the rangeCheck instance, there was actually no copying involved. The author of the piece made the mistake of assigning copyright to Sun for the work after submitting it for inclusion in Java. He later then used the same code - that he'd written - into the Android libraries.
Let that be a lesson to anyone who is willing to assign copyright for unpaid work to a corporation. Even if it's a nice friendly, non-evil one like Sun. The non-evil ones sometimes get eaten by the thoroughly evil.
You are not alone. This is not normal. None of this is normal.
Which is exactly why Boies says he couldn't program it in 6 months. He needs more billable hours than that! Only chumps like poor high schoolers would write it more quickly.
Actually, its not the "the same guy wrote it for Oracle and later, Google". It wasn't written twice.
Its that the Google employee who wrote it on his own time both included it in the Android source tree and contributed to to the OpenJDK (including the required copyright assignment.)
Actually, Oracle's pretty much given up on that, too. In a joint stipulation filed today, Oracle has agreed to waive both jury trial and its claim for actual damages and infringers profits on the copyright claims for which liability has already been found if the API SSO issue isn't resolved in its favor, and accept statutory damages for rangeCheck and the decompiled files.
I have the feeling that the judge may even order them run though a meat grinder before returning them to Oracle on said platter.
Why is there an "insightful" mod and why isn't it "-1"? If I wanted insight, I wouldn't be reading
Never hire?
Oracle's lawyer is David Boies, who is widely reputed to be the best lawyer around today. He did Microsoft vs United States, he did Justice Department vs IBM, he did Bush vs Gore (!!!!!!!!!!!!).
GFA/M/S d-- s: a--- C++++ UBL++$ P+ L+++ !E- W++ N+ !o K- w--- !O !M !V PS++ PE Y+ PGP+ t+++ 5- X+ R tv@ b++ DI++++ D+ G
I know absolutely jack shit about programming, but I am fairly certain that if I went to school for six months to learn how to program that it would be trivial for me to write that function.
The concept is just so simple that even I get it.
Don't know something? Look it up. Still don't know? Then ask.
From a copyright point of view, yes, there was copying because the author of the code was not the copyright holder. From an actual copying point of view, there wasn't, because the author of the code was the author of the original.
You are not alone. This is not normal. None of this is normal.
He knows. I know. Everybody knows.
The point is that if Orible lose, Larry's armada will sally forth and sink the shyster's new toy.
Confucius say, "Find worm in apple - bad. Find half a worm - worse."
Sort of like wml. Before it could fix bayonets and form a defensive square Moore's cavalry had ridden right over it.
Confucius say, "Find worm in apple - bad. Find half a worm - worse."
J2ME is a pretty feature-limited version of Java
Well, having spent a number of years watching J2ME, I'd say the problem wasn't that J2ME was feature limited. I had things I could do even in MIDP that were quite useful, to say nothing of the Personal Basis Profile.
As an early app developer, we had two concerns with J2ME: how to get our app in our users' hands, not getting tied to a particular carrier (and thus losing access to corporate customers who used different carriers) or even handset. You got your J2ME SDK from the handset vendor and the handset vendors were the mobile carriers' slaves. The same phone would have different capabilities on different carriers because they deleted features the carriers didn't want (for price positioning or because the features conflicted with the carriers' laughable ambitions to become content companies).
When Apple came along with the iPhone, they did three important things. First, they didn't take any crap from the carrier (AT&T), they defined the product themselves. Second, they made it possible to run an app on any iOS device (originally just the iPhone, but later the iPod Touch too). Third, they had a simple mechanism for getting your app into the customer's hands. That made it possible to create a successful product for iOS in a way it had never been possible in J2ME.
I believe the fact that it Apple made it easy to sell apps for iOS is what is responsible for the success of attracting developers to the platform early on. It wasn't some kind of Apple UI secret sauce, although touch screens standard was a big advance. J2ME could have been an entrenched mobile standard years before the iPhone came out, if Sun had only taken steps to create a market (not necessarily an app store) for developers to target.
Then Android came along, and it was everything I'd ever hoped for: well thought out, robust, open source, feature-rich, vendor independent, even *app store* independent. But by then I was out of the business.
Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
Please. Boies was the lead lawyer in the Microsoft monopoly trial - against Microsoft. He was one of the best trial lawyers to break up illegal monopolies then.
Lawyers argue for the side that is paying for them. Just like everyone else - you do the work you're paid to do.
On the contrary, they could be negatively affected if all those proprietary languages which are locking them in cannot be re-implemented under the force of law. Those proprietary languages right now have to stay competitive knowing that high prices would encourage an alternative to enter the market. To put it another way, if Microsoft doubled the price of Windows, they might retain enough users to make more money, but they'd also risk a flight to WINE, and I guarantee you a lot of those potential customers, particularly large businesses, would look at moving away from a dependency on Win32/Windows. Now imagine if Microsoft didn't have to worry about the competitive pressure of WINE, and no one else could legally duplicate Win32?
Now, of course, Microsoft has other competitive pressures, and their price choice is probably not dominated by the potential for competition, but for niche programming languages and environments, I would guess they are. My friend, an economics major, was faced with the potential of having to spend $500 for a single user license for some very niche regression analysis software that had a particular API and programming language. If they can get away with charging college students and academics $500, they must not be overly concerned with competition. A ruling on the copyrightability of APIs in favor of Oracle would make it so they wouldn't have to worry about any competitors claiming "compatibility" with their software.
Bzzt. Wrong.
No, not at all. Josh Bloch worked for Google as Chief Java Architect (not for Noser) when he wrote rangeCheck (and still works for Google in the same role.) You seem to be confusing rangeCheck with the 8 decompiled files, which were done by Noser Engineering AG. Those are the two independent issues on which copyright infringement has been found in Oracle v. Google.
Because of the complexity of the case and the amount of time being spent on discussing programming concepts, the judge decided to take some personal time and learn how to program. In other words, he learned how to code while he was adjudicating the case.
I am impressed by somebody in a position like his taking that effort, and it shows not only the intelligence of the judge but that he was trying to apply the principles he was learning about in the course of the trial. I don't think there is any indication that the judge had studied or knew much about coding prior to the trial, but it does show that he is trying to make extra effort to understand the issues involved.
I admired the extra effort that Judge Jackson did with the DOJ v. Microsoft case where he went out of his way to explicitly try to remove Internet Explorer from his computer and noted how difficult Microsoft had made the task. I could name a few other examples but it is a rare judge to make that kind of effort.
ummm...I wouldn't submit this for peer review just yet.
Misreading on several points.
Your post ws posted at 2:57pm on Wednesday, May 16; the article you link to was posted on (and transcribes court discussions that occurred on) Tuesday, May 15. So, "today" probably isn't the word you are looking for.
More importantly, you've confused Oracle's lawyer with Google's. I've broadened the excerpt that you provided to include the part that shows who is talking (material that was excluded from your excerpt is bolded):
He's also SCO's lawyer. He doesn't actually give a damn about the tech, its about the money. Which is why he made SCO pay millons up front. That way, he gets rich no matter how stupid he has to look in court. Seriously - subscribe to groklaw and you'll be amazed how US law works. Much like constant code refactoring by idiots.
C|N>K