Slashdot Mirror


Appeals Court Sides With Microsoft On Java

burgburgburg writes "Reuters reports that the three-member federal appeals court in Virginia ruled today the U.S. District Judge J. Frederick Motz erred when he ordered Microsoft to include Java with the Windows operating system. Fortunately, Dell and HP, the top 2 PC makers, have already decided to ship Java on the PCs that they sell. Apple, Red Hat and Lindows have also agreed to include Sun's Java." The ruling is available.

32 of 517 comments (clear)

  1. actually, by Anonymous Coward · · Score: 5, Informative

    i think Red Hat includes IBM's implementation, and Apple uses their own impl.

    1. Re:actually, by leifm · · Score: 4, Informative

      Yeah, I thought that was the case as well. Doesn't Apple have the only Java implementation that doesn't spawn a new VM for each new app? I can't remember what the terminology for it was.

      --

      "Windows Me offers tremendous reliability and stability improvements..." -- Paul Thurott
    2. Re:actually, by Anonymous Coward · · Score: 5, Informative

      Not anymore. RedHat will now bundle Sun's Java implementation. I believe there's a link to this on Sun's website somewhere.
      At my client's site, they had a symposium with the chief technologist from Sun, Brian Wilson, a couple of weeks ago and he announced the agreement between RH and Sun.

    3. Re:actually, by Steveftoth · · Score: 4, Informative

      No, they still spawn a new VM for each new app, you can't get around that limitation. Too many of the core classes are coded in such a way that you cannot get around that. (it's because of the static member variables)

      However, Apple's vm is basically sun's VM with some enhancements. First of all there's the Java-Cocoa(Objc) bridge that lets a developer write a java backend with a Obj-C native Cocoa front end. Secondly, the feature you may have heard about that saves much time and reuses code is that the VM caches on disk the HotSpot compliation of the Java byte code. The way it works is that Java code is compiled to JAva byte code by the developer. The VM then compiles byte code to it's own internal representation for eventual compiliation to native code. This code is normally intrepreted, but when a section of code is 'hotspotted' it is then compiled to native code. Apple modified the vm to save the internal representation of the bytecode to disk and use this in the VM. This is automatically done for all core classes at install time and on the fly for other Java code.

      Sun is supposedly looking into a way to extend it to other applications. Though only in client application does this make much difference because in server applications classes don't get loaded a lot. (except for JSPs but you really shouldn't be doing cpu intensive stuff in the JSP code, but in a library function)

    4. Re:actually, by shawnce · · Score: 4, Informative

      Apple's implementation does start up a new JVM instance for every applet/application but the JVM's all use shared code and loaded jar instances. So it is like starting up a new task which links against the same set of shared libraries/frameworks as other tasks.

      Additionally Apple provides, by default, installations of 1.3.1 and 1.4.1 in a fixed and standardized location, generally following the deployment style other the frameworks provided on the system. They are also updated automatically as needed via the normal Apple Software Update process, just like any other framework/application/etc...

      They go out of their way to discourage application developers from installing their own JRE's, it is not needed, it wastes space, and actually could lead to compatibility issues (the JRE they install could be in compatible with the OS version installed, etc.)

      Apple tests and maintains correct versions of their JREs for you, they are considered as part of the OS. This is very nice. Why should Java be different then any other OS framework?

      I do find it funny that it is worded as saying that Apple has "also agreed to include Sun's Java". Apple goes out of their way to provide Java on Mac OS X, its Apple's JVM/etc. implementation not Sun's.

  2. MS by jeffkjo1 · · Score: 5, Insightful

    While I agree that MS has erred in the past, they shouldn't be forced to carry another company's product within their product.

    However, they should not be allowed to continue carrying their own, proprietary version of java. Does the ruling say anything about that?

    1. Re:MS by rearden · · Score: 4, Insightful

      Something to keep in mind is that MS does not offer a newer version of Java because of Sun. A while back Sun sued MS for offering an implementation of Java that was not fully compatiable with Java.

      As part of the settlement MS was barred by Sun from shipping a newer version of Java or updating the current version. Microsoft actually had to go back to Sun to get permission to fix some bugs/ security holes in the old Java runtime.

      Really, Sun is a victim of its own foolishness. Yeah, MS was selling a broken implementation, and yes they should have been stopped. But preventing MS from shipping any JRE they developed in house simply meant that they would basically ship nothing (as XP does not ship with Java, it must be downloaded- either MS's old Java or Sun's lastest JRE). Now that they stopped them they said "Hey, no one is using the new stuff on Windows!?!?"- well DUH! Most Windoz users have no idea about Java, no less who makes it or if they needed (heck most dont know about Flash)

      I am sorry, I feel no pity for Sun here. They may not have started this fight or layed the foundation, but they certainly built upon it with the settlement they hammered out with MS on Java a long time ago.

      Just my $0.002

      --
      Huh?
  3. In related news.. by L.+VeGas · · Score: 4, Funny

    Three members of the federal appeals court have just purchased Ferraris.

  4. Makes sense.... by lowe0 · · Score: 5, Insightful

    Dell and HP are where I'd expect Sun to have to push Java - do an end-run around MS and deal with the OEMs. Now, if MS were preventing the OEMs from bundling Java, that would be different - but they're specifically barred from doing that anymore, and IMO rightly so.

    Isn't middleware more of a server issue nowadays anyway? And how hard is it to include a runtime with your software?

  5. Anticompetative behavior by ikewillis · · Score: 4, Insightful

    By including an outdated and broken version of Java with Windows by default, Microsoft has effectively doomed Java on the desktop. This build has lead to a degree of fragmentation of the Java standard, has caused Java application developers to code their applications to support the lowest common denominator, the JRE bundled with Windows.

    It's very exciting to see OEMs bundling a recent Java runtime with their new systems, especially Dell who is the largest OEM. Perhaps with this application developers can have a bit more freedom to code their applications in a manner which utilizes more recent features. There's no reason why everyone shouldn't be using the 1.4 JRE at this point in time.

  6. Re:Yes, this makes sense by deanj · · Score: 4, Insightful

    Taken alone, that's true...however...

    But the reason they were told to do this by the lower court was because of what Microsoft had tried to do with Java in the first place, which is splinter the market by shipping a version of Java that would only create programs that would only Windows systems.

  7. Re:Hate to say I agree, but... by Anonymous Coward · · Score: 5, Interesting

    So far in history there is little evidence that anything BUT regulation will solve the problem of a single company getting too powerful.

  8. They're right, there should be no *legal* requirem by numbski · · Score: 4, Insightful

    They shouldn't be legally required to include it, but we should, as developers, code in such a way to JRE is the only way to go. If M$ wants to use their own Java Virtual Machine, fine, but we need to make sure that they have little choice but to make it compatible with the rest of the world.

    I'm personally not going to go out of my way to recode everything so I have to make two seperate binaries, one for windows, and one for everyone else. The whole point of Java is that I shouldn't have to do that.

    --

    Karma: Chameleon (mostly due to the fact that you come and go).

  9. Re:Hate to say I agree, but... by Anonymous Coward · · Score: 5, Insightful

    The libertarian in you should also realize that unrestrained capitalism is functionally equivalent to communism. Instead of a top-down dictatorial system driven by government incompetence, we would live in a world of top-down dictatorship driven by corporate incompetence. Libertarians love to overlook the Enron's and the SCO lawsuits of the world, but the fact is in a world without well intended regulation of those who claim to be well intended, we might as well live in anarchy.

  10. Moot point now, but Microsoft remains unpunished by deanj · · Score: 5, Insightful

    Since the HP and Dell announcements, this is pretty much a moot point anyway.

    The real problem of all this is that Microsoft has walked away from the whole "let's release an incompatible version of Java", with only a "don't do that" slap on the wrist. The monopoly remains intact, and unpunished.

    This should be a chilling reminder to anyone that does ANYTHING with Microsoft. If they're gonna screw you, don't expect them to be punished for it, no matter what happens.

  11. Re:That big a deal? by Rude+Turnip · · Score: 5, Insightful

    This serves as restitution for bundling a broken version of Java whose purpose was to destroy the viability of Java. This was seen as illegal abuse of monopoly power.

    They could have avoided this by:

    1. Including Sun's Java from the get-go; or
    2. Not including a broken Java with the OS.

  12. Re:Yes, this makes sense by fritz1968 · · Score: 5, Insightful

    It isn't Microsoft's job to promote Java...

    I agree, only Sun has an obligation to promote Java. However, I thought that Microsoft signed a deal with Sun a while back to include JAVA with windows.

    Over the years, it went something like this :
    1 - MS and Sun sign a deal to include Java in Windows.
    2 - MS kinda created their own version of Java (or polluted Sun's version with MS-only type calls).
    3 - Sun sued MS to pull the MS version of Java
    4 -then they sued to have the original Java (or latest version of Sun's Java) to be put back into windows.
    5 - Now, so it seems, MS is legally able to backout on the original deal

    does that sound about right (generally speaking)?

    --
    It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.
  13. Keep Java Pure by Cloudgatherer · · Score: 5, Insightful

    As a programmer, I really like Java's "write once, run everywhere" motto (while it may not always work out that way in practice). From what I understand, did not have a fully compatible VM, so Sun develops one for download. While I don't think MS should be forced to ship Java, they should be disallowed from trying to hijack Java (hence they went out and made C#).

    1. Re:Keep Java Pure by Spirald · · Score: 5, Insightful

      Your statements are incorrect. If your standard Java code included standard JNI or standard RMI, your code would not work with Microsoft's JVM. It seems obvious that this was done to prevent people from using JNI to achieve portability in the Java->Native interface, and to prevent people from using RMI for IPC as opposed to Microsoft's IPC flavor of the year.

      If Microsoft had included those standard features of Java, there would not be so many complaints about their extensions. IMHO, the whole extension issue is a red herring. The real issue is the standard functionality that Microsoft -excluded- to kneecap otherwise portable Java code.

      The only somewhat legit issue regarding MS extensions is the fact that they didn't make developers aware that generated code from their IDE used their Windows specific extensions and thus was not portable.

  14. It's still about the antitrust remedy by kremvax · · Score: 5, Insightful

    Even though it's hard to swallow having the government dictate the operating conditions of a company (and include / disavow specific portions and products ) it's important to remember that this is/was a *penalty* for serious antitrust/anticometitive behavior.

    It was a light "slap on the wrist that doesnt really cost much of anything" penalty too.

    Guilt without punishment, well, isn't going to hinder them from this sort of behavior in the future is it.

    I guess there is always justice for those that can afford it.

    Kremvax

    --
    --- Little Atomo - The Amazing Thinking Robot from Atomocom! http://www.youtube.com/watch?v=GIP9KisHi4k
  15. No Suprise OEMs Bundle Java by MikeD83 · · Score: 5, Insightful

    I think we can all say that Java is rampant on the Internet. For instance, most online gambling sites use Java user interfaces. The average Joe six pack thinks he got the shaft from his computer company when IE displays a broken icon when he tries to view Java content. Companies such as Dell are bundling Java so their customers won't think they have broken computers.

  16. Why For M$ to include Java? Even playing field by MidKnight · · Score: 5, Insightful
    Most folks here, thus far, are reading the incredibly thin article and thinking "Sounds right -- Microsoft shouldn't be forced to carry a competitor's product. Yea for the court system." The point that they're missing is that the lower court ordered Microsoft to carry Java as a temporary measure until the Sun -vs- Microsoft case was settled. To quote from Motz's original ruling:

    • "Unless Sun is given a fair opportunity to compete in a market untainted by the effects of Microsoft's past antitrust violations, there is a serious risk that in the near future the market will tip in favor of [Microsoft]"

    Motz reasoned that Microsoft had illegally used its monopoly position to do irreparable harm a competitor's product, and that Sun was exceedingly likely to win their suit. This temporary order was necessary to level the playing ground until that suit was carried out.

    Basically, as in all Microsoft's legal troubles, their strategy is to draw out the cases indefinitely until they can leverage their desktop monopoly to the point of making the suit a moot point. Then, they can just settle out of court for chump change. Anyone heard of Netscape?

    --Mid
  17. The Contrary View. by Yaztromo · · Score: 5, Insightful

    I'm going to take the contrarian view here. :).

    It looks like alot of people here are of the view that the courts shouldn't force one company to bundle the product of another. Fair enough.

    However, at this juncture, the courts might as well tell Microsoft that they can be anti-competitive all they want, as there will never be any real punishments for their actions. Microsoft has benifitted from the fragmentation of Java, through their distribution of an outdated, poorly functional version. And prior to that, they benifitted from their attempts to prevent Java from being a write-once, run-anywhere language.

    At some point, justice has to incorporate the ideal of punishing organizations for their past bahaviour, in order to reduce the benifits of undertaking that behaviour, and in order to curb others from undertaking the same behaviour in the future.

    If I were to go on a spree killing my enemies in society (not that I have any enemies... ;) ), the courts wouldn't haul me up and say "You are hereby enjoined from ever killing anybody ever again", and then setup a panel (that I get to select some of the members of) to make sure I don't. Instead, they'd take away my freedom to do whatever I want, and throw my sorry ass in jail.

    You can't throw a whole company in jail, and in the MS case, nobody has directly died (I realize the extremity of my example :) ) due to MS's actions. But still, there has been zero accountability on their part up to this point. There has been nothing yet to aid the real victims of MS's anticompetitive acts, nor nothing that would really cause MS to want to avoid such acts in the future. Where is the justice in that for the companies who have had their intellictual property values eroded due to Microsoft's acts?

    This was a chance for society to tell Microsoft (and other big computer software companies) that if they don't play fairly, there are consequences. Judge Mott gave a creative ruling that incorporated both punishment for past bad acts, while at the same time helping level and repair the playing field for Sun.

    MS's come-uppance is long overdue. They've destroyed the value of new technologies from their competitors, and thus far, while techinically losing in the eyes of the courts, have gained from the experience. And you're not supposed to be able to gain when you violate the law -- but apparently MS has found that, in their industry, crime does pay.

    Yaz.

  18. A lot of antitrust ignorance by Ath · · Score: 5, Insightful
    If you read the appellate court decision, the reason they overturned the injunction is because even the trial court judge stated that Sun could not prove irreparable harm without the injunction. The appellate court (and the trial judge) specifically says that this does not mean Sun cannot still obtain the same result after a trial.

    Please note that the appellate court upheld the part of the injunction preventing Microsoft from shipping a non-compliant JRE.

    The fact is, Sun could still obtain a final order that MS must bundle the Sun JRE with the Windows operating system. But this will only happen after a trial. The injunction here was issued at a preliminary stage of the judicial proceedings. But if you think forcing MS to ship the JRE at any point would be completely inappropriate and only market conditions should rule, you have a gross misunderstanding of antitrust laws and their purposes.

    Microsoft has a monopoly in operating systems for the Intel platform. This is legal fact and Microsoft cannot walk into any court room and claim otherwise. It's been decided already. A monopoly means that market conditions cannot work. Even Adam Smith (you know, that guy who kind of invented capitalism) said that the market cannot work when there is a monopoly. Ensuring the market can still work in a monopoly is the purpose of antitrust laws.

    Now that it is legally established MS has a monopoly, it completely changes how MS can do business in the market. In the case of the JRE, it means Microsoft cannot leverage their monopoly in the OS to obtain a monopoly in another area. You know, like they did with the browser!

    What I expect would be a more likely outcome is that MS has to make a decision. If they want to bundle .NET, then they have to bundle a compliant JRE. Then the market truly would be deciding and it would not be a case of MS simply leveraging the OS monopoly into a new market.

    All that said, the legal nuances are the important point to note from this decision. The appellate court was not saying MS would never have to include the Sun JRE. They were only saying that the legal burden of "irreparable harm" had not been met in order to obtain an injunction. That's why they vacated the order.

    1. Re:A lot of antitrust ignorance by Ath · · Score: 4, Insightful
      Explain how a court can order a company to include a competitor's product while at the same time order them to not ship their own.

      If I take the question literally, then the answer is easy: the court just issues the order.

      However, you ask a question regarding a point I did not make. The sentence you quote was in reference to the appellate court's decision. What the appellate court says in the decision is that Sun could still win the case on the merits, at which time the trial judge could then issue an appropriate injunction.

      But the biggest issue here is your complete lack of understanding about an important aspect. Microsoft has legally established a monopoly. Red Hat does not. Oracle does not. Real does not. That is why there is a difference here.

      The whole anti-government intervention argument gets a little old, especially regarding antitrust. Essentially, the argument is that there should be no intervention and let the market work. As I stated, monopolies and the antitrust laws meant to address them is specifically because the market cannot work with a monopoly. This is not a new concept. This has been completely understood for over 100 years!

      So your point is that there should be no government intervention (I will not even address the fact that this instant situation is a private company simply using a court's authority, not some statutory or regulatory intervention) and that, even when a monopoly in one market is used to obtain a monopoly in another then there is no redress. I think your point can be summed up that you not only disagree with antitrust laws and do not feel they should be enforced, you actually deny their existence.

      What happened in the browser market? There is no redress possible. It's done. It's clear that MS used its OS monopoly to obtain a browser monopoly (if you want to argue this point, talk to the hand because it's a legally established fact that this happened). But was there a way to redress the browser situation? No, there was not. It was done. Finished. What were the consequences to Microsoft? None. So where is the deterrent against future similar behavior? It's like sending a thief who stole $20 million to prison for 10 years and letting him keep the money. Sign me up for that.

      And the "... blah blah blah monopoly blah blah blah..." part is irrelevant if Sun wants a judge to force Microsoft to do something, as opposed to stop doing something.

      Your final point is just plain wierd. A court order can be to force a party to either do something or stop doing something. It's not some relevant point that Sun was seeking the court to enforce affirmative behavior from Microsoft, so your attempt at distinguishing the two is moot.

  19. wrong? you must live in an ideal world by Harbinjer · · Score: 5, Insightful

    The capitalist idea should do that, but it doesn't. What if there is no choice. What if there was only 1 car company, and they owned all the roads? What would you do, becaus even if you built your own car, you still couldn't use the roads. That's how Microsoft's lock-in with Windows and Office works. All documents in office format, that all other businesses use, and Office only runs on windows. The capitalist system works fine when there is competition, and at least somewhat fair competition. When 1 company controls the market, that's not capitalism, it might as well be the government like in communism.

    Thankfully that is changing slowly, but 3 years ago it was almost that bad.

  20. If I understood the original idea correctly... by jd · · Score: 4, Interesting
    The idea was that:
    • Microsoft wrote a crippled version under the Java name, which Sun sued over (and won)
    • That they then renamed their "Java" (amongst other things) that, in effect, created a blockade, preventing Sun from reaching the Windows market
    • That Microsoft, as a de-facto monopoly, had certain duties and obligations in allowing competition, which would not normally exist in a genuinely free market
    • That Microsoft had a past history of "knifing the baby" (their words, not mine) when it came to competitor's products - using their enormous capital and userbase to exterminate products that competed with their own
    • That Microsoft - already developing their .NET product - was acting in a manner that would make alternative products impossible, and were likely (based on past experience - re: DR-DOS) to make Java actually impossible to run, whether consumers wanted it or not


    On the basis of all these points, it would be a perfectly normal, natural, sane reaction to say "hey, you can't do that!". The Libertarian view of zero (or near-zero) Government only works if one person doesn't have absolute 100% control over the desktop, the OS, the hardware (they tell Intel what to build!), the API, 95-98% of the consumers, and enough money to buy out dissenters if they somehow survive all of this.


    When someone has absolute control of 5 markets and has declared intent to obtain monopoly over 5 more (portable code, wireless, TV, servers and ISPs), fair competition doesn't exist. Competition in any sense does not exist.


    Should Microsoft actually acquire monopoly status in all ten industries, then Microsoft will be the only voice you will ever hear. Dissent could only be expressed via a Microsoft product and, as such, be eliminated.


    Think about this, for a moment. Microsoft has violated anti-trust laws, been found guilty, continued to violate those same laws, and the States that haven't settled yet are (despite having enough evidence to fight on) unable to do so. Why? Because you can't fight City Hall - when it's a partly-owned subsiduary of a corporate giant.


    We need to remember that this is NOT a typical case. The precedent is unlikely to reoccur even once in the next 300 years. There has never been a power in the US this absolute. This isn't about Us VS Them, or Govt VS People. This is about whether the Right To Choose ANYTHING AT ALL will still exist when 2010 comes round.


    The use of a monopoly in one area to create a monopoly in another is illegal. The use of FIVE monopolies to slowly engulf the entire field of technology should be no more acceptable. It's not as if it's any better!


    People have tried protests. They've tried civil disobedience, even. However, Microsoft aren't a threat to human life, so you can't really call out the National Guard. Libertarians would have us believe that guns can protect our rights. But no gun in the world will protect you against a corporate entity that spans the globe, the minds of people, and even the fabric of our lives.


    There's nothing we can do to stop the rot. The only people who can are the judiciary, because that is what the judiciary is there for. To stop evil that cannot otherwise be touched. To act as a last-ditch defence against things that can escape or evade every other protection we, as individuals, can place in front of us.


    We HAVE to rely on the legal system, because the legal system is the only thing we have left to rely on.

    --
    It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
  21. Even more important by poptones · · Score: 4, Insightful
    More importantly than that, it also caused tens of thousands os users to say "well, java never works right on this machine anyway" at which point they just disable it because they fear it might be a "security problem" and it's so incredibly easy to just shut it down completely.

    In a way, shipping the "broken" java was doing Sun more harm than not shiping java at all, since it gave MS so many more opportunities to make java look bad.

  22. Whizzle. Fizzle. Bang. by c0d3fu · · Score: 5, Interesting

    Anyone here surprised? It is difficult to hold Microsoft and hundreds of other M.N.C.'s accountable for their actions as they are having to conform to the rules of individual countries less and less.

    Corporations have become world-wide economies in and of themselves; of the 150 largest economies in the world, 97 are multinational corporations! Their influence upon important governments world-wide is steadily growing as they amass tremendous amounts of wealth and influence. Governments fear cracking down on them for fear of economic and political repercussions. In the last 30 years, new supranational authorities have emerged worldwide; big global players that carry tremendous capacity for power. Microsoft, though off to a poor and late start in this arena, is one of them.

    A software producer can write whatever it wants into its operating system and it is perfectly legal. Though it sounds dreadful, Microsoft advertising its own services in Windows is a huge mistake on the part of the corporation - it will turn large number of people off. That's part of the reason all the .NET promo died off. Competitors such as OSX, Lindows, and Red Hat will gain ground from such nastiness.

    It is easy to criticize Microsoft. Keep in mind that Windows is a standard, something desperately needed in a world with hundreds of different programming languages, operating systems, and a plethora of different types of hardware and (OMG!) media storage out there. Take Sony for instance. Sony uses Stick Media not because it is better, but because it is non-standard and they can charge mucho dinero for it. They could have easily conformed to a standard media with a dozen other companies if it economically beneficial. Granted, everyone is conforming to Microsoftâ(TM)s standards, but itâ(TM)s better than another long-standing war of software standards such as that between IBM-Compatibles and Apple Computers. Even Linux doesnâ(TM)t even conform to a set of unified standards (though United Linux will theoretically change that).

    Microsoft needs reform. It will be difficult to force it to do so, as it has a tremendous amount of influence. Ideally, a global standard operating system needs to be developed. We need a U.N. resolution. :)

    --

    [c0d3fu]: jwjb62@umr.edu || james@macrohub.com
  23. There's a much larger problem here than just Java by Matt+Ownby · · Score: 4, Insightful

    The main problem is that the stuff that comes pre-installed with Windows and/or Windows Components (Media Player, Internet Exploder) is the stuff that everyone uses, whether it's better or not.

    If Microsoft suddenly started bundling Quicktime with Windows Media Player and suddenly forced users to manually download and install plug-ins to use file formats such as .WMV or .ASF, do you think any web sites would offer content in .WMV format? No, all web sites would offer stuff in Quicktime format by default because they'd know that they'd be able to reach the greatest number of users CONVENIENTLY. No company is going to want to tell users "We really want you to view our product, but you'll need to download this plugin to do so." All companies will say "We really want you to view our product, therefore we're going to use a format which you know you will already have pre-installed!"

    Microsoft has pulled this BS time and time again. The law ought to be that if Microsoft ships with Windows Media Player pre-installed, that it must also pre-install all of its competitors too. If it ships with Internet Exploder pre-installed, it must ship with other browsers pre-installed too. Yeah this sounds kind of unreasonable, but there is a precedence. Remember how Windows 95 shipped with a bunch of shortcuts for other ISP's such as AOL?

  24. Re:Hate to say I agree, but... by JimmytheGeek · · Score: 4, Insightful

    There ain't no such thing as a true capitalist society. Inevitably you get market-deforming agglomerations of power. In a company town, there's no voluntary association with the only source of goods and services. Oligopoly/monopoly is a very different animal and obliterates the "free market" basis for libertarian thought.

    That's why I'm disgusted with Republicans - they aren't acting like conservatives. They are anti-market and pro-business, and business has plenty of power vs. consumers as is.

  25. Re:Yes, this makes sense by GooberToo · · Score: 4, Interesting

    You obviously never followed the topic.

    The "Insightful" moderation is simply sad.

    This is more like you burning down my house, on purpose, and a judge says I'm allowed to live in your house until restitution is made by you, while my house is being rebuilt. Then, these other judges come along and say, "woe", that doesn't make any sense. Even though you burned down my house on purpose, you shouldn't be held responsible unless the on-going legal action says otherwise. In the mean time, I have to go live under a bridge while you and the judges all laugh at me.

    This has nothing to do with marketing or product promotion. This has to do with holding Microsoft responsible for it's very illegal and harmful activities.