Google faces $9 billion in damages after ripping off Java in Android

1246710

Comments

  • Reply 61 of 189
    gatorguygatorguy Posts: 24,176member
    auxio said:
    gatorguy said:
    auxio said:
    auxio said:
    bkkcanuck said:
    I disagree with the Federal Court.  

    API is just the interface (e.g. add(operand1, operand2) - i.e. no implementation to that - and implementation is basically 99%+ of the code).

    Being able to use an API for compatibility purposes is no different than for example Open Office being able to implement the file format for Word.  The need for competition outweighs the argument as an API protected IP.   Google's implementation uses the API (common) and then the implementation code which is probably more than 99% of the code base.  As long as Google did not copy the code itself the API itself should be fair use.  Languages and APIs should not be able to be protected as API.  

    The court has already previously ruled that you cannot protect interfaces for hardware for the purposes of locking out the competition on things like printer cartridges etc.  An API is not much different than the software equivalent.  

    However, even if you are diehard Google hater - it's not clear whether copyrighting Apis ist a good idea.
    I don't think it is.  However, I also don't think that someone who knowingly and willingly tries to find a way around a technology licensing agreement for tremendous profit should go unpunished.
    Well if you think they shouldn't be copyrightable then you can't object to Google suing them.

    I think it's also important to put the work that goes into Apis into perspective. Yes they take creativity. But they are not usually created out fo thin air. The Java API is influenced by countless Apis before it such as C and C++. 

    Oracle itself has benefited from standing on the shoulder of Giants. I am not aware that they pay IBM for the SQL syntax (admittedly a language rather than API but clearly groundbreaking and which changed the database industry). All the companies that use Hadoop based their work on the original Google 2005 MapReduce paper that outlines MR and GFS (both of which Hadoop implements).

    Oracle stands out for being incredible litigious and greedy. We will see who will win the next round in this particular fight.
    Forget the world of business and who owns what company.  I just have one simple question: do you think what Andy Rubin and company did with Java is right?

    In regard to those cases you state, if there are clear cases of licensing infringement (or clear intentional loophole exploitation) there, then I think Oracle should be made to pay.  The same way I think that Google should pay for what was done with Java.  Regardless of the fact that Java is now open source to anyone, at the time, the intent of Sun was to allow open source usage of Java in educational/non-profit situations, but you had to take a license if it was bundled in a commercial product.  Which was pretty standard for the time -- Qt used this model as well.
    Business decisions are not dependent on morality as a general rule. So yes let's forget who owns the company.

    There's been lots of questionable moves over the years, the highest profile example off the top of my head being Apple's use of Xerox IP and "hard work" design. While it didn't turn out to be found illegal the argument could be made it just wasn't right, that the intent to take it without recompense was there.  Yeah some money changed hands but not for the usage that Apple put it to IIRC.  After all the court filings from Xerox were over with it wasn't actually illegal tho, even if it might not have been "right" in the view of some folks. 
    https://www.nytimes.com/1989/12/15/business/company-news-xerox-sues-apple-computer-over-macintosh-copyright.html
    Are there similarities here?
    Opening the doors to your technology company (Xerox), giving someone a demo of the technology you're working on without an agreement in place, and having them go off and invest 5 or 6 years + a lot of money creating their own, fairly different version of it (including designing custom hardware) is pretty different than having someone willfully look for a loophole in your software licensing agreement (and exploit open source projects to do so with minimal investment of time, effort, or ideas).
    So that you're completely OK with. No issue with Android being influenced by Apple design choices then? It's certainly a fairly different version of it, requires years of work and a lot of money, and includes developing custom hardware. 
    edited March 2018
  • Reply 62 of 189
    dysamoriadysamoria Posts: 3,430member
    bkkcanuck said:
    gatorguy said:
    The argument Google was making in this latest appeal was pretty thin, since they were relying in part on arguing "interoperability" being a rationale. In actual practice there was limited interoperability. I expected they'd lose this particular court case, but do not expect monetary damages from a follow-up retrial anywhere near the $9B that Ellison would like. He couldn't have expected that level of profit when he bought Sun years after Google introduced Android anyway which is why Sun sold so cheap. So in reality Ellison suffered no loss at all from Google not paying a licensing fee to the previous owner.
    I have been in the industry for close to 35 years... and although things have changed -- early on it was always understood generally that languages themselves could not be protected IP -- only the implementation of the compiler.  

    As far as I am concerned this is a very slippery slope since protecting languages, protecting APIs only leads to death of competition.  I have worked on projects that probably contains huge numbers of lines of code (some of it good, much of it bad and duplicated) and protecting a language and protecting an API would only lead to both the compiler being made a violation of IP, but also language translators, and things like Wine, of course, would be illegal since it implements APIs to run Windows Applications on Linux...  

    I don't have much love for Google - but I am worried about the long-term consequences.
    The death of competition is already a state we've mostly passed by. Unless you mean the death of competition between the few monstrous corporations playing with 99% of the wealth and all of the market. Sure, they're still struggling to get each other's piece of the pie.
  • Reply 63 of 189
    steven n.steven n. Posts: 1,229member
    bigmushroom said:
    This is fanboy propaganda in the same way that the article deliberately blurred the distinction between Apis and implementing code.

    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    Finally, Apple stands on the shoulder of Giants like anyone else. Objective c is based on c and it's standard is heavily influenced by the c library. Swift's library is also obviously based on the countless libraries that came before. This is taken for granted: I have never seen the creators of C go around and Sue anyone I sight for repurpursing their libraries.

    Sure, Google "only steals". I guess that's why these hadoop companies reimplemented MapReduce and the Google file system from the seminal 2005 paper and created Hadoop out of it. That's the reason why kubernetes (developed by Google) has become the container orchestrator of choice. That's why tensor flow is opensourced by google and the tool of choice for deep learning. That's why Node uses the V8 JavaScript engine to develop a huge ecosystem around it. That's why countless academics use syntaxnet (Google too) for creating syntactic parse trees. Etc. Etc.

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    While Objective-C is a pure superset of "C" saying Objective-C is heavily influenced by the "C" library is a 100% false statement.

    id fileData;
    fileData = [NSString stringWithContentsOfFile:@"MyDataFile];

    is very different (API wise) than:

    FILE *inFile;
    unsigned char *fileData;
    size_t fileSize;
    inFile = fopen("MyDataFile", "r");
    fseek(inFile, (size_t)0, SEEK_END);
    fileSize = ftell(inFile);
    fileData = malloc(fileSize + 1);
    fseek(inFile, (size_t)0, SEEK_START);
    fread(fileData, fileSize, 1, inFile);


    cornchipHabi_tweethlee1169jony0manfred zorn
  • Reply 64 of 189
    SpamSandwichSpamSandwich Posts: 33,407member
    Coming soon: Google Chrome Phones
    cornchipwatto_cobra
  • Reply 65 of 189
    auxioauxio Posts: 2,717member

    gatorguy said:
    Of course you wouldn't want to code around the agreement. You'd code around the patented part of the technology to try and avoid infringing if you don't want to pay the inventor, and I'm sure that's what you've done before if you've been at it very long. No matter how you get there you're building on someone else's hard work while refusing the originator profit for it.

    How many times have you seen some good, inventive and hopefully profitable 3rd party feature "copied" in essence by Apple or whoever and integrated into their own software while the person/company with the original idea withers away on the vine? All quite legal as long as the surgery is good.
    Your whataboutism and both-sidesing are phony distractions from the fact that:

    Google stole significant Java code available under the GPL, then distributed it in violation of that license to make money without paying a licensing fee for Java, without following Suns' licensing rules for Java (stealing control of Sun's platform), and also without respect for the GPL. 

    Apple didn't steal code, it didn't steal somebody else's platform, and it didn't violate the GPL just because it might have been convenient for a large company wanting to run things without doing the work to earn or acquire ownership. 

    Google also stole content from Yelp, stole content from authors, stole content from news sites, etc and then repressed lawsuits until it achieved monopolistic control over advertising on the web, and everyone just had to agree that it was okay Google scraped their work because they were being given traffic by Google. 

    Google also helped its licensees steal clearly patented ideas from iOS, and only escaped there because it was giving away the support of its theft. 

    When Apple acquired former Palm talent to build its notification system (which Google had simply ripped off for Android), Android fans accused Apple of taking Google's (unprotected) ideas. But that wasn't true, Google had no ownership, and Apple had been working on it for just as long.

    Apple didn't steal code from Android. It didn't steal Unix code, and it worked to make sure its implementation of BSD was legitimate. Apple has had IP disagreements with Nokia, Qualcomm and many others, but those didn't result from Apple deciding to steal their work and just not pay for it because it was a larger company. Further, Apple has shown a willingness to pay the licensing costs of agreements, even when they are not exactly fair. 

    Google's culture is all about stealing. It stole its first business model, stole its primary platform, attempted to steal iPhone and iPad, and it steals content with abandon. That's because it's made up largely of Microsoft people, which shared the same steal first, pay later ethos. 

    Your consistent, slavish support for Google reflects the same sort of amorality that often takes the shape of hypocrisy as you try to paint Google as perfectly righteous and (at the same time) the rest of the world as "just as criminal." 



    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    ...

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    And twisting the argument about Google exploiting Java to gain a mature app development ecosystem for free into "ownership of human capital" is just plain misdirection.

    The fact of the matter is that Android gained an unfair competitive advantage in the mobile market by not paying for a Java license when everyone else was (and had to include that cost in their mobile devices).  Even outside of the iOS vs Android marketshare war, one could argue that it was a significant factor in devices based on Android taking significant marketshare from Blackberry (and other smaller mobile manufacturers).
    Habi_tweetwatto_cobrahlee1169propodjony0docno42habi000
  • Reply 66 of 189
    gatorguy said:
    Of course you wouldn't want to code around the agreement. You'd code around the patented part of the technology to try and avoid infringing if you don't want to pay the inventor, and I'm sure that's what you've done before if you've been at it very long. No matter how you get there you're building on someone else's hard work while refusing the originator profit for it.

    How many times have you seen some good, inventive and hopefully profitable 3rd party feature "copied" in essence by Apple or whoever and integrated into their own software while the person/company with the original idea withers away on the vine? All quite legal as long as the surgery is good.
    Your whataboutism and both-sidesing are phony distractions from the fact that:

    Google stole significant Java code available under the GPL, then distributed it in violation of that license to make money without paying a licensing fee for Java, without following Suns' licensing rules for Java (stealing control of Sun's platform), and also without respect for the GPL. 

    Apple didn't steal code, it didn't steal somebody else's platform, and it didn't violate the GPL just because it might have been convenient for a large company wanting to run things without doing the work to earn or acquire ownership. 

    Google also stole content from Yelp, stole content from authors, stole content from news sites, etc and then repressed lawsuits until it achieved monopolistic control over advertising on the web, and everyone just had to agree that it was okay Google scraped their work because they were being given traffic by Google. 

    Google also helped its licensees steal clearly patented ideas from iOS, and only escaped there because it was giving away the support of its theft. 

    When Apple acquired former Palm talent to build its notification system (which Google had simply ripped off for Android), Android fans accused Apple of taking Google's (unprotected) ideas. But that wasn't true, Google had no ownership, and Apple had been working on it for just as long.

    Apple didn't steal code from Android. It didn't steal Unix code, and it worked to make sure its implementation of BSD was legitimate. Apple has had IP disagreements with Nokia, Qualcomm and many others, but those didn't result from Apple deciding to steal their work and just not pay for it because it was a larger company. Further, Apple has shown a willingness to pay the licensing costs of agreements, even when they are not exactly fair. 

    Google's culture is all about stealing. It stole its first business model, stole its primary platform, attempted to steal iPhone and iPad, and it steals content with abandon. That's because it's made up largely of Microsoft people, which shared the same steal first, pay later ethos. 

    Your consistent, slavish support for Google reflects the same sort of amorality that often takes the shape of hypocrisy as you try to paint Google as perfectly righteous and (at the same time) the rest of the world as "just as criminal." 



    This is fanboy propaganda in the same way that the article deliberately blurred the distinction between Apis and implementing code.

    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    Finally, Apple stands on the shoulder of Giants like anyone else. Objective c is based on c and it's standard is heavily influenced by the c library. Swift's library is also obviously based on the countless libraries that came before. This is taken for granted: I have never seen the creators of C go around and Sue anyone I sight for repurpursing their libraries.

    Sure, Google "only steals". I guess that's why these hadoop companies reimplemented MapReduce and the Google file system from the seminal 2005 paper and created Hadoop out of it. That's the reason why kubernetes (developed by Google) has become the container orchestrator of choice. That's why tensor flow is opensourced by google and the tool of choice for deep learning. That's why Node uses the V8 JavaScript engine to develop a huge ecosystem around it. That's why countless academics use syntaxnet (Google too) for creating syntactic parse trees. Etc. Etc.

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    There was significant value in keeping this easy for developers already familiar with Sun’s platform ... hence the theft. Google was not being magnanimous towards third parties here, they knew if they took the other route (did the whole thing themselves) they would lose the support of all the developers for the platform Sun spent hundreads of millions and years and years developing. I like Googles search product and will continue to use it, but at the end of the day they are in fact an evil, or at best amoral company, who feel free to abuse their market position against anyone would cannot afford to defend themselves. 
    Habi_tweetwatto_cobrahlee1169jony0
  • Reply 67 of 189
    gatorguygatorguy Posts: 24,176member
    auxio said:

    gatorguy said:
    Of course you wouldn't want to code around the agreement. You'd code around the patented part of the technology to try and avoid infringing if you don't want to pay the inventor, and I'm sure that's what you've done before if you've been at it very long. No matter how you get there you're building on someone else's hard work while refusing the originator profit for it.

    How many times have you seen some good, inventive and hopefully profitable 3rd party feature "copied" in essence by Apple or whoever and integrated into their own software while the person/company with the original idea withers away on the vine? All quite legal as long as the surgery is good.
    Your whataboutism and both-sidesing are phony distractions from the fact that:

    Google stole significant Java code available under the GPL, then distributed it in violation of that license to make money without paying a licensing fee for Java, without following Suns' licensing rules for Java (stealing control of Sun's platform), and also without respect for the GPL. 

    Apple didn't steal code, it didn't steal somebody else's platform, and it didn't violate the GPL just because it might have been convenient for a large company wanting to run things without doing the work to earn or acquire ownership. 

    Google also stole content from Yelp, stole content from authors, stole content from news sites, etc and then repressed lawsuits until it achieved monopolistic control over advertising on the web, and everyone just had to agree that it was okay Google scraped their work because they were being given traffic by Google. 

    Google also helped its licensees steal clearly patented ideas from iOS, and only escaped there because it was giving away the support of its theft. 

    When Apple acquired former Palm talent to build its notification system (which Google had simply ripped off for Android), Android fans accused Apple of taking Google's (unprotected) ideas. But that wasn't true, Google had no ownership, and Apple had been working on it for just as long.

    Apple didn't steal code from Android. It didn't steal Unix code, and it worked to make sure its implementation of BSD was legitimate. Apple has had IP disagreements with Nokia, Qualcomm and many others, but those didn't result from Apple deciding to steal their work and just not pay for it because it was a larger company. Further, Apple has shown a willingness to pay the licensing costs of agreements, even when they are not exactly fair. 

    Google's culture is all about stealing. It stole its first business model, stole its primary platform, attempted to steal iPhone and iPad, and it steals content with abandon. That's because it's made up largely of Microsoft people, which shared the same steal first, pay later ethos. 

    Your consistent, slavish support for Google reflects the same sort of amorality that often takes the shape of hypocrisy as you try to paint Google as perfectly righteous and (at the same time) the rest of the world as "just as criminal." 



    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    ...

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    And twisting the argument about Google exploiting Java to gain a mature app development ecosystem for free into "ownership of human capital" is just plain misdirection.

    The fact of the matter is that Android gained an unfair competitive advantage in the mobile market by not paying for a Java license when everyone else was (and had to include that cost in their mobile devices).  Even outside of the iOS vs Android marketshare war, one could argue that it was a significant factor in devices based on Android taking significant marketshare from Blackberry (and other smaller mobile manufacturers).
    Yup a mind-blowingly bad decision. They could have had a perpetual license for $100K (IIRC), so no idea what the rationale was for cheaping out. Dumb stuff can come from very smart people.

    I doubt that would have made for more than a hill of beans when it came to Sun's remaining in business or not but at least they wouldn't have had to deal with Ellison since I doubt he would have had any interest in buying the shell of Sun as he did. He's certainly not been a good steward of Java. 
    edited March 2018 jony0habi000
  • Reply 68 of 189
    gatorguygatorguy Posts: 24,176member
    Coming soon: Google Chrome Fuchsia Phones
    :)
  • Reply 69 of 189
    melgrossmelgross Posts: 33,510member
    I recently read that the court is expressing extreme skepticism over Oracle’s valuation of Java. It’s very likely that if Google does lose this, the amount of money involved will be far less that what Oracle is demanding.
  • Reply 70 of 189
    auxioauxio Posts: 2,717member
    gatorguy said:
    auxio said:
    gatorguy said:
    auxio said:
    auxio said:
    bkkcanuck said:
    I disagree with the Federal Court.  

    API is just the interface (e.g. add(operand1, operand2) - i.e. no implementation to that - and implementation is basically 99%+ of the code).

    Being able to use an API for compatibility purposes is no different than for example Open Office being able to implement the file format for Word.  The need for competition outweighs the argument as an API protected IP.   Google's implementation uses the API (common) and then the implementation code which is probably more than 99% of the code base.  As long as Google did not copy the code itself the API itself should be fair use.  Languages and APIs should not be able to be protected as API.  

    The court has already previously ruled that you cannot protect interfaces for hardware for the purposes of locking out the competition on things like printer cartridges etc.  An API is not much different than the software equivalent.  

    However, even if you are diehard Google hater - it's not clear whether copyrighting Apis ist a good idea.
    I don't think it is.  However, I also don't think that someone who knowingly and willingly tries to find a way around a technology licensing agreement for tremendous profit should go unpunished.
    Well if you think they shouldn't be copyrightable then you can't object to Google suing them.

    I think it's also important to put the work that goes into Apis into perspective. Yes they take creativity. But they are not usually created out fo thin air. The Java API is influenced by countless Apis before it such as C and C++. 

    Oracle itself has benefited from standing on the shoulder of Giants. I am not aware that they pay IBM for the SQL syntax (admittedly a language rather than API but clearly groundbreaking and which changed the database industry). All the companies that use Hadoop based their work on the original Google 2005 MapReduce paper that outlines MR and GFS (both of which Hadoop implements).

    Oracle stands out for being incredible litigious and greedy. We will see who will win the next round in this particular fight.
    Forget the world of business and who owns what company.  I just have one simple question: do you think what Andy Rubin and company did with Java is right?

    In regard to those cases you state, if there are clear cases of licensing infringement (or clear intentional loophole exploitation) there, then I think Oracle should be made to pay.  The same way I think that Google should pay for what was done with Java.  Regardless of the fact that Java is now open source to anyone, at the time, the intent of Sun was to allow open source usage of Java in educational/non-profit situations, but you had to take a license if it was bundled in a commercial product.  Which was pretty standard for the time -- Qt used this model as well.
    Business decisions are not dependent on morality as a general rule. So yes let's forget who owns the company.

    There's been lots of questionable moves over the years, the highest profile example off the top of my head being Apple's use of Xerox IP and "hard work" design. While it didn't turn out to be found illegal the argument could be made it just wasn't right, that the intent to take it without recompense was there.  Yeah some money changed hands but not for the usage that Apple put it to IIRC.  After all the court filings from Xerox were over with it wasn't actually illegal tho, even if it might not have been "right" in the view of some folks. 
    https://www.nytimes.com/1989/12/15/business/company-news-xerox-sues-apple-computer-over-macintosh-copyright.html
    Are there similarities here?
    Opening the doors to your technology company (Xerox), giving someone a demo of the technology you're working on without an agreement in place, and having them go off and invest 5 or 6 years + a lot of money creating their own, fairly different version of it (including designing custom hardware) is pretty different than having someone willfully look for a loophole in your software licensing agreement (and exploit open source projects to do so with minimal investment of time, effort, or ideas).
    So that you're completely OK with. No issue with Android being influenced by Apple design choices then? It's certainly a fairly different version of it, requires years of work and a lot of money, and includes developing custom hardware. 
    I'm not completely OK with it, but I can see a large number of differences and new ideas Apple brought to the table.  Not to mention the fact that they didn't willfully violate dodge a licensing agreement.

    I won't get sucked into the misdirection of the Android copying iOS debate.  The issue at hand is what happened with Java.
    edited March 2018 watto_cobrahlee1169propodjony0
  • Reply 71 of 189
    bkkcanuck said:
    Rayz2016 said:
    bkkcanuck said:
    I disagree with the Federal Court.  

    API is just the interface (e.g. add(operand1, operand2) - i.e. no implementation to that - and implementation is basically 99%+ of the code).

    Being able to use an API for compatibility purposes is no different than for example Open Office being able to implement the file format for Word.  The need for competition outweighs the argument as an API protected IP.   Google's implementation uses the API (common) and then the implementation code which is probably more than 99% of the code base.  As long as Google did not copy the code itself the API itself should be fair use.  Languages and APIs should not be able to be protected as API.  

    The court has already previously ruled that you cannot protect interfaces for hardware for the purposes of locking out the competition on things like printer cartridges etc.  An API is not much different than the software equivalent.  

    Actually, Google did copy code from Java. That's how the case first got started, but that's not really the point. The Java license permits this as fair use, and many of us have made a good living from Java and have given back by helping out on other projects and with occasional bug fixes. If fork a new version of Java, however, and then make a commercial product based around this fork then you are expected to buy a license. IBM did, and so did Microsoft.
    Please provide some backup for this statement - I have read quite a few articles and the code that was "copied" was always the API (outline) i.e. java.util.BigDecimal.<method> - no implementation code.  



    Identical lines of code don't lie. All available in Scribd online:

    http://www.zdnet.com/article/oracle-says-google-directly-copied-java-code-heres-the-line-by-line-comparison/
    watto_cobrajony0
  • Reply 72 of 189
    radarthekatradarthekat Posts: 3,842moderator
    gatorguy said:
    gatorguy said:
    The argument Google was making in this latest appeal was pretty thin, since they were relying in part on arguing "interoperability" being a rationale. In actual practice there was limited interoperability. I expected they'd lose this particular court case, but do not expect monetary damages from a follow-up retrial anywhere near the $9B that Ellison would like. He couldn't have expected that level of profit when he bought Sun years after Google introduced Android anyway which is why Sun sold so cheap.

    So in reality Ellison suffered no loss due to Google not licensing Java from the previous owner. It's really not all that different from a patent troll buying up a couple of unused patents for a hundred bucks and then using a claim from one of them to sue Apple for stealing from them for use in Siri or something and demanding $Millions for the harm.

    As for "stolen Java" the way that Google used it was more like copying chapter names and then writing the original book that filled the rest of the 1000 pages as I've understood it. If accurate it hardly seems like a stolen product, more like a handful of bolts scooped up. 

    What Oracle has done with Java since they bought it (well after Android was on the market) has sent it far downhill in my view. First they started bundling trashy and near impossible to rid ASK malware in with their automatic Java updates to slip it past consumers, then trying to force McAfee subscription virus software on those same consumers by using the same sneaky method, and then Yahoo snatching your browser and who knows what other software packages that many folks didn't even know was being installed too. That they escaped being sued for it is only because of technicalities IMO. It's still despicable conduct.
    https://www.infoworld.com/article/2613298/java/java-scam--how-oracle-and-ask-profit-from-sneaky-add-ons.html
    https://www.techlicious.com/blog/java-yahoo-browser-search-settings-hijacking/

    Even the Oracle Java software as a whole has become more problematic security-wise and far less trustworthy, to the point that a great number of folks won't get anywhere near it given the choice, and professional advice is to rid your computer's of it.

    So I don't weep for an Ellison-led Oracle who wants to claim they've lost profit on Java because of Google. They're not seeing the profits they could due to their own uncaring attitude towards it, and destroying it's reputation further with their sneak malware installs seemingly driven by a personal vendetta pursued by Larry Ellison and his Ask search bar and Yahoo browser replacement hoping to cause harm to Google but hurting computer users to do so. He evidently does not care about any collateral damage as long as he gets what he wants.

    He paid little for Sun because it wasn't worth much.  He was hoping he could discover hidden gold there and with his $B's it was a only a blip on the financials. Ellison didn't want Sun's Java because he thought he could make it better IMO. He was buying a lotto ticket that could be tossed away without much loss if it didn't pan out. 
    The most interesting, and telling, part of your comment was this bit:

    ”It's still despicable conduct.”

    i moted that you reserve that sentiment for Oracle but don’t apply it to Google, which willfully stole technology from Oracle and the whole damn interface and user interaction
    model from Apple.  What would Google need to do to earn a despicable badge?  Mine people for data to sell to advertisers?  Would that do it?
    You've not ever seen me call Google out for lying? You don't follow my posts as close as you think you do then. I have. 

    ..and if Google mined people for your personal data to sell to ANYONE I'd call that out as despicable too. They don't so you're arguing a moot point. 
    Your putting words in my mouth.  Read it again.  I didn’t say google sold anyone’s personal data.  I inferred google mines people for data to sell to advertisers.  Data, not personal data.  So my point is not moot and you can’t avoid the obvious answer.  You are duplicitous in your communications here.
    edited March 2018 StrangeDayswatto_cobrahlee1169propodjony0
  • Reply 73 of 189
    radarthekatradarthekat Posts: 3,842moderator
    gatorguy said:
    auxio said:
    gatorguy said:
    auxio said:
    auxio said:
    bkkcanuck said:
    I disagree with the Federal Court.  

    API is just the interface (e.g. add(operand1, operand2) - i.e. no implementation to that - and implementation is basically 99%+ of the code).

    Being able to use an API for compatibility purposes is no different than for example Open Office being able to implement the file format for Word.  The need for competition outweighs the argument as an API protected IP.   Google's implementation uses the API (common) and then the implementation code which is probably more than 99% of the code base.  As long as Google did not copy the code itself the API itself should be fair use.  Languages and APIs should not be able to be protected as API.  

    The court has already previously ruled that you cannot protect interfaces for hardware for the purposes of locking out the competition on things like printer cartridges etc.  An API is not much different than the software equivalent.  

    However, even if you are diehard Google hater - it's not clear whether copyrighting Apis ist a good idea.
    I don't think it is.  However, I also don't think that someone who knowingly and willingly tries to find a way around a technology licensing agreement for tremendous profit should go unpunished.
    Well if you think they shouldn't be copyrightable then you can't object to Google suing them.

    I think it's also important to put the work that goes into Apis into perspective. Yes they take creativity. But they are not usually created out fo thin air. The Java API is influenced by countless Apis before it such as C and C++. 

    Oracle itself has benefited from standing on the shoulder of Giants. I am not aware that they pay IBM for the SQL syntax (admittedly a language rather than API but clearly groundbreaking and which changed the database industry). All the companies that use Hadoop based their work on the original Google 2005 MapReduce paper that outlines MR and GFS (both of which Hadoop implements).

    Oracle stands out for being incredible litigious and greedy. We will see who will win the next round in this particular fight.
    Forget the world of business and who owns what company.  I just have one simple question: do you think what Andy Rubin and company did with Java is right?

    In regard to those cases you state, if there are clear cases of licensing infringement (or clear intentional loophole exploitation) there, then I think Oracle should be made to pay.  The same way I think that Google should pay for what was done with Java.  Regardless of the fact that Java is now open source to anyone, at the time, the intent of Sun was to allow open source usage of Java in educational/non-profit situations, but you had to take a license if it was bundled in a commercial product.  Which was pretty standard for the time -- Qt used this model as well.
    Business decisions are not dependent on morality as a general rule. So yes let's forget who owns the company.

    There's been lots of questionable moves over the years, the highest profile example off the top of my head being Apple's use of Xerox IP and "hard work" design. While it didn't turn out to be found illegal the argument could be made it just wasn't right, that the intent to take it without recompense was there.  Yeah some money changed hands but not for the usage that Apple put it to IIRC.  After all the court filings from Xerox were over with it wasn't actually illegal tho, even if it might not have been "right" in the view of some folks. 
    https://www.nytimes.com/1989/12/15/business/company-news-xerox-sues-apple-computer-over-macintosh-copyright.html
    Are there similarities here?
    Opening the doors to your technology company (Xerox), giving someone a demo of the technology you're working on without an agreement in place, and having them go off and invest 5 or 6 years + a lot of money creating their own, fairly different version of it (including designing custom hardware) is pretty different than having someone willfully look for a loophole in your software licensing agreement (and exploit open source projects to do so with minimal investment of time, effort, or ideas).
    So that you're completely OK with. No issue with Android being influenced by Apple design choices then? It's certainly a fairly different version of it, requires years of work and a lot of money, and includes developing custom hardware. 
    You clearly don’t know the history of xerox parc and Apple.  SMH
    StrangeDayswatto_cobrajony0docno42
  • Reply 74 of 189
    gatorguygatorguy Posts: 24,176member
    auxio said:
    gatorguy said:
    auxio said:
    gatorguy said:
    auxio said:
    auxio said:
    bkkcanuck said:
    I disagree with the Federal Court.  

    API is just the interface (e.g. add(operand1, operand2) - i.e. no implementation to that - and implementation is basically 99%+ of the code).

    Being able to use an API for compatibility purposes is no different than for example Open Office being able to implement the file format for Word.  The need for competition outweighs the argument as an API protected IP.   Google's implementation uses the API (common) and then the implementation code which is probably more than 99% of the code base.  As long as Google did not copy the code itself the API itself should be fair use.  Languages and APIs should not be able to be protected as API.  

    The court has already previously ruled that you cannot protect interfaces for hardware for the purposes of locking out the competition on things like printer cartridges etc.  An API is not much different than the software equivalent.  

    However, even if you are diehard Google hater - it's not clear whether copyrighting Apis ist a good idea.
    I don't think it is.  However, I also don't think that someone who knowingly and willingly tries to find a way around a technology licensing agreement for tremendous profit should go unpunished.
    Well if you think they shouldn't be copyrightable then you can't object to Google suing them.

    I think it's also important to put the work that goes into Apis into perspective. Yes they take creativity. But they are not usually created out fo thin air. The Java API is influenced by countless Apis before it such as C and C++. 

    Oracle itself has benefited from standing on the shoulder of Giants. I am not aware that they pay IBM for the SQL syntax (admittedly a language rather than API but clearly groundbreaking and which changed the database industry). All the companies that use Hadoop based their work on the original Google 2005 MapReduce paper that outlines MR and GFS (both of which Hadoop implements).

    Oracle stands out for being incredible litigious and greedy. We will see who will win the next round in this particular fight.
    Forget the world of business and who owns what company.  I just have one simple question: do you think what Andy Rubin and company did with Java is right?

    In regard to those cases you state, if there are clear cases of licensing infringement (or clear intentional loophole exploitation) there, then I think Oracle should be made to pay.  The same way I think that Google should pay for what was done with Java.  Regardless of the fact that Java is now open source to anyone, at the time, the intent of Sun was to allow open source usage of Java in educational/non-profit situations, but you had to take a license if it was bundled in a commercial product.  Which was pretty standard for the time -- Qt used this model as well.
    Business decisions are not dependent on morality as a general rule. So yes let's forget who owns the company.

    There's been lots of questionable moves over the years, the highest profile example off the top of my head being Apple's use of Xerox IP and "hard work" design. While it didn't turn out to be found illegal the argument could be made it just wasn't right, that the intent to take it without recompense was there.  Yeah some money changed hands but not for the usage that Apple put it to IIRC.  After all the court filings from Xerox were over with it wasn't actually illegal tho, even if it might not have been "right" in the view of some folks. 
    https://www.nytimes.com/1989/12/15/business/company-news-xerox-sues-apple-computer-over-macintosh-copyright.html
    Are there similarities here?
    Opening the doors to your technology company (Xerox), giving someone a demo of the technology you're working on without an agreement in place, and having them go off and invest 5 or 6 years + a lot of money creating their own, fairly different version of it (including designing custom hardware) is pretty different than having someone willfully look for a loophole in your software licensing agreement (and exploit open source projects to do so with minimal investment of time, effort, or ideas).
    So that you're completely OK with. No issue with Android being influenced by Apple design choices then? It's certainly a fairly different version of it, requires years of work and a lot of money, and includes developing custom hardware. 
    I'm not completely OK with it, but I can see a large number of differences and new ideas Apple brought to the table.  Not to mention the fact that they didn't willfully violate dodge a licensing agreement.

    I won't get sucked into the misdirection of the Android copying iOS debate.  The issue at hand is what happened with Java.
    That's correct. It is about Google and Java and it's not my intent to misdirect the discussion, only to frame it in context. You're right, it's slipping off-topic. 
    jony0
  • Reply 75 of 189
    gatorguygatorguy Posts: 24,176member
    gatorguy said:
    gatorguy said:
    The argument Google was making in this latest appeal was pretty thin, since they were relying in part on arguing "interoperability" being a rationale. In actual practice there was limited interoperability. I expected they'd lose this particular court case, but do not expect monetary damages from a follow-up retrial anywhere near the $9B that Ellison would like. He couldn't have expected that level of profit when he bought Sun years after Google introduced Android anyway which is why Sun sold so cheap.

    So in reality Ellison suffered no loss due to Google not licensing Java from the previous owner. It's really not all that different from a patent troll buying up a couple of unused patents for a hundred bucks and then using a claim from one of them to sue Apple for stealing from them for use in Siri or something and demanding $Millions for the harm.

    As for "stolen Java" the way that Google used it was more like copying chapter names and then writing the original book that filled the rest of the 1000 pages as I've understood it. If accurate it hardly seems like a stolen product, more like a handful of bolts scooped up. 

    What Oracle has done with Java since they bought it (well after Android was on the market) has sent it far downhill in my view. First they started bundling trashy and near impossible to rid ASK malware in with their automatic Java updates to slip it past consumers, then trying to force McAfee subscription virus software on those same consumers by using the same sneaky method, and then Yahoo snatching your browser and who knows what other software packages that many folks didn't even know was being installed too. That they escaped being sued for it is only because of technicalities IMO. It's still despicable conduct.
    https://www.infoworld.com/article/2613298/java/java-scam--how-oracle-and-ask-profit-from-sneaky-add-ons.html
    https://www.techlicious.com/blog/java-yahoo-browser-search-settings-hijacking/

    Even the Oracle Java software as a whole has become more problematic security-wise and far less trustworthy, to the point that a great number of folks won't get anywhere near it given the choice, and professional advice is to rid your computer's of it.

    So I don't weep for an Ellison-led Oracle who wants to claim they've lost profit on Java because of Google. They're not seeing the profits they could due to their own uncaring attitude towards it, and destroying it's reputation further with their sneak malware installs seemingly driven by a personal vendetta pursued by Larry Ellison and his Ask search bar and Yahoo browser replacement hoping to cause harm to Google but hurting computer users to do so. He evidently does not care about any collateral damage as long as he gets what he wants.

    He paid little for Sun because it wasn't worth much.  He was hoping he could discover hidden gold there and with his $B's it was a only a blip on the financials. Ellison didn't want Sun's Java because he thought he could make it better IMO. He was buying a lotto ticket that could be tossed away without much loss if it didn't pan out. 
    The most interesting, and telling, part of your comment was this bit:

    ”It's still despicable conduct.”

    i moted that you reserve that sentiment for Oracle but don’t apply it to Google, which willfully stole technology from Oracle and the whole damn interface and user interaction
    model from Apple.  What would Google need to do to earn a despicable badge?  Mine people for data to sell to advertisers?  Would that do it?
    You've not ever seen me call Google out for lying? You don't follow my posts as close as you think you do then. I have. 

    ..and if Google mined people for your personal data to sell to ANYONE I'd call that out as despicable too. They don't so you're arguing a moot point. 
    Your putting words in my mouth.  Read it again.  I didn’t say google sold anyone’s personal data.  I inferred google mines people for data to sell to advertisers.  Data, not personal data.  So my point is not moot and you can’t avoid the obvious answer.  You are duplicitous in your communications here.
    Google doesn't sell ANY user data, personal or not AFAIK. Google isn't in the business of selling data like an Experian or TransUnion, they do contract ad placement for both large and small companies (along with other advertising-related services and a few subscription-based services thrown in with misc hardware stuff).  Whatever data they have is kept locked up tight to be used only for assisting with more accurate and therefore more valuable ad placement services or for the benefit of the user themselves for user-facing features. It's not sold. The companies like Apple and P&G and Grannies Korner Kafe are happily covering your entry fee for "free" Google services thru their ad payments to them. 
    edited March 2018
  • Reply 76 of 189
    auxioauxio Posts: 2,717member
    gatorguy said:
    auxio said:

    gatorguy said:
    Of course you wouldn't want to code around the agreement. You'd code around the patented part of the technology to try and avoid infringing if you don't want to pay the inventor, and I'm sure that's what you've done before if you've been at it very long. No matter how you get there you're building on someone else's hard work while refusing the originator profit for it.

    How many times have you seen some good, inventive and hopefully profitable 3rd party feature "copied" in essence by Apple or whoever and integrated into their own software while the person/company with the original idea withers away on the vine? All quite legal as long as the surgery is good.
    Your whataboutism and both-sidesing are phony distractions from the fact that:

    Google stole significant Java code available under the GPL, then distributed it in violation of that license to make money without paying a licensing fee for Java, without following Suns' licensing rules for Java (stealing control of Sun's platform), and also without respect for the GPL. 

    Apple didn't steal code, it didn't steal somebody else's platform, and it didn't violate the GPL just because it might have been convenient for a large company wanting to run things without doing the work to earn or acquire ownership. 

    Google also stole content from Yelp, stole content from authors, stole content from news sites, etc and then repressed lawsuits until it achieved monopolistic control over advertising on the web, and everyone just had to agree that it was okay Google scraped their work because they were being given traffic by Google. 

    Google also helped its licensees steal clearly patented ideas from iOS, and only escaped there because it was giving away the support of its theft. 

    When Apple acquired former Palm talent to build its notification system (which Google had simply ripped off for Android), Android fans accused Apple of taking Google's (unprotected) ideas. But that wasn't true, Google had no ownership, and Apple had been working on it for just as long.

    Apple didn't steal code from Android. It didn't steal Unix code, and it worked to make sure its implementation of BSD was legitimate. Apple has had IP disagreements with Nokia, Qualcomm and many others, but those didn't result from Apple deciding to steal their work and just not pay for it because it was a larger company. Further, Apple has shown a willingness to pay the licensing costs of agreements, even when they are not exactly fair. 

    Google's culture is all about stealing. It stole its first business model, stole its primary platform, attempted to steal iPhone and iPad, and it steals content with abandon. That's because it's made up largely of Microsoft people, which shared the same steal first, pay later ethos. 

    Your consistent, slavish support for Google reflects the same sort of amorality that often takes the shape of hypocrisy as you try to paint Google as perfectly righteous and (at the same time) the rest of the world as "just as criminal." 



    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    ...

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    And twisting the argument about Google exploiting Java to gain a mature app development ecosystem for free into "ownership of human capital" is just plain misdirection.

    The fact of the matter is that Android gained an unfair competitive advantage in the mobile market by not paying for a Java license when everyone else was (and had to include that cost in their mobile devices).  Even outside of the iOS vs Android marketshare war, one could argue that it was a significant factor in devices based on Android taking significant marketshare from Blackberry (and other smaller mobile manufacturers).
    Yup a mind-blowingly bad decision. They could have had a perpetual license for $100K (IIRC), so no idea what the rationale was for cheaping out. Dumb stuff can come from very smart people.
    I don't know the licensing details, but my assumption is that it was a per-device-sold license, which is why they wanted to avoid it.  Google would have had to eat that cost for all of the devices using Android sold if they wanted to make it free for manufacturers.
    edited March 2018 watto_cobrahlee1169habi000
  • Reply 77 of 189
    gatorguygatorguy Posts: 24,176member
    auxio said:
    gatorguy said:
    auxio said:

    gatorguy said:
    Of course you wouldn't want to code around the agreement. You'd code around the patented part of the technology to try and avoid infringing if you don't want to pay the inventor, and I'm sure that's what you've done before if you've been at it very long. No matter how you get there you're building on someone else's hard work while refusing the originator profit for it.

    How many times have you seen some good, inventive and hopefully profitable 3rd party feature "copied" in essence by Apple or whoever and integrated into their own software while the person/company with the original idea withers away on the vine? All quite legal as long as the surgery is good.
    Your whataboutism and both-sidesing are phony distractions from the fact that:

    Google stole significant Java code available under the GPL, then distributed it in violation of that license to make money without paying a licensing fee for Java, without following Suns' licensing rules for Java (stealing control of Sun's platform), and also without respect for the GPL. 

    Apple didn't steal code, it didn't steal somebody else's platform, and it didn't violate the GPL just because it might have been convenient for a large company wanting to run things without doing the work to earn or acquire ownership. 

    Google also stole content from Yelp, stole content from authors, stole content from news sites, etc and then repressed lawsuits until it achieved monopolistic control over advertising on the web, and everyone just had to agree that it was okay Google scraped their work because they were being given traffic by Google. 

    Google also helped its licensees steal clearly patented ideas from iOS, and only escaped there because it was giving away the support of its theft. 

    When Apple acquired former Palm talent to build its notification system (which Google had simply ripped off for Android), Android fans accused Apple of taking Google's (unprotected) ideas. But that wasn't true, Google had no ownership, and Apple had been working on it for just as long.

    Apple didn't steal code from Android. It didn't steal Unix code, and it worked to make sure its implementation of BSD was legitimate. Apple has had IP disagreements with Nokia, Qualcomm and many others, but those didn't result from Apple deciding to steal their work and just not pay for it because it was a larger company. Further, Apple has shown a willingness to pay the licensing costs of agreements, even when they are not exactly fair. 

    Google's culture is all about stealing. It stole its first business model, stole its primary platform, attempted to steal iPhone and iPad, and it steals content with abandon. That's because it's made up largely of Microsoft people, which shared the same steal first, pay later ethos. 

    Your consistent, slavish support for Google reflects the same sort of amorality that often takes the shape of hypocrisy as you try to paint Google as perfectly righteous and (at the same time) the rest of the world as "just as criminal." 



    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    ...

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    And twisting the argument about Google exploiting Java to gain a mature app development ecosystem for free into "ownership of human capital" is just plain misdirection.

    The fact of the matter is that Android gained an unfair competitive advantage in the mobile market by not paying for a Java license when everyone else was (and had to include that cost in their mobile devices).  Even outside of the iOS vs Android marketshare war, one could argue that it was a significant factor in devices based on Android taking significant marketshare from Blackberry (and other smaller mobile manufacturers).
    Yup a mind-blowingly bad decision. They could have had a perpetual license for $100K (IIRC), so no idea what the rationale was for cheaping out. Dumb stuff can come from very smart people.
    I don't know the licensing details, but my assumption is that it was a per-device-sold license, which is why they wanted to avoid it.  Google would have had to eat that cost for all of the devices using Android sold if they wanted to make it free for manufacturers.
    As I recall it was a one-off fee that was offered by Sun, but could be mistaken. BTW I wasn't aware of it but reportedly Ellison is going after others now too. 
    https://www.theregister.co.uk/2016/12/16/oracle_targets_java_users_non_compliance/

    EDIT: And yeah I could be wrong. Schmidt testified during trial that "Google was prepared to pay Sun Microsystems $30 to $40 million for a five-year license to use its Java technology in Android", but talks to determine the terms on renewals broke down and no money actually changed hands. 
    edited March 2018 jony0
  • Reply 78 of 189
    radarthekatradarthekat Posts: 3,842moderator
    melgross said:
    I recently read that the court is expressing extreme skepticism over Oracle’s valuation of Java. It’s very likely that if Google does lose this, the amount of money involved will be far less that what Oracle is demanding.
    Yes, to GatorGuy’s credit he stated early in this thread, damages are, well, damages.  The courts attempt to ascertain how, and by how much, the defendant damaged the plaintive.  

    Let’s make up an example.  I keep a leased backhoe for a few extra weeks and upon retiring it late refuse to pay the extra time on the lease.  In addition, I clogged the thing up with sand causing $50k of damage to it.  You, the construction company who leased it to me, sue me and win the case.  What do I owe you?  Wait, before answering, just know that during those few extra weeks I had your backhoe I dug up an old wreck down at the beach and recovered $700 million in gold.  
    edited March 2018 cornchip
  • Reply 79 of 189
    auxioauxio Posts: 2,717member
    gatorguy said:
    auxio said:
    gatorguy said:
    auxio said:

    gatorguy said:
    Of course you wouldn't want to code around the agreement. You'd code around the patented part of the technology to try and avoid infringing if you don't want to pay the inventor, and I'm sure that's what you've done before if you've been at it very long. No matter how you get there you're building on someone else's hard work while refusing the originator profit for it.

    How many times have you seen some good, inventive and hopefully profitable 3rd party feature "copied" in essence by Apple or whoever and integrated into their own software while the person/company with the original idea withers away on the vine? All quite legal as long as the surgery is good.
    Your whataboutism and both-sidesing are phony distractions from the fact that:

    Google stole significant Java code available under the GPL, then distributed it in violation of that license to make money without paying a licensing fee for Java, without following Suns' licensing rules for Java (stealing control of Sun's platform), and also without respect for the GPL. 

    Apple didn't steal code, it didn't steal somebody else's platform, and it didn't violate the GPL just because it might have been convenient for a large company wanting to run things without doing the work to earn or acquire ownership. 

    Google also stole content from Yelp, stole content from authors, stole content from news sites, etc and then repressed lawsuits until it achieved monopolistic control over advertising on the web, and everyone just had to agree that it was okay Google scraped their work because they were being given traffic by Google. 

    Google also helped its licensees steal clearly patented ideas from iOS, and only escaped there because it was giving away the support of its theft. 

    When Apple acquired former Palm talent to build its notification system (which Google had simply ripped off for Android), Android fans accused Apple of taking Google's (unprotected) ideas. But that wasn't true, Google had no ownership, and Apple had been working on it for just as long.

    Apple didn't steal code from Android. It didn't steal Unix code, and it worked to make sure its implementation of BSD was legitimate. Apple has had IP disagreements with Nokia, Qualcomm and many others, but those didn't result from Apple deciding to steal their work and just not pay for it because it was a larger company. Further, Apple has shown a willingness to pay the licensing costs of agreements, even when they are not exactly fair. 

    Google's culture is all about stealing. It stole its first business model, stole its primary platform, attempted to steal iPhone and iPad, and it steals content with abandon. That's because it's made up largely of Microsoft people, which shared the same steal first, pay later ethos. 

    Your consistent, slavish support for Google reflects the same sort of amorality that often takes the shape of hypocrisy as you try to paint Google as perfectly righteous and (at the same time) the rest of the world as "just as criminal." 



    Google didn't use the Java API to save time developing Android (they could have easily renamed function names and changed them slightly) but in order to make it easy for third party to develop for the platform. It's not clear why an API developer should own the human capital that stored in form of muscle memory in the heads of thousands of developers if they profited handsomely already from these developers writing code for them.

    ...

    Bending your mind like a pretzel to write stuff that fits your anti Google crusade isn't healthy.
    And twisting the argument about Google exploiting Java to gain a mature app development ecosystem for free into "ownership of human capital" is just plain misdirection.

    The fact of the matter is that Android gained an unfair competitive advantage in the mobile market by not paying for a Java license when everyone else was (and had to include that cost in their mobile devices).  Even outside of the iOS vs Android marketshare war, one could argue that it was a significant factor in devices based on Android taking significant marketshare from Blackberry (and other smaller mobile manufacturers).
    Yup a mind-blowingly bad decision. They could have had a perpetual license for $100K (IIRC), so no idea what the rationale was for cheaping out. Dumb stuff can come from very smart people.
    I don't know the licensing details, but my assumption is that it was a per-device-sold license, which is why they wanted to avoid it.  Google would have had to eat that cost for all of the devices using Android sold if they wanted to make it free for manufacturers.
    As I recall it was a one-off fee that was offered by Sun, but could be mistaken. BTW I wasn't aware of it but reportedly Ellison is going after others now too. 
    https://www.theregister.co.uk/2016/12/16/oracle_targets_java_users_non_compliance/
    Look, I get that everyone is trying to suck me into the emotional arguments about how evil Ellison and Oracle are.  And how, if there are damages awarded, it will just go to that evil.  But it's really irrelevant to what happened with Java at the time, and actions which I feel need to have consequences.

    Here's what I dug up from a few years back about Java SE Embedded costs: https://blogs.oracle.com/jtc/java-se-embedded-pricing-explained

    Again, I'm not sure about the Sun era, but it certainly seems like per-device has always been the pricing model for embedding Java on devices.

    edited March 2018 watto_cobrahlee1169propod
  • Reply 80 of 189
    StrangeDaysStrangeDays Posts: 12,834member
    gatorguy said:

    What Oracle has done with Java since they bought it (well after Android was on the market) has sent it far downhill in my view. First they started bundling trashy and near impossible to rid ASK malware in with their automatic Java updates to slip it past consumers, then trying to force McAfee subscription virus software on those same consumers by using the same sneaky method, and then Yahoo snatching your browser and who knows what other software packages that many folks didn't even know was being installed too. That they escaped being sued for it is only because of technicalities IMO. It's still despicable conduct.
    https://www.infoworld.com/article/2613298/java/java-scam--how-oracle-and-ask-profit-from-sneaky-add-ons.html
    https://www.techlicious.com/blog/java-yahoo-browser-search-settings-hijacking/

    Even the Oracle Java software as a whole has become more problematic security-wise and far less trustworthy, to the point that a great number of folks won't get anywhere near it given the choice, and professional advice is to rid your computer's of it.

    So I don't weep for an Ellison-led Oracle 
    More whataboutism, a known logical fallacy we've explained to you before. It doesn't matter if Ellison & Oracle kick puppies, it has no bearing on their argument.
    watto_cobrajony0
Sign In or Register to comment.