Slashdot Mirror


Microsoft is the Industry's Most Innovative Company?

mjasay writes "According to a recent analysis by IEEE, Microsoft's patent portfolio tops the industry in terms of overall quality of its patents. And while Microsoft came in second to IBM in The Patent Board's 2006 survey, its upcoming 2007 report has Microsoft besting IBM (and even its 2006 report had Microsoft #1 in terms of the "scientific strength" of its patent portfolio). All of which begs the question: Just where is all this innovation going? To Clippy? Consumers and business users don't buy patents. They buy products that make their lives easier or more productive, yet Microsoft doesn't seem to be able to turn its patent portfolio into much more than life support for its existing Office and Windows monopolies. In sum, if Microsoft is so innovative, why can't we get something better than the Zune?"

421 comments

  1. Prediction for this thread: by Anonymous Coward · · Score: 3, Insightful

    265 comments making "humorous observations" about Microsoft and innovation being used in the same sentence. 0 that contain any actual humor.

    Just call it a hunch...

    1. Re:Prediction for this thread: by HTH+NE1 · · Score: 4, Funny

      265 comments making "humorous observations" about Microsoft and innovation being used in the same sentence. 0 that contain any actual humor.

      Just call it a hunch... Damn, my mod points just expired moments before trying to mod you Insightful, AC.
      --
      Oh, say does that Star-Spangled Banner entwine / The myrtle of Venus with Bacchus's vine?
    2. Re:Prediction for this thread: by sm62704 · · Score: 0, Offtopic

      Damn, my mod points just expired moments before trying to mod you Insightful, AC.

      Doesn't matter, I'm invited to metamoderate several times a day and you would have lost karma for bad modding. The post showed no insight whatever, added nothing to the discussion, and backhandedly insulted slashdot's readers. In short, it was flamebait. And I still havent caught up on my sleep after the night before last.

      First, he could have waited until someone actually commented before trying to predict the future, especially since a quick scan of the comments so far shows that his crystal balls are shooting blanks. At least he didn't say anything about Frosty the Yellow Snowman.

      Second, he seems to have a problem with anyone making jokes about Microsoft.

      Third, he thinks such jokes wouldn't be funny.

      Fourth, funny is in the mind of the beholder.

      I have a hunch if I were at MS HQ right now I'd be dodging chairs.

      FIRST POST! ...at least, first post with a bad Ballmer chair joke. So I'm fulfilling the AC's lame prophesy. Lets see, what else can I come up with?

      Imagine a beowold cluster of flying chairs (damn that was lame. ok... try again...)

      In soviet USSR, microsoft innovates YOU! No?

      Um, something about MS patenting Natalie Portman and her pony named Hot Grits?

      Sorry, I got nothin. Tough room.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    3. Re:Prediction for this thread: by Anonymous Coward · · Score: 1, Insightful

      > making "humorous observations" about Microsoft and innovation

      Who needs comments with a submission like that? Patents and innovation are unrelated and Microsoft are a prime example. Perhaps if MSFT execs stopped screaming "innovation" so desperately, they wouldn't be (rightfully) derided for it?

    4. Re:Prediction for this thread: by 192939495969798999 · · Score: 1

      Microsoft: the best innovation money can buy.

      How's that one?

      --
      stuff |
    5. Re:Prediction for this thread: by Anonymous Coward · · Score: 0

      My prediction: an equal number of posts by Microsoft apologists, none of which will contain any substance or examples of actual Microsoft "innovation."

      But that's just a hunch, too.

    6. Re:Prediction for this thread: by jagdish · · Score: 1

      I predict 640 comments.

    7. Re:Prediction for this thread: by Eggplant62 · · Score: 1

      And none of them even wondering who paid IEEE for that FUD piece.

    8. Re:Prediction for this thread: by antek9 · · Score: 2, Funny

      Just 360 for now. D'oh! Innovation of the year: the shift from blue (screen of death) to red (rings of death).

      --
      A World in a Grain of Sand / Heaven in a Wild Flower,
      Infinity in the Palm of your Hand / And Eternity in an Hour.
    9. Re:Prediction for this thread: by Your.Master · · Score: 1

      Freaky. I clicked this link when there were exactly 265 comments.

      And now, with this post, nobody else can have that glory.

  2. My only guess is that it is the handheld OS!! by richardkelleher · · Score: 1

    It must all be going into the handheld OS or maybe into the game console. Those are about the only MS items I don't deal with on a regular basis. I do have to admit that the latest SQL server has some nice things in it.

    1. Re:My only guess is that it is the handheld OS!! by FredFredrickson · · Score: 5, Insightful

      I do have to admit that the latest SQL server has some nice things in it. How about a LIMIT keyword. Yeah that'd be nice.
      --
      Belief? Hope? Preference?The Existential Vortex
    2. Re:My only guess is that it is the handheld OS!! by omeomi · · Score: 1

      Is there really not a LIMIT? That's insane...

    3. Re:My only guess is that it is the handheld OS!! by FredFredrickson · · Score: 5, Informative

      As far as I know, T-SQL only allows top(). Whereas MYSQL allows Limit X, Y, which allows you to basically "page" results to show, say records 5-10. T-SQL makes it redundant:

      MYSQL:
      SELECT * FROM records LIMIT 5, 5

      T-SQL
      SELECT TOP(5) * FROM records WHERE id NOT IN (SELECT TOP(5) * FROM records)

      They both select records 5-10, but one is more redundant. (and possibly more memory intensive, slower, etc)

      --
      Belief? Hope? Preference?The Existential Vortex
    4. Re:My only guess is that it is the handheld OS!! by Anonymous Coward · · Score: 0

      There is TOP, but it only takes one parameter. If you are doing a stored procedure it is still pretty easy to do paging and things with just TOP.

    5. Re:My only guess is that it is the handheld OS!! by plague3106 · · Score: 2, Informative

      You can do that, just not with a limit keyword:

      USE AdventureWorks;
      GO
      WITH OrderedOrders AS
      (
              SELECT SalesOrderID, OrderDate,
              ROW_NUMBER() OVER (ORDER BY OrderDate) AS 'RowNumber'
              FROM Sales.SalesOrderHeader
      )
      SELECT *
      FROM OrderedOrders
      WHERE RowNumber BETWEEN 50 AND 60;

    6. Re:My only guess is that it is the handheld OS!! by dgatwood · · Score: 2, Informative

      Of course, neither of those syntaxes is ideal. An ideal request syntax would provide a similarly simple syntax for making a query, saving the query results temporarily, and parceling them out to you in the requested quantity instead. That way, you don't run the risk of presenting things twice or skipping things as new rows are added to the table and old ones are deleted. It should also be possible to query the current data set against the results of that prior query, generating a new query with any new rows appended to the end (or beginning if you are parceling it out from the end).

      That would not only be more correct, but also more efficient (assuming you eventually view most of the records), as you would only need to perform the filtering part of the select statement once per entry in the database instead of, on average, (n/2k) times per record, where n is the number of records and k is the number taken at once.

      Quite frankly, I'm surprised such a feature hasn't been built into the SQL syntax decades ago. (Yes, I know that you can always store a complete set of matching primary keys in a new row of a "results" table and then query the query results that way, but that's a lot of extra work and doesn't buy you as much of an efficiency gain as if the database could do it for you under the hood.)

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    7. Re:My only guess is that it is the handheld OS!! by Randolpho · · Score: 1

      Note that ROW_NUMBER() is only available in SQL Server 2005. In SQL Server 2000, you had to do a TOPped TOPped subselect, which was fast for early pages (depending on the query) but DAMN SLOW when you wanted, later pages.

      --
      "Times have not become more violent. They have just become more televised."
      -Marilyn Manson
    8. Re:My only guess is that it is the handheld OS!! by kwark · · Score: 1

      Ehhh, all you need is a serverside cursor and a persistent connection (to the resultset). No need to have this in the server, stuff like odbc/jdbc is sufficient.

    9. Re:My only guess is that it is the handheld OS!! by Ash+Vince · · Score: 1

      As a web developer I know which I prefer:

      LIMIT [offset,] recordcount

      This is much easier to type, and since it is something I need to type at least once per day when checking tables for the sort of typical values a column contains this is important. This will probably illicit a response along the lines of why don't you just remember (too many tables in our main app, let alone each column in each table) or have a schema you can reference (we do, but since I am usually in a query browser anyway I find a quick random selection of 10 adjacent rows easier and more useful).

      Whenever I code for T-SQL it always amazes me how quirky it is. MySQL is much more geared towards hand crafting queries in a text editor and them executing first time. T-SQL always used to annoy me with it's fussiness about the order you specified tables when using JOIN's. I always assumed that T-SQL was about encouraging developers to use query mangler to build SQL statements and hence buy an extra dev licence of SQL Server.

      T-SQL always had the edge by allowing you bypass its annoyances by using stored procedures and views but this has now changed since MySQL 5.

      --
      I dont read /. to RTFA, I read /. to offend people in ignorance.
    10. Re:My only guess is that it is the handheld OS!! by Doctor+Faustus · · Score: 1

      Does anything but MySQL have a Limit keyword? Oracle has a rownum pseudocolumn, but you have to put everything in a subquery if you also want to specify the order.

    11. Re:My only guess is that it is the handheld OS!! by Doctor+Faustus · · Score: 3, Interesting

      T-SQL always used to annoy me with it's fussiness about the order you specified tables when using JOIN's
      I wasn't good enough to notice when I was using SQL Server 6.5, but I've never noticed such a thing in 7, 2000 or 2005.

      On the one project I used MySQL for, I was relieved to discover that it finally supported subqueries, but they ended up being unusably slow because the optimizer couldn't seem to do any optimization between the inner and outer queries. I ended up using Java code for what I would've just done with a subquery in SQL Server. Of course, now I'm mainly working in Oracle, and I have an almost opposite complaint; subqueries (and frequently several of them) seem to be the only way to accomplish a lot of things that wouldn't have taken much thought in SQL Server.

      T-SQL always had the edge by allowing you bypass its annoyances by using stored procedures and views but this has now changed since MySQL 5.
      I've only done stored procedures in SQL Server, Oracle, and barely in Informix. Informix procedures just suck unreservedly. Oracle PL/SQL is a decent procedural language, but the interface to regular SQL can be a bit awkward, and there's entirely too much iterative code needed for my taste. T-SQL is rather limited as a procedural language, but seems to do a lot better at letting you stay within set-based logic.
      What are MySQL procedure like?

    12. Re:My only guess is that it is the handheld OS!! by antek9 · · Score: 1

      It must all be going into the handheld OS or maybe into the game console.
      That leaves the handheld OS, then. Or maybe the Squirting (TM) feature of the Zuuune.
      --
      A World in a Grain of Sand / Heaven in a Wild Flower,
      Infinity in the Palm of your Hand / And Eternity in an Hour.
    13. Re:My only guess is that it is the handheld OS!! by Anonymous Coward · · Score: 0

      postgreSQL has LIMIT and OFFSET

    14. Re:My only guess is that it is the handheld OS!! by Allador · · Score: 1

      T-SQL always used to annoy me with it's fussiness about the order you specified tables when using JOIN's SQL Server doesnt care what order you declare the tables in when doing joins.

      The joins are performed in the order that the ON = statements are declared.

      That being said, I do wish there was a LIMIT , like in MySQL. Just so much easier.
    15. Re:My only guess is that it is the handheld OS!! by Anonymous Coward · · Score: 0

      Actually, you can do paging just fine in SQL Server 2005 using something like this:

      SELECT ROW_NUMBER() OVER (ORDER BY somefield) as Row, *
      FROM records
      WHERE Row >= startindex AND Row = endindex

    16. Re:My only guess is that it is the handheld OS!! by plague3106 · · Score: 1

      Yes, which is why I posted this. Its a new feature not many know about, and I only recently discovered it myself.

      FWIW, the OVER keyword is pretty powerful, and you can do other functions with it besides row_number.

      Still, better late than never.

    17. Re:My only guess is that it is the handheld OS!! by ShatteredArm · · Score: 1

      I'm not normally one to praise Microsoft, but SQL Server is something they got right, particularly 2005. Yeah, there's no limit keyword, but I really don't see the quirkyness you're talking about, and I can crank out T-SQL far quicker and more productively than MySQL. And no T-SQL programmer I know uses a query mangler.

      It's not like paging is so difficult to do with sql server... Just use an identity field, store the last id, and SELECT TOP(n) FROM TABLE WHERE ID > @lastID. Or, if you're using 2005, use the common table expression.

  3. Did they include... by nog_lorp · · Score: 5, Interesting

    I wonder if they included Microsoft patents such as their Virtual Desktop Pager patent? (http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&u=%2Fnetahtml%2FPTO%2Fsearch-adv.htm&r=1&f=G&l=50&d=PTXT&p=1&p=1&S1=(Microsoft.ASNM.+AND+%22Virtual+desktop+manager%22)&OS=AN/Microsoft+and+) Honestly, a vast portion of Microsoft's patents are complete bullshit that should NEVER have been awarded. Remove cases of OBVIOUS prior art (Linux has had virtual desktop pagers as described in that patent forever, and when they received this patent Microsoft had never used such a thing), and Microsoft's patent portfolio is shit. ~nog_lorp

    1. Re:Did they include... by Anonymous Coward · · Score: 0, Interesting

      Call the whaaaaaaaaaaaaaambulance.

      Some 'facts' for yah:
      I can get a patent for something I have never used, or heck, doesn't even exist yet. This is the nature of the system. I am protecting my concept or idea. The point that MS didn't actually use this when they got the patent has a high b!tch and moan factor but absolutely no pertinance factor.

      Xnix did not patent this. Microsoft did. Now, here we go, explain to me how they are evil because they have some common sense and foresight and actually comprehend how the world beyond 0 and 1 works...

    2. Re:Did they include... by jedidiah · · Score: 1

      Because it is theft.

      It is theft with the state as accomplice.

      Patents are meant to encourage people to disclose useful ideas. It's not intended to a state granted monopoly or corporate welfare or some sort of cash cow.

      Patents are supposed to be NEW things.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    3. Re:Did they include... by allcar · · Score: 1

      Xnix did not patent this. Microsoft did. IANAL, but that's not the point. If it was already in use, that's prior art and the patent should not have been granted.
    4. Re:Did they include... by ByOhTek · · Score: 1

      (1) the patent was filed in 2002, while they didn't have anything out then, I've been using the microsoft power toy that patent describes since around 2005.
      (2) Read the patent. It's not patenting virtual dessktops, it's patenting accurate thumbnails of virtual desktops and using those to swich between the desktop (as previews). I'm not sure I've seen anything remotely as described before beryl on a *nix system. Is there anything that had this feature prior to 2002?

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    5. Re:Did they include... by nog_lorp · · Score: 1

      Exactly. Patent-farming to stop competition is just flagrant abuse of the patent system, albeit legal. Patent farming by patenting others' technology that you have no right to is flagrant ILLEGAL abuse of the patent system, and whatever lazy ass/bribed patent officers who granted it should be imprisoned.

    6. Re:Did they include... by ByOhTek · · Score: 2, Insightful

      Patents are meant to encourage people to disclose useful ideas. It's not intended to a state granted monopoly or corporate welfare or some sort of cash cow.


      Read up on patents. A state granted monopoly (temporary) is EXACTLY what a patent provides. Without them, there would be no incentive to publish the patent. It is a payment/compensation deal.

      Make sure everyone knows about it, in exchange, no one can use it without your permission until the patent expires. Once the patent expires, it's fair game.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    7. Re:Did they include... by ByOhTek · · Score: 1

      May I ask what software used this previously? I'd actually like to know because so far, I've not found anything on a *nix system to do the same thing (short of beryl, which came after 2002, and isn't completely stable yet).

      The concept is a preview of a virtual desktop (similar to what you would see in the virtual desktop manager power toy for Windows XP). If it actually performed well (unlike the XP app, which is a bit laggy), I'd love to have something like that on my machine at home.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    8. Re:Did they include... by s4m7 · · Score: 4, Informative

      [...]accurate thumbnails of virtual desktops and using those to swich between the desktop (as previews)[...] Is there anything that had this feature prior to 2002? The Enlightenment window manager's desktop pager has done that since 1998, possibly earlier.
      --
      This comment is fully compliant with RFC 527.
    9. Re:Did they include... by nog_lorp · · Score: 1

      Alright, they elaborated on claim 1 a fair amount between the application and the accepted patent, but it essentially says 'a scaled depiction of the desktops, with window outlines proportional to the windows on those desktops', which I'd seen before 2002 on linux desktop managers. Note that depiction doesn't necessarily mean thumbnail, the gray desktop pagers with all the windows outlined are also depictions.

    10. Re:Did they include... by mr_mischief · · Score: 4, Insightful

      A state granted monopoly (temporary) on something you invented yourself which is not someone else's prior art is EXACTLY what a patent provides.

      There, fixed that for you.

    11. Re:Did they include... by dclydew · · Score: 1

      Yep... I had "previews" of my virtual desktops in '99, and I wasn't exactly dealing with the cutting edge.

      --
      Get a life, not a lifestyle. - Hikem Bey
    12. Re:Did they include... by jimicus · · Score: 1

      I was using OLVWM in Solaris in 1997 which boasted virtual desktops. It was getting pretty elderly then.

    13. Re:Did they include... by xouumalperxe · · Score: 2, Informative

      Enlightenment (release E16) does that. A wee bit laggy on my old P2-generation Celeron, 300 MHz laptop, with 320 megs RAM, so it should run fine on modern systems.

    14. Re:Did they include... by josephdrivein · · Score: 1

      ...patenting accurate thumbnails of virtual desktops and using those to swich between the desktop (as previews). We should prevent people from patenting trivial things like this one. It would be better to patent the idea of the desktop, or of the virtual desktops instead.

      As others pointed out, there's prior art. This patent is probably unenforceable.
    15. Re:Did they include... by init100 · · Score: 1

      The concept is a preview of a virtual desktop

      You mean like a virtual desktop pager? I had one in Fvwm2 almost a decade ago.

    16. Re:Did they include... by init100 · · Score: 1

      it's patenting accurate thumbnails of virtual desktops and using those to swich between the desktop (as previews)

      This sounds like an obvious extension to the virtual desktop pager used by several window managers already ten years ago. Sure, they didn't actually keep a scaled down picture of the window with contents, but rather a proportionally accurate gray rectangle for each window. Still, you are not supposed to be able to patent obvious stuff, and using a scaled image of the window instead of a gray box is certainly obvious.

    17. Re:Did they include... by Anonymous Coward · · Score: 0

      Afterstep did this on FreeBSD in mid 90's.

    18. Re:Did they include... by UtucXul · · Score: 1

      I'm sure the real UNIX greybeards are laughing at us for these comments, but I'm pretty sure I remember virtual desktops on a SGI in 1996 (which having just upgraded to Windows 95 recently on my own computer, was extremely impressive).

    19. Re:Did they include... by Anonymous Coward · · Score: 0

      May I ask what software used this previously?

      My best guess for "first" is SGI's 4dwm window manager, which provided a (relatively powerful) pager app that displayed a "mini view" of the desktops, along with rectangles to scale (no snapshots of window contents, though. I think it gave window titles on mouseover) which you could drag around, etc. I used the SGI workstations back in 2000 or so, and they had already been around for years before that. Scaring up a screenshot of 4dwm itself is a bit tough, I don't think anyone cared about this stuff back then, but here's a shot of "windows like 4dwm" shell for windows that has the pager displayed: http://members.at.infoseek.co.jp/semishigure/images/4dwm.jpg That virtual desktop manager for windows seems to be the one here which was last updated this year, but has links to reviews from 2003/2004. http://content.answers.com/main/content/img/CDE/_MOTIF.GIF shows the "SCO Panner" which operated in a similar fashion.

    20. Re:Did they include... by bangthegong · · Score: 1

      Agreed. I used to work at IBM for a short while, and whatever their faults otherwise, the research they do in so many technology areas is absolutely amazing (and I only saw a little bit, the tip of the iceberg). Microsoft does software mostly, and hardware sometimes and usually badly. IBM research is a vast international brain-trust looking across a broad array of the technology spectrum. According to http://www.research.ibm.com/ these areas are:

      * Chemistry
      * Computer Science & Engineering
      * Electrical Engineering
      * Materials Science
      * Mathematical Sciences
      * Physics
      * Services Science, Management, & Engineering
      * Systems

    21. Re:Did they include... by Anonymous Coward · · Score: 0

      And yet, if you read TFAs, IBM filed more patents than did Microsoft, but Microsoft's quality of patents completely blew away IBM's, and was rated as having the highest industry impact. This, despite IBM having 300,000 employees. MS may have some BS patents, but many of IBM's are BS as well.

    22. Re:Did they include... by bangthegong · · Score: 1

      In TFA it says they are talking about IT-related patents only. My point is that IBM has a much broader scope of research than that.

    23. Re:Did they include... by driftingwalrus · · Score: 1

      And what of tvwm? This extends back into the eighties.

      --
      Paul Anderson
      "I drank WHAT?!" -- Socrates
    24. Re:Did they include... by HighPerformanceCoder · · Score: 1

      FVWM has had this since when I started using it in 1996. I still use FVWM actually, in spite of it being so ancient. It feels superior to both Gnome and KDE. The author is coy about what the 'f' stands for, but I'll let you fill in the blanks. 'v' is for virtual.

    25. Re:Did they include... by Tikkun · · Score: 1

      You know, if this keeps up Microsoft will try to get a patent on sudo. wait...

      Come on guys, can we just convince some non-nerds that software patents are a bad idea already? Seriously, how about I get a patent on turning left in a truck? If that won't fly, why not try adding "on the Internet" to any possible verb and patenting it. With the system we have in place it's likely to go through.

    26. Re:Did they include... by Eggplant62 · · Score: 1

      KDE's desktop pager has it since before the beginning.

    27. Re:Did they include... by porpnorber · · Score: 2, Interesting

      Unfortunately, whether the idea is outside of the direct implications of the prior art (or indeed outside of what is already common knowledge) is apparently judged by people who have no technical background whatsoever. Or don't you find that your usual reaction on reading a patent is, "huh, someone found the time and money to file this" rather than "wow! I wish I had thought of that!"? I know I do. At least when I'm not thinking, "I wonder why they are doing this in such a stupid way? Has someone already locked down the obvious method?"

    28. Re:Did they include... by harlows_monkeys · · Score: 1

      Or don't you find that your usual reaction on reading a patent is, "huh, someone found the time and money to file this" rather than "wow! I wish I had thought of that!"? I know I do. At least when I'm not thinking, "I wonder why they are doing this in such a stupid way? Has someone already locked down the obvious method?"

      If that's your usual reaction, then it is just hindsight talking. Most things seem a lot easier once someone tells you how to do them.

      Heck, I've seen cases where there is a problem that is known to be a major concern in the industry. Many of the brightest engineers work on it for years, and fail to solve it. Then someone solves it and gets a patent, and the patented method is not complicated--it is pretty easy to understand. And all those people, even the ones who tried for years personally to solve the problem and failed, immediately proclaim that the solution is obvious.

      Obvious as far as patents go does not mean "I understood it pretty easily once someone showed it to me".

      Don't get me wrong. There are a lot of patents that should not have been issued due to obviousness, but that is not as common as most people think, because most people are fooled by the hindsight effect.

    29. Re:Did they include... by DarthJohn · · Score: 1

      A state granted monopoly (temporary) on whatever you can sneak past the auditors is EXACTLY what a patent provides.

      There, replaced your facts with some truthiness.

    30. Re:Did they include... by mr_mischief · · Score: 1

      Well, both are true. Mine's truer in theory. Unfortunately yours seems to be truer in practice sometimes.

    31. Re:Did they include... by dlane · · Score: 1

      I used to use a desktop pager - with miniature screenshots of the application windows on each desktop - as part of the FVWM2 window manager in 1995. I think Robert Nation wrote it...

    32. Re:Did they include... by porpnorber · · Score: 1

      If that's your usual reaction, then it is just hindsight talking. Most things seem a lot easier once someone tells you how to do them.

      Well, except for the frequency with which I can find the approach in my notes from 15 years ago, or when I can pull the relevant textbook off the shelf, or when my friends can recall the discussions we had about whether there was a business to be had from it.

      I'm certainly not saying that all patents are like this, but a positively alarming number of things that take only a few moments thought get patented.

  4. Just goes to show... by A+beautiful+mind · · Score: 4, Insightful

    ...that patents have jack all to do with innovation. Thanks for the great example!

    --
    It takes a man to suffer ignorance and smile
    Be yourself no matter what they say
    1. Re:Just goes to show... by OECD · · Score: 4, Insightful

      ...patents have jack all to do with innovation

      Exactly. Invention != Innovation.

      The iPod is a good counter-example. There was nothing particularly inventive about it, but it was quite innovative.

      --
      One man's -1 Flamebait is another man's +5 Funny.
    2. Re:Just goes to show... by lurker4hire · · Score: 4, Insightful

      While S/W patents are ... ahem... problematic, patents themselves are a pretty good indicator that a particular person or organization is at least thinking about new and innovative ways to use technology.

      Microsoft's problem isn't R&D, it isn't that they don't have smart, cool or interesting people (although I imagine it's getting harder and harder to find new smart/cool/innovative ones)... their problem is the business management.

      The management of Microsoft (based purely on my outsider observations) desperately wants to extend their monopoly as long as possible, by any means necessary. Their basic playbook, and it's getting kinda worn by now, is to make (or buy) neat tech and then force you to use their existing tech to use the neat tech. The problem with this approach is that the existing tech (Win & Office) is basically a frankenstein monster at this point and by crippling their new tech to force use of the old tech they ruin the good ideas. All this takes place well after the innovative thinking takes place.

      MS shareholders need to do something about the state of that company, otherwise they're just going to continue to piss money away and eventually find themselves just like IBM in the early 90's.

      l4h

    3. Re:Just goes to show... by enven · · Score: 0

      Yeah...Microsoft is riddle with innovation; innovation in sucking my asshole. GG to them and Vista blowing hard, really put a damper on my life with that. I don't care what anyone says, I really think XP had a better run from the start...Innovation..bah.

    4. Re:Just goes to show... by bigstrat2003 · · Score: 1

      Eh, not really. The iPod was a minor refinement of what was already out there, nothing innovative about it. Truth be told, neither Apple NOR Microsoft are innovative any more. The only major company who innovates at all (that comes to mind at the moment, anyways) is Google.

      --
      "16MB (fuck off, MiB fascists)" - The Mighty Buzzard
    5. Re:Just goes to show... by value_added · · Score: 1

      ...that patents have jack all to do with innovation. Thanks for the great example!

      But not for the reason implicit in such overbroad statements, namely that patents have a one-for-one relationship with innovation. Patents are a function of the work done by a company's legal department, whose decisions are made (or at least carefully reviewed and coordinated) at the board room level. It's a stretch to suggest that the folks directly responsible for innovation would, in the normal course of their work, have more than a parenthetical involvement with any of this.

      Put another way, the large number of patents is indicative of an aggressive and successful legal strategy, and anything more is suggestive at best, or marketing or spin at worst.

    6. Re:Just goes to show... by xouumalperxe · · Score: 1

      Eh, not really. The iPod was a minor refinement of what was already out there, (...)

      That was the GP's point all along. While you see "minor refinement of what was already out there" and state "not innovative", what I see (and I guess the GP agrees) is that the streamlined, well-designed interface they made with parts already available was a breath of fresh air.

    7. Re:Just goes to show... by xouumalperxe · · Score: 1

      It's a stretch to suggest that the folks directly responsible for innovation would, in the normal course of their work, have more than a parenthetical involvement with any of this.

      May I counterpoint that with:

      And while Microsoft came in second to IBM in The Patent Board's 2006 survey, its upcoming 2007 report has Microsoft besting IBM (and even its 2006 report had Microsoft #1 in terms of the "scientific strength" of its patent portfolio) Which suggests, quite to the contrary of your statement, that their patent portfolio is backed up by some serious R&D (I call that more than "parenthetical involvement").

      Accepting the reported superior scientific quality behind the vast portfolio of patents Microsoft has, the really interesting question is, as mentioned by other posters, where is this R&D going to?

    8. Re:Just goes to show... by OECD · · Score: 1

      ", what I see (and I guess the GP agrees) He does. ... is that the streamlined, well-designed interface they made with parts already available was a breath of fresh air.

      Precisely. The innovation was the design, not some new component.

      --
      One man's -1 Flamebait is another man's +5 Funny.
    9. Re:Just goes to show... by Anonymous Coward · · Score: 0

      Oh fuck right off. There's nothing innovative about the iPod. It's the apple hype machine kicking into full force once again and every drooling idiot out there just falling for it. There are alternatives that have better sound quality, more features, and a better interface for less money.

      I can't believe how many hypocrites are on this board that will blast microsoft for something that they'd praise apple for. Admit it, if the iPod was released in by microsoft instead of apple, you'd all hate it.

    10. Re:Just goes to show... by Metasquares · · Score: 1

      I know that IEEE measures "Patent Power" in some way that is based on citations. However, how is such strength objectively measured? Number of citations? Number of products marketed on those patents? How many scientists think the patent is useful? Scientists are subject to trends as much as others, and such a question of use tends to be predicated upon how "hot" the field is. For example, patents on SVMs were probably very well cited a few years ago; perhaps now techniques involving manifold learning and and Gaussian processes have replaced them.

      The truth is that the ramifications of any scientific discovery cannot be fully assessed. Some things definitely have more applications than others, but I don't trust anyone who claims to have an objective measure of research quality - especially a quantitative one like IEEE's. I've seen many articles I'd consider great get rejected and I've seen many articles with incorrect formulas or results that were later refuted win "best paper" awards. I've even seen the same papers get rejected at one conference then win an award at another with very few changes. Likewise, I've seen articles I'd call poor garner more citations than those I'd consider better.

      To use some famous specific examples, neural network research was stalled for a decade because people misunderstood Minsky's book on perceptrons, people once thought it ridiculous that bacteria could cause stomach ulcers, and what is now referred to as one of the centerpieces of Objectivist philosophy, The Fountainhead, was rejected by 12 different publishers before finally being published. That's saying nothing about the even more astounding controversies over, say, heliocentricism and evolution, which tend to become charged with special interests.

      All of this has thoroughly convinced me that people have no way of judging the quality of research... or ideas in general.

    11. Re:Just goes to show... by __aawkdb2598 · · Score: 1
      Dude, lead the way. If you can point me to one of these alternatives you mention I'll buy it tomorrow. I've been looking for a new player.

      Remember though:
      • Better sound quality
      • More features
      • Better interface
      • Less money

      Let's see it!
    12. Re:Just goes to show... by bit01 · · Score: 1

      While S/W patents are ... ahem... problematic, patents themselves are a pretty good indicator that a particular person or organization is at least thinking about new and innovative ways to use technology.

      My personal experience is there's very little correlation between patents and innovation.

      More likely, patents are an indication of an organization with a legal department trying to justify their existence.

      Every new law (=patent by another name) is another opportunity for a lawyer to make money at the expense of the wider community.

      ---

      Don't be a programmer-bureaucrat; someone who substitutes marketing buzzwords and software bloat for verifiable improvements.

    13. Re:Just goes to show... by Macthorpe · · Score: 1
      --
      "It does not do to leave a live dragon out of your calculations, if you live near him." - Tolkien
    14. Re:Just goes to show... by droopycom · · Score: 1

      Maybe they dont define innovation by smart, cool and interesting stuff.

      Maybe innovation is not just in the desktop, on the shinny slick button, or on the usability side of things.

      Maybe the fact Microsoft didnt sink yet is that they do "innovative" stuff on other spaces such as Enterprise stuff, IT shit and Server crap...

      I wouldn't say they are innovative though. I would just say they are pretty good at navigating their huge tanker in shallow waters. This might be more business sense, or the fact that they know how to be practical rather than innovative. In any case, even though i loathe their guts, i cant help but admire at least part of what Microsoft is: A powerhouse of Software Engineering...

    15. Re:Just goes to show... by Anonymous Coward · · Score: 0

      So basically their playbook looks like that of the original Tecmo Bowl game.

    16. Re:Just goes to show... by porpnorber · · Score: 2, Interesting

      I think I'd be even blunter than you. Microsoft's profits come from a small range of technologies and philosophies that are often old at deployment, often weak by design, and fixed by the 'vision' of a small number of powerful people with strong personalities but extremely limited technical competence. Its strategy is to protect those profits, by limiting the extent to which innovation reaches the marketplace. This can be accomplished by destroying competition financially, by acquiring and dismantling competition, by obtaining (through patent law and, if necessary, research) exclusive rights to the technology that would enable competition, by hiring the researchers who might otherwise help the competition, and by actually innovating only as an absolute last resort. This is because change, any change at all, in a Microsoft product, is a tacit admission that the existing version is not already the best it could be. While to normal people progress is just the nature of the technological world, to the personality types who reign at Microsoft it means that they were ignorant and they were wrong, and this is very, very hard for them to accept.

    17. Re:Just goes to show... by Allador · · Score: 1

      Patents in big business, particularly in big technology business, has very little to do with innovation, or legal issues.

      It's about survival and cross-licensing.

      At this point in time, patents for big tech companies is a form of MAD, and results in crazy cross-licensing and covenants not to sue.

      Basically, if you dont have a decent patent portfolio, and you compete with a big tech business that does, they will come after you for patent violations.

      You may win, if you fight, but it'll take 5-10 years and a lot of money. So companies settle.

      If you have your own big patent portfolio, then it puts you on more level ground. You then cross license, and who ever has the biggest swinging ... I mean the biggest patent portfolio gets paid a little on top.

    18. Re:Just goes to show... by Tablizer · · Score: 2, Insightful

      eventually find themselves just like IBM in the early 90's.

      IBM is damned lucky to be alive and thriving. They nearly went under in the early 90's. They were like GM on anti-steroids. They switched from hardware to services as their main focus at just the right time. It was a bold but risky move to change a big ship that fast, but they amazingly pulled it off. I thought they were toast near their low point.

      I suspect the same thing might happen to MS. When they cannot milk their monopoly anymore due to a new paradigm or OSS, they'll probably pull a desperate thrash to keep doing the same thing until the breaking point comes where they realize they must switch direction or die. They have such deep pockets and resources that they'll probably survive, but never be the monopoly that they were, just like IBM.

    19. Re:Just goes to show... by symbolic · · Score: 1

      MS shareholders need to do something about the state of that company, otherwise they're just going to continue to piss money away and eventually find themselves just like IBM in the early 90's.

      And that's a problem?

    20. Re:Just goes to show... by Abcd1234 · · Score: 1

      Patents in big business,

      I'm glad you made this stipulation. Personally, I work for a startup company who's target customers are primarily very large players. As such, it would be extremely easy for them to take advantage of us by determining how our technology works, and then using their deep pockets to fund a replacement development effort. However, our patents (and, to be clear, while I'm generally opposed to software patents, I believe ours are examples of legitimate innovation) have provided us with the necessary leverage to ensure this doesn't happen (in fact, one company we're partnered with flat out admitted that, with the knowledge they now have of our product, they probably could write their own version, but because we own the patents, it's a non-starter for them).

      In closing, I believe patents *can* have a legitimate function in spurring innovation. However, the unfortunate truth is, our case is probably an exception, rather than the rule.

    21. Re:Just goes to show... by Varun+Soundararajan · · Score: 1

      I was about to reply with Zen when I found your reply.

      Let me second what Macthorpe had recommended.

      1) Audio quality- check SNR - Zen is better. Perceived audio quality according to me is same as iPod (although I dont have great ear to tell very minor differences).
      2) More features - very much better than iPod - can play FM!! also voice recorder - and plays (m)any video formats including DivX. Shit with my iPod, I have to convert any video to mp4 and thats painful and takes 4 hours on my 2 GB machine.
      3) Better Interface - I cant say this because I found Zen interface to be very much usable, but since I have been using iPod for a year,that seems comfortable. Had I been using Zen for a long time, I m sure I would tell that iPod interface sucks though.. and yes, one thing is sure, the UI is as robust as iPod.
      4) Price - 20$ less than iPod.

      There are also one negative side (and the biggest) and is lack of many accessories customised to the zen. For example, I cant find an accessory like the Belkin Party speakers for iPod. Since iPod is the market leader, that seems quite obvious though.

      Hope this was as close as review

    22. Re:Just goes to show... by Frankie70 · · Score: 1


      MS shareholders need to do something about the state of that company, otherwise they're just going to continue to piss money away and eventually find themselves just like IBM in the early 90's.


      Well, most of MSFT shareholders don't take their cues from Linux Weenies & Mac Fanbois bitching about Vista on Slashdot.
      Check how MSFT stock has done in the last year.

    23. Re:Just goes to show... by bit01 · · Score: 1

      In closing, I believe patents *can* have a legitimate function in spurring innovation. However, the unfortunate truth is, our case is probably an exception, rather than the rule.

      Personally, I've got no problem with the idea of patents, it's just that in the real world I don't think it's possible to implement them fairly. I think it's almost entirely an accident that your company is benefiting. There are plenty of other cases where large companies are blocking startups because they've got a bigger collection of patents or some key roadblock patent.

      Patents depend on some government bureaucrat arbitrarily deciding whether some idea is truly innovative and thus worthy of protection. Only a scientist working a lifetime in a very narrow field is able to decide that and even then they make mistakes.

      There are many other problems with patents as they are currently implemented (e.g. ignoring multiple independent re-invention, arbitrary about what is [not] an idea etc.) but at their core they're based on the flawed principal that it's possible for a small government department to assess all human knowledge for originality.

      ---

      Like software, intellectual property law is a product of the mind, and can be anything we want it to be. Let's get it right.

    24. Re:Just goes to show... by QuietObserver · · Score: 1

      That is true, but I find it ironic that Microsoft's stock took a significant dive at the beginning of the year, when they released Vista; I'm not exactly sure what's caused the surge in the last three months or so, but I seriously doubt it's directly related to Vista.

      Most likely, the recent boost is related to how they claim Vista has been selling, which may be inaccurate (I've heard, through other comments on this site, that Microsoft claims all Windows sales since Vista's release as Windows sales, even if they're XP, and it's also possible they aren't giving us a fair assessment of Vista returns, or that those returning to XP aren't trying to, or aren't able to, get Vista refunds).

      Regardless, Microsoft's best stock value was around January 2000, if I recall correctly, after which they dropped steeply, losing half their value in a very short time (a few months), and they've taken seven years to get back to a point where their value is a little better than half of that peak, which is not a very good overall track record, in my opinion.

  5. the innovation is going to vista techs that no one by Joe+The+Dragon · · Score: 2, Interesting

    the innovation is going to vista techs that no one seems to want like there crappy DRM system that mess up networking when you are playing a .mp3

  6. Innovation by SaintOfAllChucks · · Score: 2, Insightful

    Does not mean making products. It is in regards to what they are doing with their money and what they are developing. Nowhere in there does it say "worthwhile" or "what people want" Hurrah for flaimbait.

    1. Re:Innovation by futurekill · · Score: 1

      My name is Inigo Montoya. You killed my father prepare to die.

      --
      The gates in my computer are AND, OR and NOT; they are not Bill.
    2. Re:Innovation by Xinef+Jyinaer · · Score: 1

      STOP SAYING THAT!

      --
      Some days I just get bored and Troll post all the memes I can think of...
    3. Re:Innovation by Cylix · · Score: 1

      Offer me money.

      --
      "You should always go to other people's funerals; otherwise, they won't come to yours." -- Yogi Berra
    4. Re:Innovation by shark72 · · Score: 1

      "Does not mean making products. It is in regards to what they are doing with their money and what they are developing. Nowhere in there does it say "worthwhile" or "what people want" Hurrah for flaimbait."

      And the summary goes off on this misleading tangent after the phrase "All of which begs the question."

      So, at first I thought that the submitter was using the phrase "begs the question" incorrectly. But, since he is actually engaging the the logical fallacy of begging the question, his usage is correct! But I'm not sure if he really intended to announce that he was about to commit a logical fallacy.

      --
      Sitting in my day care, the art is decopainted.
  7. Why bother? by Colin+Smith · · Score: 1

    if Microsoft is so innovative, why can't we get something better than the Zune?" They're coining it in from their monopoly position, they don't need to do dick.

    --
    Deleted
  8. Innovation by $RANDOMLUSER · · Score: 5, Funny

    You keep using that word. I do not think it means what you think it means.

    --
    No folly is more costly than the folly of intolerant idealism. - Winston Churchill
  9. Patently obvious by gilesjuk · · Score: 1

    That's the phrase to describe Microsoft. They patent the obvious, the things that have existed for decades purely to get one up on their rivals and to be able to say Linux stole their idea.

    Also having a good idea doesn't mean you can make it a product.

  10. Innovation Right-thinking by VoxMagis · · Score: 1

    I couldn't argue (much) against them being the most innovative company, but I see much of what they do as coming up along the lines of cloning.

    It CAN be done, but SHOULD it be done? And in that way?

    --
    -- I really need to bleed off some of this /. karma.
  11. Innovation != Good by PianoComp81 · · Score: 4, Insightful

    Just because someone comes up with a patentable idea, doesn't mean it's a GOOD idea.

    1. Re:Innovation != Good by mpe · · Score: 2, Interesting

      Just because someone comes up with a patentable idea, doesn't mean it's a GOOD idea.

      Similarly there may well be plenty of good ideas which arn't patentable.

    2. Re:Innovation != Good by Zordak · · Score: 1

      Just because someone comes up with a patentable idea, doesn't mean it's a GOOD idea. On the other hand, just because something is a BAD idea, doesn't mean it's not patentable.
      --

      Today's Sesame Street was brought to you by the number e.
    3. Re:Innovation != Good by Anonymous Coward · · Score: 0

      Come to think of it, it doesn't even have to be patentable to be patentable.

    4. Re:Innovation != Good by xtracto · · Score: 1

      Just because someone comes up with a patentable idea, doesn't mean it's a GOOD idea.

      Agree, you just have to take a look at the many patented perpetual motion machines.

      --
      Ubuntu is an African word meaning 'I can't configure Debian'
  12. IT RAISES THE QUESTION by User+956 · · Score: 3, Insightful

    Just call it a hunch...

    Yes, but does that hunch beg the question, or raise the question? Inquiring minds want to know.

    --
    The theory of relativity doesn't work right in Arkansas.
    1. Re:IT RAISES THE QUESTION by ArsonSmith · · Score: 2, Insightful

      Maybe their poor innovation is so, because it is so bad.

      --
      Paying taxes to buy civilization is like paying a hooker to buy love.
    2. Re:IT RAISES THE QUESTION by User+956 · · Score: 1

      excellent point!

      --
      The theory of relativity doesn't work right in Arkansas.
    3. Re:IT RAISES THE QUESTION by mazarin5 · · Score: 1

      For once, I think this is passable. To ask where their innovation is assumes that they are innovative, when their policy tends to be embrace and extend. In a snide sense, there is a question being begged.

      --
      Fnord.
  13. Re:And (Boy am I glad I finally found you...) by richardkelleher · · Score: 1

    I want a pony and a red truck and a Mac and... :) Happy holidays.

  14. Call me skeptical by Cleon · · Score: 5, Insightful

    The article, I notice, is rather light on details about what sort of patents they're talking about. As the OP says, people don't buy patents--they buy products. So concretely, what sort of innovation is Microsoft involved in? The article doesn't really go into that.

    Frankly, I think the patent system hasn't been a good gauge of innovation in many, many years. Patents are issued for everything from BS "perpetual motion machines" to the grilled cheese sandwich are granted routinely.

    --
    Gifts for Geeks - Stuff that really matters!
    1. Re:Call me skeptical by Anonymous Coward · · Score: 0

      Actually, A Perpetual Motion Machine is about the only thing you can NOT get a patent for.

      Most patents are granted on the basis of an application, but any patent for perpetual motion has to have a WORKING prototype, that they can leave running for a year IIRC without outside interference.

    2. Re:Call me skeptical by Cleon · · Score: 1

      Ah, you're right, my mistake. It seems that so many people were trying to get patents for their swindle machines--excuse me, Perpetual Motion Devices--that the USPTO instituted a rule that they actually have to work. However, this rule applies only to "perpetual motion" gadgets.

      My point stands, though--the USPTO grants a lot of BS patents without a second thought.

      --
      Gifts for Geeks - Stuff that really matters!
    3. Re:Call me skeptical by richie2000 · · Score: 1

      So concretely, what sort of innovation is Microsoft involved in? They innovate and invent new and bizarre ways of misusing the patent system, just like everybody else. Except MS has no corporate ethos beyond "We must keep growing!" and lots of money to buy good lawyers, so they wind up on top of the patent heap.
      --
      Money for nothing, pix for free
  15. Slanted? by Anonymous Coward · · Score: 0

    Wow, it seems like the OP's view of microsoft is completely informed by Slashdot. Perhaps she ought to do a little more research. Microsoft has a slew of other products (http://support.microsoft.com/select/?target=hub) and seems to be doing better than keeping Office on life support (http://finance.google.com/finance?chdnp=1&chdd=1&chds=1&chdv=1&chvs=maximized&chdeh=0&chfdeh=0&chdet=1198184400000&chddm=492269&q=NASDAQ:MSFT).

    1. Re:Slanted? by sm62704 · · Score: 1

      Wow, it seems like the OP's view of microsoft is completely informed by Slashdot

      You were expecting the Wall Street Journal or the Nicrosoft Times?

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  16. I don't think that means what you think it means by Overzeetop · · Score: 1

    I'm sure that there are lots of "innovative" patents in MS's portfolio, though I'm certain that many were purchased elsewhere rather than developed in house. Also, just because they are producing "innovative" patents, does not necessarily mean that their enduser products are. They seem to fall hopelessly short of the basics in reaching for the new and flashy. Example: wouldn't you think that an automated troubleshooting wizard for internet connectivity problems would flag a blank entry for the gateway? I recently found that it did not.

    Here's a recommendation for MS: when you create a troubleshooting wizard, perhaps you should sit an IT expert down and watch them trouble shoot a problem and record the steps. It would probably help a great deal more than asking if the toaster is plugged in and then declaring the problem unsolvable.

    --
    Is it just my observation, or are there way too many stupid people in the world?
  17. Zune? by Anonymous Coward · · Score: 0

    Of course, the submitter wasn't able to suppress his need to supply us with inflammatory comments. The Zune is probably as innovative as it gets when it comes to MP3 players. Does the iPod come with wifi?
    Maybe the execution wasn't terrific, but yes, this certainly is innovative enough.
    As I've seen that people are more likely to get heard when they add a disclaimer that they use linux while saying something positive about an MS product, I'll do the same:
    My UserAgent is Opera/9.50 (X11; Linux i686; U; en), and I'm proud of it.

    1. Re:Zune? by Anonymous Coward · · Score: 1, Interesting

      Yeah,the Zune is innovative... two way encrypted handshakes to ensure only MS's software can do anything with it.

      Had Microsoft made it driverless, or using the generic MTP that MS had as a standard spec, it would be different.

      At least you can find software to use ipods on Linux.

    2. Re:Zune? by Anonymous Coward · · Score: 0

      it beats the hell out of the iPod classic. Well done on that; it might be able to capture a share of the nostalgia market. Meanwhile, back in the mainstream...
    3. Re:Zune? by benwaggoner · · Score: 1

      Much bigger screen and broader format support? Certainly better than the Classic for video watching, with a lot more capacity and a lower price than the Touch.

    4. Re:Zune? by bigstrat2003 · · Score: 1

      Sorry, but at a maximum of 16 GB, the iPod Touch is NOT the wave of the future. It's a nifty device, but a lot of people have more music than 16 GB, not to mention that you can forget about watching videos on such little storage space. Apple's loss, though, if someone clones the iPod Touch and throws a hard drive in, instead of flash memory, they'll probably be able to do quite well.

      --
      "16MB (fuck off, MiB fascists)" - The Mighty Buzzard
    5. Re:Zune? by masdog · · Score: 1

      I'm sure there were people like you who said that about the 1st Generation iPods as well. 5GB is too small...people have way more music than that. Yeah, people do have more music than 16 gb, but smaller storage space will not be the reason stopping people from buying the Touch.

      Given the recent increases in flash memory storage space, I would bet the next versions of the iPhone and iPod Touch will have a lot more storage space than 16 GB.

    6. Re:Zune? by bigstrat2003 · · Score: 1

      I disagree, I think it will. Without space to hold most or all of a person's music, they won't buy the new iPod, not when there's a better option available (the iPod Classic). This is ESPECIALLY true considering that Apple wants the iPod to be a video player as well. At only 16 GB, the only people I can see buying an iPod Touch are those who buy it because they think it makes them cool, those who have enough money to not care about the cost, and just want it because it's nifty, and Apple fanboys.

      --
      "16MB (fuck off, MiB fascists)" - The Mighty Buzzard
  18. MS does have some valuable patents by jorghis · · Score: 2, Insightful

    People dont like to admit it but MS actually does have patents on some fairly innovative things (example: ClearType) that are pretty clever. Whether its good or bad that you can patent a lot of these things is debatable but at least they are producing some useful stuff as opposed to just using patents as a money grab like a lot of patent troll companies.

    1. Re:MS does have some valuable patents by Anonymous Coward · · Score: 5, Informative

      A word on Microsoft's ClearType "innovation":
      http://www.grc.com/ctwho.htm

    2. Re:MS does have some valuable patents by sparkhead · · Score: 1

      You picked a terrible example. Apple, IBM and a number of other companies had subpixel rendering long before MS. But as is their standard practice, MS claimed something existing elsewhere as new and innovative and went for a patent.

    3. Re:MS does have some valuable patents by Hatta · · Score: 1

      People dont like to admit it but MS actually does have patents on some fairly innovative things (example: ClearType) that are pretty clever.

      How is applying anti-aliasing to text innovative or clever? If they had invented anti-aliasing, that would be innovative. But Cleartype is just an obvious combination of things that already existed.

      --
      Give me Classic Slashdot or give me death!
    4. Re:MS does have some valuable patents by jorghis · · Score: 2, Informative

      That page kind of misrepresents things, the apple wasnt really using subpixel rendering it was really just saying that you had 280 half pixels and you could use any two neighboring pixels to make one pixel that you would then use normally. The algorithms involved in cleartype are way different and substantially more advanced.

    5. Re:MS does have some valuable patents by Anonymous Coward · · Score: 0

      Apple has had cleartype type technology for a long time probably all through OS X, disregarding patents.
      I always thought it was laughable looking at XP, how there was so much aliasing in the text and interface

      So I thought Vista would look better which it did slightly, but some brand new pcs I've seen had all there antialiasing flicker when you moved the page and occasionally while stationary :)

      Different perspectives of apple and windows people though...
      http://www.joelonsoftware.com/items/2007/06/12.html

    6. Re:MS does have some valuable patents by jorghis · · Score: 1

      The clever part is that they used anti-aliasing on subpixels in text. You are not the first person ive heard saying that it was obvious or that someone else had thought of subpixel rendering first. But if thats true why didnt anyone else ever do subpixel rendering for text on lcd screens before? Its very useful, if it was so obvious I would think that other companies would have done it. I'm not saying its good that its all locked up in patents, but I do believe that MS did something useful here and they were the first ones to do it.

    7. Re:MS does have some valuable patents by mingot · · Score: 1

      The Gene Ray of software development. Good fucking example.

    8. Re:MS does have some valuable patents by poot_rootbeer · · Score: 1

      MS actually does have patents on some fairly innovative things (example: ClearType) that are pretty clever.

      The concept of subpixel rendering predates Microsoft's ClearType by at least ten years. Maybe the Microsoft implementation is particularly elegant, but the basic premise was used by Apple II and Atari Lynx software long before MS Marketing created a bullet point out of it.

    9. Re:MS does have some valuable patents by RightSaidFred99 · · Score: 2, Interesting

      Lol, this isn't interesting. I'm sorry, which part of that Apple rant has anything to do with fonts? If I develop a paper plane, does that mean I can sue Boeing for developing fighter jets?

    10. Re:MS does have some valuable patents by Hatta · · Score: 1

      Maybe because it looks like crap? Anti-aliasing is great for textures in games, but text is one place where you want sharply defined edges. Reading Cleartype makes me feel like I need glasses.

      --
      Give me Classic Slashdot or give me death!
    11. Re:MS does have some valuable patents by Fweeky · · Score: 1

      Looks pretty sharp to me. Maybe you need to turn down the contrast.

    12. Re:MS does have some valuable patents by Anonymous Coward · · Score: 0

      So THAT'S why text on the Apple II looked so hideously god-awful? Because of that particular technique?

      Well, apparently Microsoft improved that one by an order of magnitude to actually make it appealing.

    13. Re:MS does have some valuable patents by game+kid · · Score: 1

      If it has a badass Gatling spitball gun made of hollow plastic lollipop sticks and rubber bands, yes.

      ...or maybe not, I just wanted to say "badass Gatling spitball gun" in a slashdot post.

      --
      You can hold down the "B" button for continuous firing.
    14. Re:MS does have some valuable patents by Hatta · · Score: 1

      Even in that GIF it looks like crap. Look at the inside upper right of the p for instance, blurry fringing. The crispness of regular text is much, much nicer to look at.

      --
      Give me Classic Slashdot or give me death!
    15. Re:MS does have some valuable patents by Fweeky · · Score: 1

      The gif has contrast turned way up, it looks almost as bad as Apple's. My setup with it turned all the way down looks nothing like it. If I look really close I can see a tiny bit of fringing, but only someone who seriously needed glasses would do that.

  19. Re:And (Boy am I glad I finally found you...) by Anonymous Coward · · Score: 0

    omg ponies!

  20. Vista by deweycheetham · · Score: 1

    What more can I say...

    1. Re:Vista by Anonymous Coward · · Score: 0

      Sucks!

  21. They said innovation, not WHINE by jeffmeden · · Score: 1, Insightful

    In sum, if Microsoft is so innovative, why can't we get something better than the Zune?

    Because you're busy complaining? Please, enlighten me as to how much more would get done if people who do ACTUAL WORK had OpenOffice to use on a daily basis. I am not a Microsoft apologist, it's just pretty damn low when you try to set up the Zune as the pinnacle of their accomplishments. Open your eyes.

    1. Re:They said innovation, not WHINE by tcc3 · · Score: 1

      And on top of that the Zune's not all bad. The device itself is very nice and competes very well with the equivalent ipod.

      I cant say the same for the software unfortunately. And they're a *software company.*

    2. Re:They said innovation, not WHINE by TheZax · · Score: 1

      And what you imply as the pinnacle of their accomplishments was created 12-15 years ago, and has not significantly changed since.

      I mean agreed Zune isn't their pinnacle, but it is recent, and he could have said vista which has to be a far bigger flop then zune.

      That being said, I'm not saying they have not innovated at all, but you might be giving them more credit then they deserve.

      --

      JWall: GUI client for IPTables
    3. Re:They said innovation, not WHINE by sm62704 · · Score: 3, Insightful

      Because you're busy complaining?

      So if the GP stopped complaining then MS would make something better than the Zune? I think you have that backwards, son. The squeaky wheel gets the grease, the open mouth gets fed. If I complain about a crappy product (not saying zune is crappy, never used one) the company may or may not take my complaints seriously and change the next iteration.

      If no one bitches then they'll pat themselves on the back. I'm not a good judge of my own product, you are.

      Please, enlighten me as to how much more would get done if people who do ACTUAL WORK had OpenOffice to use on a daily basis?

      AFAICS having office suites that interoperate with different companies' suites would smooth business quite a bit. MS Office isn't so widespread because of its quality, it's widespread because only another Office user can interoperate seamlessly with it, and because nobody ever got fired for buying Microsoft.

      I am not a Microsoft apologist

      I couldn't tell that from your post but I'll take your word for it.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    4. Re:They said innovation, not WHINE by jeffmeden · · Score: 1

      The OP just reeked of anti-MS-fanboi, which does bring out a touch of MS Apologist in me. The point I was trying to illustrate is that if he stops whining about how bad the Zune is (a solution that consists of buying one of the other MILLION CHOICES when it comes to MP3 players) that he just might see that a good bit of the world works by way of MS software. It's not the best for everyone (and no I don't want to hear about openoffice) but it is preferred by MANY people, because it just plain gets things done.

    5. Re:They said innovation, not WHINE by pembo13 · · Score: 1

      I find it insulting the implication that because I used OpenOffice solely as opposed to Microsoft Office I don't do work. Then people think that open source supporters are arrogant. What is up with that?

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
    6. Re:They said innovation, not WHINE by sm62704 · · Score: 1

      I agree with you there. It grates on my nerves, though, that everyone uses inferior software just because you have to use it because everybody uses it because nothing else is 100% compatible with it.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  22. I thought this was obvious... by __aaclcg7560 · · Score: 1

    Microsoft makes innovative software that causes the super-fast multi-core CPUs to slow down to hide the fact that programmers can't create innovative software to keep up with the hardware. :P

  23. What are you guys talking about? by explosivejared · · Score: 1

    All of which begs the question: Just where is all this innovation going? To Clippy?

    Microsoft has turned the business of chair throwing into an art. Nobody does it better than them. Why just a few short years ago, we were lucky to launch chairs more than a few meters. Even then they usually ended in a destructive fireball. Then came that luminary Ballmer. He changed everything. Next time you stand in awe of perfect chair-to-low-earth-orbit (CLEO, another MS patent), you thank Microsoft.

    Where does the innovation go?! PFFF!

    --
    I got a catholic block.
    1. Re:What are you guys talking about? by callmetheraven · · Score: 2, Insightful

      Microsoft's business is profit, fueled not by innovation, but from quashing competition, customer lock-in, bribery, intimidation, and FUD.

      Microsoft has never been in the business of making innovative anything. Customer happiness is not even on their radar screen.

      --
      You can have my SIG when you pry it from my cold, dead hands.
  24. More Anti-MS FUD by sexconker · · Score: 1

    Life support? For a monopoly?
    Life support not mentioned anywhere in the linked article.

    Oh /. ...

  25. Re:And (Yes a Pony) by richardkelleher · · Score: 1

    65' Mustang

  26. Innovation vs Management? by Anonymous Coward · · Score: 0

    Microsoft is a Ginormous company and at each level innovation can prosper or languish due to management. Microsofties are by all accounts some of the smartest people in the field, so lack of innovation isn't because of the individual contributers.

  27. Re:And by __aaclcg7560 · · Score: 1

    So what? You're not Batman!

  28. patents, innovation? by m2943 · · Score: 1

    The blog entry looks like some roundabout way to try to plant the (erroneous) idea that patents equal innovation. The number of patents a tech company obtains depends mostly on how much money they are willing to spend on patents, nothing more. Microsoft made it their goal to get lots of patents to fight open source a few years ago, they have the money to do it, and they are following through. They are no more innovative now than they were a few years ago.

  29. Microsoft Research is awesome by Lank · · Score: 5, Interesting

    Microsoft Research is really cool. They crank out cool stuff all the time! Take a look! The problem is that most of their stuff never sees the light of day. MS just gets the patent then bury it and move on. WinFS and other neat things came out of there. They hire a lot of PhDs, too... James Larus, the guy that wrote SPIM (MIPS simulator) works there now...

    --
    Gotta get me one of these!
    1. Re:Microsoft Research is awesome by badboy_tw2002 · · Score: 1

      So just to clarify your statement into easy, understandable list format:

      1. Spend money on research
      2. Obtain patent to guaruntee monopoly on fruits of research
      3. Bury technology while patent expires
      4. ???
      5. PROFIT!

      I can't figure 4 out, but I'm going to guess that they patented the business process including 4 and then applied the same process to itself.

    2. Re:Microsoft Research is awesome by wile_e_wonka · · Score: 1

      The problem is that most of their stuff never sees the light of day. I entirely agree with this. The funny thing, though, is that the page you link to has written in large print on top: "turning ideas into reality."

      [mod self up]
    3. Re:Microsoft Research is awesome by Bill,+Shooter+of+Bul · · Score: 1

      Yeah its sort of like what happened at xerox. All these wonderful things came out of R&D and management never really knew what to do with them. Technology only really leads a company like microsoft at the beginning of its life, and at the end of its life. Only when they are truly desperate. Right now I think they are burdened with their stake in legacy markets like Office and windows, where innovation must be made compatible with existing products, and must not create a product so successful that it disrupts there future revenue stream.

      Could be sketchy on these details, but I remember hearing that they created a complete team within Microsoft to create an online version of Office from scratch. It was supposedly the greatest thing since sliced bread, but was ultimately killed because they didn't think they could make as much money with it as the legacy boxed office suite. I think one note might have came from that project, but thats a desktop app. So maybe it was only partially online, in any case I'm mostly sure it was a subscription based model.

      --
      Well.. maybe. Or Maybe not. But Definitely not sort of.
    4. Re:Microsoft Research is awesome by Anonymous Coward · · Score: 0

      WinFS and other neat things came out of there.

      How exactly do you define 'came out'?
    5. Re:Microsoft Research is awesome by doktor-hladnjak · · Score: 1

      The internal name for the product was NetDocs. It was basically supposed to be a suped up version 7 years ago of what Google apps is today. Ultimately, it was killed and a few of the pieces collected together into what is now InfoPath.

  30. Are we done yet? by davmoo · · Score: 2, Insightful

    Just where is all this innovation going? To Clippy?

    Clippy has been gone for so many years now that when ever I see someone bring him/it up, it automatically diminishes my respect for the author. The only thing more lame than dragging out Clippy would be dragging out Bob, or the hoax/cliche phrase "640k is enough for anyone" crap.

    --
    I want a new quote. One that won't spill. One that don't cost too much. Or come in a pill.
    1. Re:Are we done yet? by rk · · Score: 3, Funny

      640k is enough for anyone, especially Bob and Clippy.

    2. Re:Are we done yet? by Anonymous Coward · · Score: 0

      Next thing you know they'll mentioned the old school Dr. Watson as well :)

    3. Re:Are we done yet? by sm62704 · · Score: 2, Insightful

      Clippy has been gone for so many years now...

      I wish you'd tell Tom that. I hate walking into his office. He has all those annoying sound effects turned on, too.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    4. Re:Are we done yet? by spun · · Score: 2, Interesting

      Not only are Clippy and Bob so incredibly horrible that they will be remembered forever in the annals of stupid computing, Microsoft stole the ideas behind them from Brenda Laurel, and got them all wrong.

      --
      - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
    5. Re:Are we done yet? by El_Oscuro · · Score: 1
      Microsoft has 2 "innovations" which are very unique to them and still persist in Windows (I haven't tried Vista yet):
      1. The Microsoft Sort. In every version of Windows (at least since 95), explorer sorts file names and menu items in random order. In fact, they have a lot of code to ensure the start menu remains in the random order (theres a registry key and an option to "resort") for it. Explorer also adds new files to the bottom no matter how you have told it to sort. If files are being created rapidly in a folder, explorer can put the new files in the middle of a selection list of the older files you may be trying to delete.
      2. Hide extensions of known file types - This wannabe Mac feature has been the default since Win95. Can anyone say "readme.txt.vbs"?
      --
      "Be grateful for what you have. You may never know when you may lose it."
    6. Re:Are we done yet? by Anonymous Coward · · Score: 0

      Clippy is all over in Windows XP, so I wouldn't call him gone. True, he's not shaped like Clippy, but we have the search dog, the desktop cleanup wizard, and other useless wizards that pop-up out of no where to drive me insane. Any hope that SP3 will remove that crap? I just might have to upgrade to Vista.

    7. Re:Are we done yet? by Alioth · · Score: 1

      Not necessarily; bits of Bob still live on in at least Windows XP such as the dog you get when you try a search. I hear they made Vista less patronizing, so perhaps the cartoon dog is gone from the search page.

    8. Re:Are we done yet? by Kirth+Gersen · · Score: 1

      The critical metric for analyzing disasters like Clippy is not so much how long ago it was but how long it lasted before it was fixed.

  31. Goddamnit by Anonymous Coward · · Score: 0, Informative
  32. Title is misleading by UnknowingFool · · Score: 1

    The article only mentions innovation once. At best, MS is very good at making sure their ideas are covered in terms of legal paperwork. That does not mean that they are innovative or inventive. Like IBM and other tech companies, how many of their patents are defensive in nature given the state of Intellectual Property today? True innovation means more than patents.

    --
    Well, there's spam egg sausage and spam, that's not got much spam in it.
  33. Just where is all this innovation going? by QuietLagoon · · Score: 1

    Monopoly maintenance.

    1. Re:Just where is all this innovation going? by sm62704 · · Score: 1
      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  34. Patents are not equal to innovation by bit01 · · Score: 1

    Microsoft's patent portfolio tops the industry

    ...

    Just where is all this innovation going?

    Repeat after me: Patents != Innovation.

    Patents are just a PTO bureaucrat's way of faking being a scientist who has spent a lifetime learning and extending a narrow field of knowledge.

    ---

    "It is difficult to get a man to understand something when his job depends on not understanding it." - Upton Sinclair

  35. Patents != Innovation by sunderland56 · · Score: 1

    TFA says Microsoft has a bunch of patents - but then infers that this means Microsoft is innovative, which any Slashdotter knows to be false.

    Innovation is a product of bright engineers, who are doing it for the love of engineering. Patents are a product of lawyers, who are doing it for the money.

    1. Re:Patents != Innovation by sm62704 · · Score: 1

      Patents are a product of lawyers, who are doing it for the money.

      I can't figure out why that made me think of my friends.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  36. As a software development professional by Malevolent+Tester · · Score: 1, Funny

    I'm deeply indebted to Microsoft innovations.

    For example, source control. Sure, Subversion, CVS etc all have their good points, but only VSS will randomly corrupt various setup scripts, thus giving me a free afternoon reading facebook while the the developers and DBAs try to fix our QA environments.
    SQL Server. Can MySQL offer the same guaranteed crash every time I haven't saved my foreign key scripts? Can it bollocks. Restore from live, please.
    Does Firefox have the ability to collect enough spyware that I can derive malicious pleasure from getting an underling to spend the entire morning reproducing a bug that was actually caused by some toolbar he'd inadvertantly installed? No

    Fuck open source. Microsoft is the only thing standing between me and actually having to work to earn my paycheck.

    --
    If you haven't made a developer cry, you've wasted a day.
    1. Re:As a software development professional by Anonymous Coward · · Score: 0

      LOL

      You would have liked the last place I worked. It was full of backstabbing low-lifes like youreslf. There were even self-corrupting Visual Source Safe repositories.

      Senior Dev: "You don't need the latest version of the source code."

      Me (inside): "Sigh, another one of these places"

    2. Re:As a software development professional by Malevolent+Tester · · Score: 1

      Look, ma, I've just removed my tongue from my cheek!

      --
      If you haven't made a developer cry, you've wasted a day.
  37. Fixed that for you by VEGETA_GT · · Score: 1

    Microsoft BUYS the Industry's Most Innovative Company

  38. Re:And by KiltedKnight · · Score: 1

    Maybe he's Rick James, instead...

    --
    OCO is Loco
  39. Zune? by wicka · · Score: 2, Interesting

    What the hell is wrong with the Zune 2? The reviews have been overwhelmingly positive and it beats the hell out of the iPod classic.

  40. I do know where they get them from by DJ+Jones · · Score: 1

    This is old news if anyone here has read "The world is flat" by Thomas Friedman (highly recommended). He had a chapter in there in which he speaks about his visit to one of Microsoft's research facilities in China. Every well educated 18 year old across the country competes for a few highly prized non-paying internship slots in these facilities. On top of each intern's cube were little toy cars which one intern explained they get as gifts from the company anytime a piece of their research led to a patent claim in the U.S. And you wonder why the U.S. is falling behind globally...

  41. Tag article as Flamebait by Anonymous Coward · · Score: 0

    Yes, because everyone on Slashdot hates Microsoft. So just vent it all out bois. A large, successful, multi-billion dollar, international company, like Microsoft couldn't possibly have any good ideas or products that anyone would want to buy. How else could they get so rich and powerful? Sheesh.

  42. it's going into "Innovation analysis" by wardk · · Score: 1

    it's a new science dedicated to proving ones innovation lead

  43. The Answer Is Simple by Luscious868 · · Score: 1

    It's pretty simple really, Microsoft has grown to large to truly innovate in the way that leaner companies with less of an internal bureaucracy can. Changes to code have to go through so many levels of approval that it's maddening.

    One only has to look at the length of time it took them to produce Vista to realize that.

    1. Re:The Answer Is Simple by chriscorbell · · Score: 3, Insightful

      An even more terse equivalent: "entropy". Most of the energy at Microsoft is no longer available to do work.

  44. Many ways to fail by Junior+J.+Junior+III · · Score: 1

    There are many ways to fail, to suck, or to do something wrong, and only a few ways to do something successfully, well, or right. I think, with this in mind, there's no need for further investigation into the size of Microsoft's patent portfolio.

    --
    You see? You see? Your stupid minds! Stupid! Stupid!
  45. Software Patents by Anonymous Coward · · Score: 0

    Why is the IEEE giving cred to software patents?

  46. They have some amazing new technology... by Actually,+I+do+RTFA · · Score: 5, Interesting

    Things that I have either heard of or seen coming from Redmond:

    1. Analysis of a video feed to generate a 3D model of the scene being filmed.
    2. That minority space wall, but without a special glove and working.
    3. Network LOD for fast-paced games that let one server drive hunrderds of clients.
    4. 2D neural-net based code that learned to drive a car (still only in the simulation phase.).

    Any of which could have had multiple patents. A lot of what they do is impractical as a product now (the wall for instance), but is an investment in the future. Like in the early 90's when they purchased tons of digital rights. And some, like the Network LOD, are designed for developers to tie them into MS products.

    But Microsoft, like AT&T when it had too much money, take a bunch of academics, give them money, and tell them to do cool things. After all, the whole deparment will pay for itself with a couple of nifty inventions.

    --
    Your ad here. Ask me how!
    1. Re:They have some amazing new technology... by Dolohov · · Score: 1

      You should mention the interesting research being done by them in robotics. Yeah, lots of fascinating research...

      And yet their PRODUCTS are the Zune, Xbox360 and Vista: All uninspired copies of other products or marginal improvements on their previous products (which were themselves either copies or marginal improvements).

    2. Re:They have some amazing new technology... by everphilski · · Score: 1

      And yet their PRODUCTS are the Zune, Xbox360 and Vista: All uninspired copies of other products or marginal improvements on their previous products (which were themselves either copies or marginal improvements).

      And yet they reported a profit of $13B last quarter. That's about $1B a week. Just think about that for a few minutes. $1B a week for "uninspired copies of other products, or marginal improvements of previous products". That's not bad. Now if they can leverage some of the cool stuff their R&D department is doing, imagine how much their profit will improve?

    3. Re:They have some amazing new technology... by Dolohov · · Score: 1

      This is also true. But the lesson I take away from that is that Microsoft's core business does not actually need that R&D, and that they're not good at leveraging it anyway. It strongly suggests that Microsoft should focus on those incremental improvements of successful products.

    4. Re:They have some amazing new technology... by darksith69 · · Score: 0

      Network LOD? They do some nice things with voice over network and reliability, but still most of the work is for the coders. Check http://blogs.msdn.com/shawnhar/ for the network posts.

    5. Re:They have some amazing new technology... by LocoSpitz · · Score: 1

      And what a failure those products are. Why, the Xbox 360 is only the *second* most popular console out there! And the Zune -- only *some* reviewers called it equal to or better than the iPod! Sometimes I wonder why they don't just give up.

    6. Re:They have some amazing new technology... by Actually,+I+do+RTFA · · Score: 1

      Network LOD? They do some nice things with voice over network and reliability, but still most of the work is for the coders.

      The network LOD was a server based technology to limit the packets sent, not a new protocol. The demo was for fast-paced games. Game servers often spam packets to their clients, which limits the total number in an FPS to 8, 16, or 32. They took an old version of Unreal (so the network would be the bottleneck), and showed their technology allowing 150+ clients in a single match at reasonable framerates as opposed to the 1-3 FPS it ran out without network LOD.

      Basically, the server sends updates most frequently about objects that impact the player more, with the end result being fewer packets and similar experience.

      --
      Your ad here. Ask me how!
  47. Research! by SparkleMotion88 · · Score: 1

    I don't know if this figures into the decision that MS is the "most innovative company", but you should check out what Microsoft Research is doing before you dismiss them as not doing anything innovative. Sure, they're not Bell Labs or PARC, but in the age of dwindling coporate research budgets, MS is one of the few companies left who seems to have a lot of research activity going on. I mostly pay attention to theoretical areas like programming languages and automated reasoning, and MS has made significant contributions in those fields over the last few years.

    1. Re:Research! by Grishnakh · · Score: 4, Interesting

      The thing is, where is this alleged research going? We don't see it in MS's products; this was stated in the article summary. This is always the answer trotted out when anyone questions MS's patents and MS Research.

      When IBM comes up with some great new technology, like the damascene process (copper on ICs), SOI, etc., we see it in chips pretty soon after. It was only about 10 years ago that the copper process was invented by IBM, and now every CPU has it to my knowledge, as has for quite some time. Intel invented a "strained silicon" process, and their CPUs have it now.

      So where are MS Research's efforts paying off? Research isn't any good if it isn't actually applied somewhere. Basic research with no obvious course to application has its place, such as with fundamental science like quantum physics, exploration of Mars, etc., but software isn't one of them. If you can't find a place to use your findings, you've wasted your time. Back in the 60s-70s, researchers invented new programming languages and operating systems, and pretty soon industry and academia were all using C on UNIX machines. But we haven't seen anything come out of MS Research that's made a significant difference in anyone's lives.

    2. Re:Research! by inode_buddha · · Score: 1
      "But we haven't seen anything come out of MS Research that's made a significant difference in anyone's lives."

      Of course you have. Clippy and Bob made life much more painful.

      --
      C|N>K
    3. Re:Research! by dswt · · Score: 1

      The thing is, where is this alleged research going? We don't see it in MS's products; this was stated in the article summary. Ahem. I guess if you don't use MS products, you won't see it:
      http://research.microsoft.com/aboutmsr/pastpresentfuture/contributions.aspx
    4. Re:Research! by man_of_mr_e · · Score: 1

      Actually, a lot of MS Research ends up in MS products. For example, the IPv6 stack in Vista was originally a MS Research project. Vista's voice recognition system is another.

      The problem with all fields of research (as opposed to Development) is that most often, the results are published in journals and papers years before the technology makes it into a product, then when it finally becomes "productized" everyone yawns because "that's so old", when in reality in terms of finished products it's not.

      As a good example, Microsoft is spending a ton of research on parallel processing. There are even some benefits leaking out into the real world like the Parellel Extensions to .NET.

      Another good example was Microsoft Photosynth, also a Microsoft Research project that became a real-world technology.

      Frankly, if you can't see any innovation coming from Microsoft, you're simply either biased, falling for the propoganda, or just not looking.

    5. Re:Research! by im_thatoneguy · · Score: 1

      Believe it or not Microsoft's innovations and patents quite often end up in other pieces of software that don't cary the Microsoft brand name.

      Microsoft's image processing research fund is really quite enormous. Just read all of the Siggraph papers every year and take note of how many are Microsoft Labs projects. Microsoft themselves almost never commercialize those image processing tools because they aren't a graphics software company (with the exception of the very impressive DirectX) and almost always pass off the patents and development to other companies.

    6. Re:Research! by Grishnakh · · Score: 1

      Actually, a lot of MS Research ends up in MS products. For example, the IPv6 stack in Vista was originally a MS Research project. Vista's voice recognition system is another.

      IPv6 is a MS invention? I don't think so.

      Maybe they wrote the software stack, but that's just standard software development, not a new invention. BFD.

      The problem with all fields of research (as opposed to Development) is that most often, the results are published in journals and papers years before the technology makes it into a product, then when it finally becomes "productized" everyone yawns because "that's so old", when in reality in terms of finished products it's not.

      As I pointed out with my examples from the semiconductor manufacturing industry, this isn't necessarily true (like it is, for example, with aviation). Advances in chip making go into production very quickly. With software, it should be even more true; how hard is it to implement new software advances? Not very; just compile and ship.

      As a good example, Microsoft is spending a ton of research on parallel processing. There are even some benefits leaking out into the real world like the Parellel Extensions to .NET.

      Others have been doing parallel computing for decades now; this isn't exactly new or inventive. Plus, I was looking for thing we can see now, not in the future; MS Research has been working for quite a while now, so we should be seeing their results in existing products.

      Another good example was Microsoft Photosynth, also a Microsoft Research project that became a real-world technology.

      Now this one I'll give you; this is pretty impressive on the face of it (just reading the article).

      Frankly, if you can't see any innovation coming from Microsoft, you're simply either biased, falling for the propoganda, or just not looking.

      This statement would be fair if you actually had plenty of examples to back it up. But your examples fell far short; Photosynth is definitely worthy, but the others really aren't, especially a networking stack. Linux has had an IPv6 stack for ages. Reimplementing an open standard isn't something worthy of a "research" organization or a patent portfolio. Should various open-source groups get special recognition for reimplementing the PDF standard in Evince, kpdf, etc.? It's certainly great that they did so, but this isn't what I'd call groundbreaking, inventive work.

      The only other examples I've seen that come close were the WMA/WMV codecs and such that were cited on the MS Research website someone else linked to here (although these aren't that groundbreaking either, since they compete directly with AAC, Vorbis, Theora, MPEG2/4, etc., so it's not like they stand head and shoulders above the competition). A lot of the MS Research "benefits" on that page seem to be anti-piracy technologies, which aren't useful at all to software users.

    7. Re:Research! by Grishnakh · · Score: 1

      Thanks for the informative response. It'd be nice if MS mentioned this sometime, instead of just listing the lame "innovations" that made it into their own products, like various anti-piracy technologies that help no one but themselves.

      It'd be interesting to know how much money MS makes from these image processing patents. Maybe they should spin that off into a separate company.

    8. Re:Research! by dswt · · Score: 2, Informative

      Maybe they wrote the software stack, but that's just standard software development, not a new invention. BFD. Read the RFCs. MS and MS Research staff are in the authorship of a number of the IPv6 RFCs (and others), often in collaboration with others. Up to you if you define that as invention/innovation or not.
    9. Re:Research! by Grishnakh · · Score: 1

      Ok, that's a little different from just writing a software stack, I'll admit.
      Thanks for the informative reply.

    10. Re:Research! by Bombula · · Score: 1
      where are MS Research's efforts paying off?

      One partial explanation: since it's harder to infringe upon hardware patents, that makes them easier to protect than software patents. Possibly, your list of examples is all hardware and no software simply because MS has done a good job of genuinely protecting their intellectual property by keeping everyone unaware of what it is, and what it does. Maybe a stretch, I grant you, but a possibility nonetheless.

      Alternatively, it could just be the M$ really is resting on it's laurels, especially when it comes to Office. I just started working a second job in an office to help save up for grad school, and it is simply staggering how inefficient the workflow in my office is. We basically do case-based paperwork for immigration applications to the US government. There are 6 people in the office, and if anything I am underestimating when I claim that at least 80 percent of our work could be completely eliminated with halfway decent software.

      Now here's the funny thing: we are the employee immigration services office for a major top-tier university, we use a small company's proprietary software solution, and we are cited nationwide as an example of 'best practices' in the immigration 'industry'. It's absolutely ridiculous.

      If I could sit down with the engineers at Google or Microsoft for a whole day and talk them through our process - and if they really listened - we could all enjoy software that really did eliminate a big chunk of the monkeywork that Dilbert et al make so much fun of. And not just for this one office procedure, but for thousands like it in organizations and businesses across the country. Sadly, Google and Microsoft won't return my calls...

      It's ironic too, because I'm actually someone qualified to evaluate workflow - my training is in organizational and workflow management. Ahhh, how tragic this silly life is...

      Seriously, if any of you fellow slashdotters actually work for a big vendor, you should get in touch. Microsoft needs a simple, highly customizable, wizard-driven workflow-optimizing app called - wait for it - "Workflow" in its Office suite, expressly for this purpose.

      --
      A-Bomb
    11. Re:Research! by dswt · · Score: 1
    12. Re:Research! by ILongForDarkness · · Score: 1

      But we haven't seen anything come out of MS Research that's made a significant difference in anyone's lives. Maybe not in heavy use yet, but how about Linq, parallel support for .Net? I think these will be huge in the industry, at least as big as ADO, and pthreads has been. I seem to recall reading a few interesting articles about software engineering methodologies too (the concept of "zero bounced bugs", some theory into how to estimate the number of bugs given the historical tread of bugs over the project etc). Maybe not earth shattering but interesting.
    13. Re:Research! by man_of_mr_e · · Score: 1

      I didn't say Microsoft invented IPv6, I said they've spent significant research resources on it. They were some of the first people to implement IPv6 and provide an open source license for it. Microsoft Research fellows helped with the standardization process. See http://research.microsoft.com/msripv6/

      Don't confuse Multi-Processing with Parallel Processing. They have commonality, and technically SMP is part of PP, but it's only a subset. You need to read http://en.wikipedia.org/wiki/Parallel_computing and pay close attention to the article on Automatic Parallelization. It's true that Parallel computing has been around for decades, but software still has not matured to support it. Much research is being done by many organizations on this, so don't flippantly dismiss it. And yes, it is new and inventive.

      If you want to see Microsoft Research contributions to real products, check this page http://research.microsoft.com/aboutmsr/pastpresentfuture/contributions.aspx

    14. Re:Research! by Bombula · · Score: 1
      Hey, thanks for pointing that stuff out. The first link looks like it's aimed at software development specifically, and doesn't apply at the level I was thinking of. Sharepoint's workflows are basically what I had in mind - I guess I'm just stuck in the dark ages with regular versions of MS Office that don't have Sharepoint! I don't have it on my PC or laptop, my university doesn't have it, and no employer I've ever worked for has had it. it really is a shame. I'll see if I can get it rolling in my office though, as it would save me a huge amount of work!

      Thanks for schooling me!

      --
      A-Bomb
    15. Re:Research! by arminw · · Score: 1

      ....but in the age of dwindling coporate research budgets,.......

      Does anyone know how much smaller their research budget is than their legal budget? That legal budget of course would include the cost of the army of lawyers that write up those patents and oversee the process of enforcing them once they are granted.

      --
      All theory is gray
    16. Re:Research! by shlashdot · · Score: 1

      As long as you don't mind using IE and Office and a MS server. Minor details.

      --
      Additional plugins are required to display all the media on this page.
    17. Re:Research! by Allador · · Score: 1

      I'm not sure now ... but prior to all the federal lawsuits against MS, the company was notorious in the industry for having nearly zero funds for lobbying, political activity, lawyers, etc.

      I'm sure thats changed now ... but they started it right.

    18. Re:Research! by Bombula · · Score: 1
      Oops, well, after a quick tour through Infopath 2003 it doesn't look like it'll do what our office needs without a boatload of tough customization work. Maybe 2007 is different? Basically, what we need is to be able to take existing government forms and make the fields feature-rich: editable and capable of supporting formulae, conditions, etc, etc. If we were to use Infopath, we couldn't just put form fields on top of a scanned image, as in PDF documents say, so we'd have recreate each form - that'd be really hard and time consuming since we'd have to match the exact appearance of each of dozens and dozens of government forms. I tried inserting an image in Infopath, and you don't have the option of putting it behind the text. I could make the form in MS Word instead, and try to convert it... Not sure what would happen to the image.

      Long story short, Infopath is NOT the easy, simple solution to digitizing government case-based paperwork shuffling I thought it was. Unless INfopath 2007 is radically different, and from the online demos and testdrives I tried it doesn't seem to be, there's still a hole in the market there that could be filled.

      --
      A-Bomb
  48. Hmm by Psychotria · · Score: 1

    The summary cleverly shifts the subject to Microsoft is Evil, steering away from the real issue of software patents. Nice troll

  49. Patents Ain't What They Used To Be by hyades1 · · Score: 1

    I wish once in a while people would note, at least parenthetically, that the U.S. Patent Office has become something of a joke under Bush. It's even been known to ignore its own rules from time to time.

    Could I be forgiven for wondering if this might explain Microsoft's preeminence?

    --
    I've calculated my velocity with such exquisite precision that I have no idea where I am.
  50. Unsurprising. by MartinG · · Score: 1

    The software companies that amass the most patents these days, are typically those who do not innovate. This is a perfect example of that.

    I'm astonished that there is still any real belief that number of patents filed is any kind of measure of innovation. It's pretty much orthogonal as far as I can see.

    Just because the patent systems original intended purpose was to stimulate innovation, doesn't mean that that's what it's actually used for.

    --
    -- MartinG To mail me: echo kewyjlcxyzvjfxbqwh | tr bcefhjklqvwxyz .@adgimnoprstu
  51. C# and Dotnet by belloc1 · · Score: 1, Insightful

    I think since Anders came on board there have been dome great innovations at least on the development side at Microsoft. With the addition of Visual Studio 2008 and LINQ it could revolutionize the way a developer creates applications to take advantage of multiple cores.

    1. Re:C# and Dotnet by Anonymous Coward · · Score: 0

      Yes because .Net makes everything from handhelds to mainframes run better.

      Who are you, Super Troll?

  52. They are inventing their destroyer by Anonymous Coward · · Score: 0

    They are inventing the technology that will put them out of business.

    It is the nature of disruptive technology http://en.wikipedia.org/wiki/Disruptive_technology that the company that invents it can't make money on it. Someone else takes it, develops it and puts the inventing company out of business. It has happened time after time.

    The guy who has studied this most is Clayton Christensen http://en.wikipedia.org/wiki/Clayton_M._Christensen . In his book 'The Innovator's Dilemma' he cites many cases where large companies are killed by disruptive technologies even though they were aware of them and tried to take advantage of them. I'm guessing that the same thing will happen to Microsoft. Its best hope is to learn from IBM and re-invent itself.

  53. So what by SirGarlon · · Score: 1

    According to a recent analysis by IEEE, Microsoft's patent portfolio tops the industry in terms of overall quality of its patents.
    If you throw a million darts, odds are you will hit a hundred bulleyes.
    --
    [Sir Garlon] is the marvellest knight that is now living, for he destroyeth many good knights, for he goeth invisible.
  54. Of course.... by alexborges · · Score: 1

    We CAN get something better than the zune... its called an iPod

    --
    NO SIG
    1. Re:Of course.... by Ant+P. · · Score: 1

      That's more a testament to the poor design of the zune than anything positive.

  55. Quality, not quantity by Space+cowboy · · Score: 4, Insightful

    It just goes to show that the relationship of {number of patents : innovation} is a similar one to number of {number of security patches : security of the system}. It's not how many {patents/patches} you have, it's what they do for you. Apple, for example, is in the process of building another $10 billion/year business out of the multitouch patents that it has. One idea, a few patents to ring-fence and expand it, 10 billion dollars. That's a *good* idea. Microsoft has clever patents too, (eg: cleartype), but all that leads to is an argument over whether the alternative is "blurry" or "accurate", and whether cleartype text is "clear" or "anaemic". In other words, they gained support on their own platform, but they didn't managed to leverage it too much elsewhere.

    Microsoft is *not* that innovative a company - it's bread and butter (80% of profits or so, I believe) come from corporations (not people), and corporations generally like "more of the same, please". There's nothing wrong with serving that demand, and [insert deity] knows they have clever people working there - the conclusion is that they don't *want* to be an innovative company - they're happy with the status quo, because it brings in gazillions of dollars for them. Sure, they'll have the occasional exciting new thing (how could they not, given their staff ?), but that's not the *company* focus.

    In comparison, Steve is fond of saying he likes to run Apple as a small company, with the resources of a large company. That the cash-in-the-bank at Apple is because they *do* take risks, they *do* push the envelope that little bit farther, and that having a large wad of cash to fall back on is very useful, you know, just in case... Apple is ~1/5th the size of Microsoft (I think) in terms of staff, that's a lot of people, but they're spread pretty thin ("small company", "siege mentality", "more productive"), considering they produce computers, consumer devices, a major OS, several consumer apps, several pro-apps, as well as design their own hardware, operate a chain of retail shops (where most of the staff are), etc. etc.

    Bottom line: Bill Gates said that Microsoft were one innovation away from being made irrelevant, and they work to protect their monopoly because of that. Apple's focus is more on the 'next big thing'. They take risks, and to do that you have to execute on new ideas. Apple is innovative, and its customers are people. Microsoft is protective, and its customers are corporations.

    Simon.

    --
    Physicists get Hadrons!
    1. Re:Quality, not quantity by Whiney+Mac+Fanboy · · Score: 0

      Oh FFS.

      I agree that Microsoft isn't innovative, but to hold up Apple as the innovative company is ridiculous.

      They bought fingerworks to get the multitouch IP you mention, they bought SongJam and renamed it iTunes, etc etc.

      Apple is just like MS - unable to innovate themselves, they buy smaller companies for their innovation.

      --
      There are shills on slashdot. Apparently, I'm one of them.
    2. Re:Quality, not quantity by I'm+Don+Giovanni · · Score: 1

      Did you even bother to read TFA? IBM won on quantity (MS coming in 2nd), but Microsoft won on quality (and that wasn't even close).

      --
      -- "I never gave these stories much credence." - HAL 9000
    3. Re:Quality, not quantity by MicklePickle · · Score: 1

      I agree. Just because a company produces over 5000 patents, doesn't mean they are innovative. It also doesn't mean that they can create a marketable product out of it. This is, IMHO, the issue with patents. "Back in the day" patents could be directly translatable to a marketable product. These days they define sub-components of sub-products, or even non-products that haven't even been thought of yet. (A 'just in case' patent.)

      There are some great patents, (and Microsoft does have it's share of them), but only a few see the light of day, (look at Sun's ZFS - good example there).

      --
      -- main(s){printf(s="main(s){printf(s=%c%s%c,34,s,34) ;}",34,s,34);} $p='$p=%c%s%
    4. Re:Quality, not quantity by Anonymous Coward · · Score: 0

      As a former Apple employee that just left recently, I can certainly attest to the truth of being spread very thin. The growth at Apple these past few years have been incredible, I went from managing two small departments to managing two departments that grew at the same rate that Apple's sales and popularity has grown. Simply put, it was just too much. It took me 3 months to convince my manager I needed additional headcount or to split my job into two, and the another 6 months of nothing happening except me leaving the office later and later until I was leaving at 9pm most nights. Another company offered me a 50% pay raise to just run one department, a lot more vacation time and a move up the org chart. I still love Apple products, a fan of Steve Jobs' philosophy and design sense, and will continue buying the product and stock in the future (funny because when I told someone I was leaving, they said, "but what about your employee discount?" My answer was, "With my pay raise and less hours, I don't need a discount and I'll actually have time to enjoy my purchase.") After I gave my 2 weeks notice, they posted two job postings, having decided to split my position into two, which only confirmed that I was doing two peoples' jobs. Working there was a great experience in that I learned how much I'm capable of but I'm glad I got out before I burned out. Leaving the office at 5pm on the dot? Priceless.

  56. Big Company Does Lots of Things. Film at 11. by Mongoose+Disciple · · Score: 1

    Really, all the article manages to say is that IBM and Microsoft patent a ton of shit, which is news to no one since they're enormous tech companies. The news post probably should be flagged flamebait or troll.

    All that aside, I could buy Microsoft being one of the companies that generates the most innovative ideas each year. That's more a statement of just how much different crap the company is into than any innotation per capita assessment. For example, I'd say the Wii shows more innovation than the 360, but video game console stuff is about all of what Nintendo does but it's only a fraction of what Microsoft does.

  57. Well, duh by Weaselmancer · · Score: 4, Interesting

    That's because innovation isn't measurable by the number of patents you produce. Let me tell you my patent story.

    I used to work at a company that made a widget. Details left out because of possible NDA/lawsuit goodness.

    There were 3 or 4 other players in this widget space. There are about 3 or 4 useful functions any of these widgets can do.

    One of the other players decides to patent "feature A from this widget, combined with feature B from this other widget". A multi function widget, merely taking two functions from two widgets and combining them. In other words, peanut butter is ok, and jelly is ok, but putting peanut butter with jelly is *hugely innovative* and deserves a patent.

    We held meetings and began to file patents too. They were all equally insane.

    There was NO INNOVATION going on in these meetings. Just carving up the widget patent space - that has existed for years - with each of these little companies nit-picking each other to death with patent suits and royalty fees.

    Patents do not equal innovation.

    --
    Weaselmancer
    rediculous.
    1. Re:Well, duh by barzok · · Score: 1

      Which is almost exactly what the drug companies do now. Patent drug A. Patent drug B. When the patent exclusivity is close to expiring, combine the two drugs to make "drug C" and patent that (Caduet, anyone?).

      Or, for that matter, just tweak drug A to make it time-release. Claritin vs. Claritin-D, for example.

  58. ClearType cannot be read by anyone by wikinerd · · Score: 4, Informative

    innovative things (example: ClearType)

    I have extreme difficulty to read ClearType text. I think this is related to the way the eyes of some people work and that other people also have similar problems.

    I always thought that everyone was seeing the same things as me (fuzzy text hidden in an abyss of colours) and I thought well, maybe the whole world turned crazy or what, until I told what I were seeing to some other people and I asked them what they were seeing and they said "soft black letters", and then I read about the issue a bit and confirmed that yes, I am one of these people who can't read this stuff.

    One would assume that the purpose of text is to be read rather than to look pretty. In this regard, ClearType creates difficulties for some people whose eyes can discern colour in more "resolution" than other people (ie it penalises people who have better eyes).

    1. Re:ClearType cannot be read by anyone by simp · · Score: 1

      Finally! I thought I was the crazy one in the crowd. I get a splitting headache within minutes if I read any length of text on a machine with cleartype enabled. The problem is worse for me on TFTs, on CRTs I can get away with it for some time. But CRTs are hard to find these days.

      Why people buy a shiny new 1920*1280 TFT screen and then promptly turn on cleartype is a complete mystery to me.

    2. Re:ClearType cannot be read by anyone by Anne+Honime · · Score: 1

      mod informative UP !

      You're the little boy shouting 'the empror has no clothes'

      What a relief to learn at last that I wasn't alone to see weird coloured fringes around black letters

    3. Re:ClearType cannot be read by anyone by vux984 · · Score: 1

      ClearType creates difficulties for some people whose eyes can discern colour in more "resolution" than other people (ie it penalises people who have better eyes).

      That's not a problem with ClearType its a problem with using a screen with large pixels. Get a screen with small enough pixels and the 'difficulty' goes away.

      After all, your complaining about clear type because you can apparently see the colored subpixels in use at the edges of letters. But you don't appear to complain about the white background used in so many windows... so you don't apparently see that as stripes of red-green-blue. So I suspect if the dot pitch were just a bit lower, you'd be fine with cleartype.

      e.g. a 19" screen with native resolution of 1280x1024 might have issues for you, while a 19" panel with a native resolution of 1600x1200 might be just fine.

      (And it goes without saying tha a 1600x1200 panel running at 1280x1024 will look terrible, and even 'regular' people can see the visual artifacts that result from that.)

      DLP HDTV with a spinning color wheel had the same issue, of 'rainbows' as a fair number of people could actually see the screen go red-green-blue-red-green-blue, especially on 'worst case scenes' like a white spot moving across a black screen at a decet speed'. But they solved it by adding more segments to the color wheel (effectively doubling the transition rate) and spinning it faster so that now almost nobody can see the rainbows anymore, because the transition rate is much higher than it used to be.

      The alternative solution was to use 3-DLP chips and then you don't need the color wheel. But these were more expensive (3 dlp chips instead of 1), and also suffer from the same sort of picture convergence issues you got with old CRT projection TVs. (with one chip and a color wheel there are no convergence issues because the picture is being projected from one source and we just rapidly change which color we are projecting, while with 3 chips there is no flickering/rainbows because 3 pictures are continously projected one in each colour -- but they have to be aligned, and may come out of alignment over time, requiring re-alignment)

    4. Re:ClearType cannot be read by anyone by Anonymous Coward · · Score: 0

      Oh yeah, I have similar problems with LCDs or CRT Trinitrons, as they have pixels aligned in squares. When I go with my eyes from one corner to the another, the movement of my eyes is not fluent, as they focus to some points on the trajectory, so my eyes are kind of "jumping" over the screen, which is extremely annoying. On CRTs with diagonal placement of points I don't have problems, but the pixel size must be small. So I use CRT, which has 0.20mm point size and DynaFlat screen (757).

      When I studied composition of eye and vision processing, I learned that our eye has a few neuron layers that detect orientation of objects in our vision. So I assumed that my eye is very good in seeing perpendicular lines, whereas not so good in detecting non-perpendicular angles.

      And I have problems with ClearType too; it can lead to headaches and I found it very displeasing on the screen, but only when I read fast. Otherwise I agree that shapes are more beautiful than before. Just less readable...

      I am one of those gifted by ability to search on the screen very fast; usually I beat most people when localizing a text on the screen, even authors of that text.

      Oh, and yes, I am a visual artist, doing computer graphics (3D engines, image recognition and art).

    5. Re:ClearType cannot be read by anyone by drew · · Score: 1

      I'm assuming that you meant to say that "ClearType cannot be read by everyone." I won't argue on this point, but I do know that what you actually said (that it cannot be read by anyone) is completely false. I actually decided that I like ClearType enough that I was willing to give up the increased vertical resolution from running my 2 monitors in portrait mode in order to use it. (I had tried turning ClearType on while they were still running portrait, but it did create some strange color fringing because the subpixels were not in the correct order.)

      There are a couple of things that can cause ClearType to look a lot worse than it should - running your monitor at it's non-native resolution, running your monitor in portrait mode, using a monitor with too low of resolution, or sitting too close to your monitor. It also seems to work a lot better with some fonts than others. I won't discount the fact that that some people may have good enough eyesight that they can actually pick out the individual subpixels, but as another poster pointed out, if that where actually the case, you would probably also be seeing little bits of red, green, and blue in place of the white background on this page, which I find unlikely.

      --
      If I don't put anything here, will anyone recognize me anymore?
    6. Re:ClearType cannot be read by anyone by jo42 · · Score: 1

      That's not a problem with ClearType its a problem with using a screen with large pixels. Get a screen with small enough pixels and the 'difficulty' goes away. Horse poopies. 1680x1050 in a 17" laptop screen and ClearType still looks out of focus with wierd color fringes on the text. First thing I turn off.
    7. Re:ClearType cannot be read by anyone by Ant+P. · · Score: 1

      The first thing I do when I'm forced to use windows is turn cleartype off. In doing this I realised the non-cleartype antialiasing option does _nothing at all_. Seriously. You just get jagged bitmap rendering as if you were using windows 95.

    8. Re:ClearType cannot be read by anyone by vux984 · · Score: 1

      Horse poopies. 1680x1050 in a 17" laptop screen and ClearType still looks out of focus with wierd color fringes on the text. First thing I turn off.

      So maybe you need 3560x2100 on a 17" screen. Or 7000x4200. Give it few more years. We'll get there.

      The point is that the eye has limits on what it can see, all eyes, even yours. When the dot pitch gets low enough, you'll stop seeing them. And we've got a LONG way to go. An inexpensive laserjet will do 1200dpi. That's roughly the same number of dots in a horizontal inch as most people have on the full width of their 17" and 19" monitors. So screen pixels are some 20x wider than than printer dots. And 20x taller too... meaning they are 400x the area.

      Also, another poster rightly pointed out that it makes a BIG difference whether the LCD color stripes are RGB or BGR, as cleartype would effectively be lighting up the wrong subpixel positions if the stripe order is wrong, and that would lead to very obvious color fringes, because instead of lighting up the subpixel next to the letter, it would be lighting the subpixel a row or even two rows over.

    9. Re:ClearType cannot be read by anyone by SEMW · · Score: 1

      The problem is worse for me on TFTs, on CRTs I can get away with it for some time. But CRTs are hard to find these days. Subpixel rendering is automatically switched off on CRTs. "Cleartype" on a CRT is just greyscale antialiasing.
      --
      What's purple and commutes? An Abelian grape.
    10. Re:ClearType cannot be read by anyone by Anonymous Coward · · Score: 0

      Ahem, "better eyes" means your eyes works as everyone elses not that you are unable to distinguish letters which are fuzzy becouse you only see the fuzz.

    11. Re:ClearType cannot be read by anyone by Just+Some+Guy · · Score: 1

      fuzzy text hidden in an abyss of colours

      5 karma points says your subpixel antialiasing is using the wrong layout. For example, my old Viewsonic VA721 monitor used a vertical subpixel layout:

      R|R|R|R|R|R
      G|G|G|G|G|G
      B|B|B|B|B|B

      But my newer AOC monitor uses a horizontal layout:

      RGB|RGB
      RGB|RGB
      RGB|RGB

      Every antialiasing program I've seen defaults to horizontal RGB layout. If that's not correct for your monitor, you get horrid color artifacts. I can just barely make out the color-fringed edges on my correctly-configured monitor if I lean in to just a few inches from the screen. From my normal viewing distance of a couple feet away, I can't see the effect at all.

      I have 20/15 vision (corrected), but maybe your eye transplants have a higher resolution than mine. Otherwise my money is on misconfigured antialiasing.

      --
      Dewey, what part of this looks like authorities should be involved?
    12. Re:ClearType cannot be read by anyone by Just+Some+Guy · · Score: 1

      Why people buy a shiny new 1920*1280 TFT screen and then promptly turn on cleartype is a complete mystery to me.

      I will never to my dying days understand how someone can stand to eat raw tomatoes. They do not taste good and the texture is gross.

      --
      Dewey, what part of this looks like authorities should be involved?
  59. Could someone please show me... by TofuMatt · · Score: 1
    ...where "innovation" is on this page:

    http://thesaurus.reference.com/browse/patent

    ?
    --
    -Matthew Riley "TofuMatt" MacPherson
    I have a website
  60. Hoplessly biased summary by tempestdata · · Score: 1

    I know this is slashdot and all, but the person who wrote this summary is so hopelessly biased against Microsoft its not even funny... What ever you say, think or believe about microsoft. They are an extremely successful company. Your summary makes it sound like Microsoft is crumbling and worthless, but Microsoft is as dominant as it ever was, and there are NO signs of that changing any time soon. Yes there are competing products popping up here and there, and thats really a good thing.. but not one of those competing products has yet been able to overthrow Microsoft's dominance in its core fields.

    Microsoft doesn't release more innovative products, because it simply doesn't need to. Its not trying to gain the upper edge on anyone.. When Microsoft saw Java becoming an issue to its dominance, it came out with .NET. When it saw Netscape becoming an issue to its dominance, it came out with IE.

    When you're in first place, you dont really have to run harder to increase the distance between you and second place.. you just have to run hard enough so that second place doesn't take over your first place. Instead you just conserve your energy, and use it when its necessary.. Just because microsoft CAN do more, doesn't mean it needs to. In fact, its in the companies best interests not to crush all its competitors.

    --
    - Tempestdata
  61. Monopolies and Innovation by Anonymous Coward · · Score: 0

    Microsoft does have a lot of smart people working for it - the problem is that those smart people are not in charge of designing and delivering products. Instead, these ideas are usually lost to the broken corporate model.

    Why did MS make the Zune? Was it because smart people were running the show? No, it was due to ego. Microsoft wanted to be in a "hot market" corporate-wise - not culture-wise. Same thing with the XBox. Microsoft isn't about innovation - their innovation is just a happenstance of wanting to build a huge patent portfolio with their huge sums of cash.

    Instead, Microsoft's corporate culture revolves around delivering boring retail products into an existing market in hopes to build a new monopoly.

    AT&T was in a similar position. There was no doubt that AT&T's innovation was very high - hell, I know lots of people who totally wanted to work at Bell Labs and do the coolest stuff (like mistakenly discover the Big Bang, for example). Then again, from their customer's perspective, AT&T was the company that made and rented out the 500-series desk telephone for like 25 years without any change in technology - for $1.21 per month.

    Taking away AT&T's monopoly position resulted in a ton of practical innovative products hitting the market... an innovative market that gets far stronger every year.

  62. The typical conversation goes like this... by Anonymous Coward · · Score: 0

    The typical conversation between the ivory tower academic and the front line engineer goes like this:

    Academic: I've got this great idea <blah> which *might* be incredibly popular with your customers. Here's a spit and bailing wire prototype that we lashed together.
    Engineer: Looks very promising. When will you have something that's ready for production use?
    Academic: Well, it will take another twenty million dollars and two years of effort to get it to that stage. But isn't it so cool?
    Engineer: It sure is. However, I don't have that kind of resources to risk on a "might be". Plus the release schedule is already set in stone and we're already cutting features frantically to make it. But call us back when you've got something in a more advanced stage of development. <click>
    Academic: Shortsighted @%$&)@$ fools.

  63. Best-used-before-this-date by westlake · · Score: 1
    To Clippy? Consumers and business users don't buy patents. They buy products that make their lives easier or more productive, yet Microsoft doesn't seem to be able to turn its patent portfolio into much more than life support for its existing Office and Windows monopolies

    "Clippy?"

    The Geek never learns to retire a joke that was never particurlarly true or funny to begin with.

    Slashdot will probably be still using the Borg icon for Bill Gates when the Gates Foundation wins him the Nobel Peace Prize for the fight against Malaria.

    "Life support" for Windows and Office?

    The OfficeMax gift special is an $800 widescreen Vista Premium HP laptop, dual core AMD CPU and 2 GB RAM, bundled with an HP multifunction printer, and a 6.2 megapixel HP digital camera.

    MS Office dominates retail software sales. If OfficeMax has a lick of sense, Office Home will be positioned to leave the store in the same cart as those $800 laptops.

    Microsoft took off like a rocket in its first quarter and doesn't show any signs of slowing down in the second.

  64. Compare for yourself by thelexx · · Score: 2, Interesting

    http://www.research.ibm.com/areas.shtml

    http://research.microsoft.com/research/default.aspx

    There's no real contest though. If they were course listings, one reads like MIT and the other like a community college.

    --
    "Gold still represents the ultimate form of payment in the world." - Alan Greenspan, 1999
    1. Re:Compare for yourself by hardtofindanick · · Score: 1

      No point in comparing IBM research to MS research through their websites. They both employ well respected researchers, and I do not mean Google Labs when I say researchers, these are academically well-respected people. MS research is highly respected in academic community and so is IBM research.

    2. Re:Compare for yourself by thelexx · · Score: 1

      The point is Microsoft doesn't even DO research in many of the areas IBM is in. Search for 'ibm nanotechnology lab' and compare the result with 'microsoft nanotechnology lab'. Replace nanotechnology with chemistry, same result. Heard of Almaden? IBM is heavily involved in basic materials, physics, etc. MS is concerned primarily with products. Comparing the raw scientific output done by each is what I thought the issue was.

      --
      "Gold still represents the ultimate form of payment in the world." - Alan Greenspan, 1999
    3. Re:Compare for yourself by hardtofindanick · · Score: 1

      So you're saying Georgia Tech is a bad school because it does not offer law classes compared to for example Harvard. Everyone has their agenda and plan their research accordingly. IBM having a larger area of interest doesn't make them better quality.

  65. Number of Patents an Indicator of Innovation? by kungfoolery · · Score: 1

    Unfortunate that this is used towards quantifying this as it's probably only good to gauge how well funded your army of lawyers is.

  66. Same as Xerox by servognome · · Score: 1

    Lost in the Bureaucracy

    --
    D6 63 0D 70 89 81 BB 8E 7B 7C 5F 5D 54 EA AB 73
  67. Word Count by Blakey+Rat · · Score: 5, Funny

    Words describing the article: 61

    Words bashing Microsoft: 74

  68. it's only a department by wikinerd · · Score: 2, Insightful

    If I pay a few millions and buy or even build an innovative R&D lab and let the PhDs there crank out super ideas every day and I never use them, I am not an innovative company. One department does not represent the whole company.

  69. end of line by Anonymous Coward · · Score: 0

    that microsoft still exists means humanity has failed any acid test

    sober individuals are tools of the corpo...

    sorry, wrong meeting

    "SUCK SATAN'S COCK!" - bill hicks

  70. Re:And by sm62704 · · Score: 1

    I'm Santa Claus

    Oddly enough, so am I! Just ask my daughters, they'll tell you who Santa Clause really is.

    I'm thinking they probably have patents on Bob, Clippy, stuff like that. I remember reading about a lawyer who filed a patent for his kid on swinging on a swingset and the Patent Office granted it.

    I remember something about some lame online bookstore patenting one-click shopping. Microsoft holding a shipload of patents? That doesn't surprise me. Innovative? Having a shipload of patents doesn't mean you're innovative. Does anyone really think Amazon's one-click patent was innovative?

    --
    mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  71. CD in a shoebox by Nexus7 · · Score: 3, Interesting

    Well, they got people to pay hundreds for a box with a 300 page book that nobody read and a CD.

    They practically invented the EULA for the masses.

    They entered new markets by simply buying companies and their portfolios.

    They probably weren't the first in any of these, but they perfected integrating these into a government-proof business strategy.

    So yeah, they're pretty innovative.

  72. Patently Absurd. by delire · · Score: 4, Informative

    The size of a patent portfolio cannot be a reasonable measure of innovation, especially in this case given that much of the Microsoft patent portfolio comprises bought patents: patents are bought and sold just like any other commodity.

    Secondly, a patent doesn't guarantee the given innovation ever reaches the market. To the contrary, patents are often used to protect an existing inferior product from going to market by having a monopoly over a potentially superceding product. As a result it's possible to argue that patents discourage actual innovation rather than encourage it.

    1. Re:Patently Absurd. by delire · · Score: 1

      oops, should read: "To the contrary, patents are often used to protect an existing inferior product in the market by having a monopoly over a potentially superceding product."

  73. PHBs and sales goals by Anonymous Coward · · Score: 0

    It's very simple. All of the good ideas and good intentions get leveraged by some PHB to make a product embrace, extend, extinguish, or stand out in some other proprietary way. Every good thing is twisted into a way to extend their monopoly. IE7 could have passed Acid2, but they wanted to see if they could get "good enough" to fly, without spending extra money to do more than stem the flow of users away. I get the feeling that anything that is purely good on its own, and doesn't contribute to the monopoly, gets buried behind cancelled projects and updated priorities.

  74. Bull. by iamdrscience · · Score: 1

    You can't equate patents with innovation. Sometimes it's just an indicator of how big their legal staff is. If you want to use the number of patents as an indicator for innovation, let me suggest this formula I just pulled out of my ass:

    Tripp's Law of General Innovation
    Innovation = (patents / lawyers) * engineers

    This formula obviously doesn't apply to companies which don't employ lawyers, but I can assure you, such an innovative idea can only help their score.

  75. Begs the question... by Microsift · · Score: 1, Informative

    At the risk of being labeled an insufferable know it all, the submission should read "...raises the question...," not "...begs the question...." If you think I'm being a English usage Nazi, ask yourself(raise the question), "Why would someone use 'begs the question' instead of 'raises the question'?" The only answer I have to that is that "begs the question" sounds fancier. Well, it sounds fancier, because it is fancier, or at least a little more complex. "Begging the question" is a logical fallacy where the only proof of an argument is a restatement of the premise. A simple example...

    "I think George Bush is stupid" ... "Why do you think that?" ..."Because he's not smart"

    So, why does this matter...because it's important. That begs the question...

    It matters, because when people misuse the expression they dilute the actual meaning. Some people people reading the line above might ask, "That begs what question," because the incorrect usage of this expression over time has conditioned them to have a different expectation when they hear the expression. The correct response to hearing that a question is begged, is to assess whether or not this is the case, not to wait with bated breath for the question.

    All of this raises the question, when do I use beg, and when do I use raise. The simple answer is if your asking a new question, you're raising it, but if your trying to point out that no real proof has been provided to support the premise except for the premise itself, you're begging the question.

    Flame On!

    --
    My other sig is extremely clever...
  76. Microsoft actually does real research ... by AHumbleOpinion · · Score: 4, Informative

    I don't think that means what you think it means. I'm sure that there are lots of "innovative" patents in MS's portfolio, though I'm certain that many were purchased elsewhere rather than developed in house.

    It does not seem that you are qualified to comment on the shortcomings of others, you need to work on yourself first. Those interested in what MS actually does in house might want to look at Micorsoft Research's project page: http://research.microsoft.com/research/projects/default.aspx.

    Also, out of house research is not necessarily patented. A friend did research on distributed shared computing in grad school. The project was supported by Microsoft, they had access to Windows source code, they were not restricted from publishing their research.

    1. Re:Microsoft actually does real research ... by ratboy666 · · Score: 1

      Since *I* don't have such access, there is an obvious restriction. Think about the scientific method...

      --
      Just another "Cubible(sic) Joe" 2 17 3061
    2. Re:Microsoft actually does real research ... by AHumbleOpinion · · Score: 1

      Since *I* don't have such access, there is an obvious restriction. Think about the scientific method...

      Have you? It is common to restrict access until research is complete and results published. Academics have worked that way for ages, and for good reason.

    3. Re:Microsoft actually does real research ... by ratboy666 · · Score: 1

      Somehow I don't think that I will be given access to Windows source, even after the research is published.

      --
      Just another "Cubible(sic) Joe" 2 17 3061
    4. Re:Microsoft actually does real research ... by AHumbleOpinion · · Score: 1

      Somehow I don't think that I will be given access to Windows source, even after the research is published.

      Windows source code is not required. The algorithms that are the products of the research are OS independent and there is no restriction on their publication.

  77. clippy? by icepick72 · · Score: 2, Insightful

    The author of the posting clearly has no knowledge of the state of Microsoft software and development tools today. Take one look at the .NET Framework and not only is it a ripoff of Java, but it made huge improvements like making a language-agnostic programming platform (parially due to CTS and CLI) and allowing multiple syntaxes (yes even Java-like syntax) to interoperate. Programmers can work in their language of choice and the compiled code will interoperate with all the other .NET languages which were other programmer's choices. That's one example. We have to be careful about snuffing off Microsoft because it's the right thing to do in this forum. We won't be laughing long if Microosft runs over the industry through innovation. Their latest IE8 web browser is already passing the ACID2 test. Watch out they're coming with tools that interoperate and make life easier. Sure they make a lot of mistakes on the way but if you're an innovater that's what you do. The end result is better despite the problems. You learn from problems. Clippy? Zune? Indeed that kind of attitude shows complete ignorance.

    1. Re:clippy? by geminidomino · · Score: 1

      Watch out they're coming with tools that interoperate and make life easier.

      You almost had me going until this point.

      Well played, sir. And they said satire was a dead art.

    2. Re:clippy? by icepick72 · · Score: 1

      For example, their Windows interface is already easier to use then most *NIX distributions. Their programming interfaces are becoming more powerful. A likewise sir, if you choose to continue to lie in the road you will be unsurprisingly run over. Touche.

    3. Re:clippy? by geminidomino · · Score: 1

      The UI may be more familiar to most users. "Easier" is extremely subjective.

      Their programming interfaces are useless outside of their own little sandbox. The most powerful tool in the world isn't worth much if all you can construct with it are K-Fed bobble-heads.

      You really gave yourself away, though, when you actually used the pseudo-word "interoperate." MS interoperates when forced into a corner by some force greater than itself (the EU, for example). Otherwise, it hoards.

    4. Re:clippy? by icepick72 · · Score: 1
      The UI may be more familiar to most users. "Easier" is extremely subjective.
      That's a very diplomatic answer but doesn't cut the mustard. Take a look at comparisons even here on Slashdot and you'll find the norm is not what you are trying to get at.

      Their programming interfaces are useless outside of their own little sandbox. The most powerful tool in the world isn't worth much if all you can construct with it are K-Fed bobble-heads.
      Instead K-Fed bobble-heads are amusing but a little out of context. None of the platforms operate outside of their little sandboxes. So yes, Microsoft can be blamed but so can everyone else, a moot point ....

      You really gave yourself away, though, when you actually used the pseudo-word "interoperate." MS interoperates when forced into a corner by some force greater than itself (the EU, for example). Otherwise, it hoards.
      "Interoperate" is a common word on the industry. You have a different meanining in your mind (maybe the recent news about Samba protocols). However with .NET it is entirely true to say the .NET languages all interoperate. It really provides programmers a common ground across a wide variety of experiences.

    5. Re:clippy? by geminidomino · · Score: 1

      The UI may be more familiar to most users. "Easier" is extremely subjective.

      That's a very diplomatic answer but doesn't cut the mustard. Take a look at comparisons even here on Slashdot and you'll find the norm is not what you are trying to get at. I don't have to look at slashdot, I have plenty of personal experience to pull off of. I could have merely said "After using KDE for five years, I find it much easier than Vista's UI" and just come off as contrary. Instead, I backed the statement up with the factual statement that ease of use is a subjective value highly influenced by familiarity.


      Their programming interfaces are useless outside of their own little sandbox. The most powerful tool in the world isn't worth much if all you can construct with it are K-Fed bobble-heads.

      Instead K-Fed bobble-heads are amusing but a little out of context. None of the platforms operate outside of their little sandboxes. So yes, Microsoft can be blamed but so can everyone else, a moot point ....

      As a cross-platform developer, Windows-only code is even less useful to me than the bobble-heads.

      It depends on what you mean by "interfaces." My response was working with the understanding of interfaces as "APIs", in which case you've got Win32 (or whatever it is now) for windows only, and things like Wx*, GTK, and even POSIX for far more cross-platform capabilities.

      It occurs to me now you may have meant IDEs, which still gives lie to your statement. I can use VS on windows to write windows programs. If you remove the features tied to that, VS is nothing special, whereas I can use Komodo, Eclipse, etc.. to write code on windows OR linux.

      You really gave yourself away, though, when you actually used the pseudo-word "interoperate." MS interoperates when forced into a corner by some force greater than itself (the EU, for example). Otherwise, it hoards.

      "Interoperate" is a common word on the industry. You have a different meanining in your mind (maybe the recent news about Samba protocols). However with .NET it is entirely true to say the .NET languages all interoperate. It really provides programmers a common ground across a wide variety of experiences. Only if they are .NET, microsoft only programmers. "Interoperate" means work together. .NET languages don't "interoperate" inasmuch as they compile to the same bytecode using different syntaxes. That's not interoperability. Interoperability means "operating between". Microsoft products only interoperate with Microsoft products.

      We can stop this now. MS has obviously managed to duplicate Steve Jobs' RDF.

    6. Re:clippy? by Your.Master · · Score: 1

      It is interoperability. The languages are operating in between one another. It is simply equivocation to harp on the use of "interoperate" because it does not interoperate in different sense than the one originally used.

    7. Re:clippy? by geminidomino · · Score: 1

      It is interoperability. The languages are operating in between one another. It is simply equivocation to harp on the use of "interoperate" because it does not interoperate in different sense than the one originally used. It's not interoperability any more than perl/C are interoperating when you use a compiled library in a perl script, or when a compiled pascal program calls a shared library. The only thing that separates .NET from that is that .NET is Microsoft-only (the abortion that is Mono not being worthy of consideration).

      It's not anything special. But like I said, there's no point in continuing this. I'm not going to convince anyone who needs to justify paying for MS crap to themselves, and random slashdot posts aren't going to carry as much weight as my own experience.
    8. Re:clippy? by Tony · · Score: 1

      The languages are operating in between one another.

      Ah, yes. All those .Net-based languages which all look like syntacticly-modified C#. It's like the famous Henry Ford (paraphrased) quote: "You can get a Model T in any color you want, as long as it's black."

      The .Net runtime is restrictive by nature. This "interoperation" you speak of is really the way a dominatrix interoperates with her sex partners-- with black leather and whips. It looks sexy, I'll grant you that, but when you get into it, it's more uncomfortable than pleasurable.

      Plus, that's still not "innovative." The Parrot project has been working on a language-neutral VLM for a while, and have had many working prototypes. The difference is, Parrot is aiming to support many different languages without restricting them to a single style library API, which is *much* more difficult.

      Making Visual BASIC look like C# in black leather chaps and handcuffs isn't really innovative.

      --
      Microsoft is to software what Budweiser is to beer.
    9. Re:clippy? by icepick72 · · Score: 1
      You speak of Windows-only code and that used to be very true, but those old arguments don't hold as much water today. .NET is machine-independent because it uses a byte code based on a common language runtime and just-in-time compiler like Java does, however the rubber meets the road only if there are implementations on other platforms. That being said we can't forget .NET compiles on Free BSD and OSX. You can you can download the Shared Source CLI, which is based on the v1 .NET framework. Furthermore we cannot overlook the Mono effort, a seprate attempt (Novell) to bring .NET-like programmability to the other platforms, including a second implementation on Windows. This has been enabled because Microsoft has opened up many parts of .NET as standards allowing implementation on other platforms. Also the recent Silverlight effort by Microsoft sees a subset .NET implementation on Windows and OSX.

      Visual Studio is nice but it's just a glorified code generator, a RAD tool. All .NET programs can be written without Visual Studio using just the compilers and utilities that come free wit hthe .NET framework Redistributable and SDK. Third-party, even open source RAD development tools exist. I believe you can even write it and compile it in Eclipse too with an add-in/plugin or whatever it's called. A text editor will do just fine.

      Leaning towards arguments of strict "Microsoft-only" statements and lockin is leaning towards the past. Currently a lot is in transition. It's not there yet, but it's definately moving towards "there" ... wherever that may be but it will continue to encompass more than just the Windows platform.

    10. Re:clippy? by ratboy666 · · Score: 1

      So I didn't finish your post. I got stuck on:

      "The author of the posting clearly has no knowledge of the state of Microsoft software and development tools today. Take one look at the .NET Framework and not only is it a ripoff of Java, but it made huge improvements like making a language-agnostic programming platform (parially due to CTS and CLI) and allowing multiple syntaxes (yes even Java-like syntax) to interoperate. Programmers can work in their language of choice and the compiled code will interoperate with all the other .NET languages which were other programmer's choices. That's one example."

      Just happened to be at the start. Is .NET a ripoff of Java? Is this innovative? Isn't the JVM a "language-agnostic programming platform"? Doesn't JVM allow multiple syntaxes? (REXX comes to mind immediately). About the only thing that was tricky was ensuring that the JVM verifier would accept your byte-code -- for security reasons... And, I thought that was pretty innovative. "Byte code" systems have been around for a LONG time (Pascal P-machine, Smalltalk, etc.).

      Which means -- I don't know WHAT your point was in that paragraph. I *think* that you are trying to say that .NET is innovative because it stressed multi-language development. You must have forgotten that JVM (Java) allowed exactely that as well. There is even a JVM assembler available! This then leaves the "Microsoft .NET is a ripoff of JAVA", with no improvement, and renders the rest of your post questionable.

      --
      Just another "Cubible(sic) Joe" 2 17 3061
    11. Re:clippy? by geminidomino · · Score: 1

      I can't speak to OSX, as I don't and probably never will use Macs. As to the FreeBSD implementation of .NET, that is news to me, but it's only one platform (albeit my favorite). As you said:

      "the rubber meets the road only if there are implementations on other platforms."

      Since MS controls the implementations on all platforms, I doubt we'll ever see .net on Linux or Solaris, since they tend to be the target of Microsoft hostility.

      "Furthermore we cannot overlook the Mono effort, a seprate attempt (Novell) to bring .NET-like programmability to the other platforms, including a second implementation on Windows. "

      Having given it a spin, and mentioned earlier in this thread, I think... we certainly can overlook it, and should. It's just awful.

      "This has been enabled because Microsoft has opened up many parts of .NET as standards allowing implementation on other platforms"

      I can have "many parts" of a motorcycle and still not be able to ride it down to bike night. MS still sits on the meatiest bits (the part that apparently make things work) and keeps it for itself.

      "Leaning towards arguments of strict "Microsoft-only" statements and lockin is leaning towards the past."

      Not when you look beyond their barely-more-than-symbolic 'releasing' of development tools intended to draw developers into lockin, and go to the lower level stuff.

      Obfuscated Filesystems, network protocols, and file formats: interoperability craves not these things.

  78. So Microsoft patent claims are legit? by I'm+Don+Giovanni · · Score: 1

    Maybe the bigger issue is that slashdotters, and more importantly, Red Hat should think twice about dismissing Microsoft's patent claims wrt Linux distros as lies.

    --
    -- "I never gave these stories much credence." - HAL 9000
    1. Re:So Microsoft patent claims are legit? by init100 · · Score: 1

      Until Microsoft substantiates its allegations, those allegations can be dismissed as lies.

  79. Parallel Programming Research at MS by MOBE2001 · · Score: 3, Interesting

    I mostly pay attention to theoretical areas like programming languages and automated reasoning, and MS has made significant contributions in those fields over the last few years.

    Yeah, and not only that, Microsoft seems to have understood that the first company to crack the parallel programming nut will be at the forefront of computing in this century. Lately, they have hired a few world-renowned experts in parallel programming and supercomjputing. Dan Reed (formerly of the Rennaissance Computing Institute) comes to mind. However, I doubt that this is going to be enough to solve the parallel computing conundrum. Sadly, computer science is dominated by a bunch of aging computer geeks who still think like Charles Babbage when it comes to computer programming and CPU design. Solving the parallel computing problem will take a strong willingness to break away from the orthodox fold. In my opinion, it is time to declare the algorithm dead and embrace a non-algorithmic computing model. We must reinvent the computer, especially now that the industry is taking its first painful step away from sequential computing to massive parallelism. We made a mistake fifty years ago when we chose Babbage's model but, it wasn't so bad because most of our computers had single-core CPUs. Unless we choose the correct path now, we will pay a heavy price later. Eventually, we will be forced to change. Better now than later. Is there anybody at Microsoft who can see the writing on the wall? Who know?

    1. Re:Parallel Programming Research at MS by aproposofwhat · · Score: 1

      it is time to declare the algorithm dead and embrace a non-algorithmic computing model

      WTF?

      Very Nietzschean, and all that, so what will replace algorithms?

      A will to power? Twilight Idol computation? Beyond 0 and 1?

      How can anything be computed at all if not by an algorithm?

      I'd mod you +1 - Batshit insane if I had points, but I'll have to settle for asking you WTF you're on about :P

      --
      One swallow does not a fellatrix make
    2. Re:Parallel Programming Research at MS by Nullav · · Score: 1

      Shh. He's innovating!

      --
      I just read Slashdot for the articles.
    3. Re:Parallel Programming Research at MS by Anonymous+Brave+Guy · · Score: 1

      Well, I'll grant you that your ideas are "innovative". Personally, I'd use "crazy", but maybe I'm just an aging computer geek who still thinks like Charles Babbage when it comes to computer programming. :-)

      Alternatively, maybe I trust tried and tested approaches a lot more than vapourware research, and therefore I'm far more interested in techniques like nested data parallelism and transaction-based synchronisation that have obvious practical applications for current algorithms once we can find ways to do them reliably and efficiently. Coincidentally, I happen to know that Microsoft Research has several people looking into these areas, Simon Peyton-Jones being perhaps the most well-known in geek circles.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  80. Not that bad. by LWATCDR · · Score: 4, Insightful

    Okay let's be fair. I am a Linux user but Microsoft does have some innovative and very good products.
    The Flight Simulator line that they bought from SubLogic is actually very good. I love it and it is one of the reasons I keep Windows on my system.
    I remember Word way back when No one used Windows and WordStar and WordPerfect ruled. It required a mouse and no one used it because it was SO different. Excel was another really innovative product. It was so much better than Lotus123 that it made your head hurt. I wounder how many Mac where bought just to use Excel before It was ported to Windows.
    Visual Basic for all of it's proprietary nature did let a lot more people write code for Windows. Of course it let a lot of people that should have never been allowed to code to write code but that is another story.
    Visual Studio is a very good IDE.
    The calendaring features of Outlook/Exchange are very good.
    The XBox 360 seems to be the right balance of HD graphics and cost.
    XBox Live from what I hear is very good.
    So yea give the devil his due.
    The real truth is that everything is going to look like small beans compared to Windows and Office.

    --
    See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    1. Re:Not that bad. by Anonymous Coward · · Score: 0
      You're still not getting it.

      Let's review, the Playstation 2 is abbreviated as "PS2", not "PS/2".
      "Your" and "you're" are not interchangeable.

      "I wounder how many Mac where bought just to use Excel before It was ported to Windows."
      "Where" and "were" are also not interchangeable.

      Could you please reply and let me know that you're learning from this?

    2. Re:Not that bad. by Anonymous Coward · · Score: 1, Funny

      Visual Studio is a very good IDE.
      Fuck you.
    3. Re:Not that bad. by jimicus · · Score: 4, Interesting

      Nobody's saying "Everything Microsoft produces is crap". (Or they shouldn't be, because it's not true).

      What is true is that Microsoft do not - indeed have never - innovated. They've taken existing ideas, either bought them or copied them then marketed the hell out of the result.

      Examples:

      Flight Simulator - bought from SubLogic. (You said this yourself!)

      FoxPro - Originally produced by Fox Software, which was bought out by Microsoft in 1992.

      Outlook/Exchange - Lotus Notes was a groupware product well before then.

      Access - Originally plagiarised from Borland Paradox.

      Excel - Plagiarised from Lotus 1-2-3. The two were basically playing leapfrog in feature sets before 1-2-3 bit the dust.

      Word - Plagiarised features from WordPerfect. Won the battle primarily by being sold to the boss rather than the secretary who was actually typing the letters.

      Windows - Most graphical operating systems of the 1980's-1990's were shamelessly taking ideas from each other. The bar across the bottom of the screen, for instance, was seen in RISC OS and CDE long before Windows '95 hit the shelves.

      XBox Live - the PS2 offered online play, but Sony never really exploited this. Frankly, it was a little early because it predated ubiquitous broadband.

      In fact, Microsoft can't even innovate at the very simplest level.

      Microsoft Paint (yes, that crappy little paint tool which has come free with Windows since the Windows 3.x days) - Take a look at this. It's PC Paintbrush for DOS - developed by a company called ZSoft.

    4. Re:Not that bad. by geminidomino · · Score: 1

      Okay let's be fair. I am a Linux user but Microsoft does have some innovative and very good products.
      The Flight Simulator line that they bought from SubLogic is actually very good. I love it and it is one of the reasons I keep Windows on my system. "Innovation" is not transferable. Buying an (arguably) innovative game does not make MS innovative.

      I remember Word way back when No one used Windows and WordStar and WordPerfect ruled. It required a mouse and no one used it because it was SO different. Most people were used to the old console-mode word processors and resisted moving to a new interface? Shocking.

      Not innovative.

      Excel was another really innovative product. It was so much better than Lotus123 that it made your head hurt. I wounder how many Mac where bought just to use Excel before It was ported to Windows. So they made a spreadsheet in gui mode. See above. Not innovative.

      Visual Basic for all of it's proprietary nature did let a lot more people write code for Windows. Of course it let a lot of people that should have never been allowed to code to write code but that is another story. No, it's the crux of the story. Might be innovative, but was a terribly bad idea.

      Visual Studio is a very good IDE. That statement speaks for itself, I think.

    5. Re:Not that bad. by jbengt · · Score: 1

      "Visual Basic for all of it's proprietary nature did let a lot more people write code for Windows. Of course it let a lot of people that should have never been allowed to code to write code but that is another story."

      ""No, it's the crux of the story. Might be innovative, but was a terribly bad idea.""

      No. BASIC was an innovation, as far as computer languages go, easy to learn. But it was was not an MS innovation: "The original BASIC was designed in 1963, by John George Kemeny and Thomas Eugene Kurtz at Dartmouth College, to provide access for non-science students to computers"(Wikipedia). That MS got it's start porting a language donated to the public domain to PCs was not really innovative. That they created a GUI for it and made a drag and drop interface at a time when WYSIWYG was a catch phrase was not really innovative, either.

      I believe that MS has done a lot of innovating in their labs, after all they have the $$$ to hire great minds and let them do their thing. But with the current state of patent review by the PTO their patent portfolio does not demonstrate innovation, and neither does Visual Basic qualify.

      The bad idea about Visual Basic was not that it let noobs program, but that Windows gave thosee programs, even little MS Office macros, full access to the the users computer, and worse, often ran them by default without even requiring user input,.

    6. Re:Not that bad. by clem.dickey · · Score: 1

      Microsoft didn't invent anything in their patent portfolio. They either bought patents from other companies, or acquired companies which had patents, or simply paid people to invent things for them. Some of those people they paid to invent things used to be paid by IBM until IBM decided it could no longer afford them.

    7. Re:Not that bad. by Allador · · Score: 1

      Microsoft didn't invent anything in their patent portfolio.

      simply paid people to invent things for them. You mean employees? Or researchers? What a concept.

      Can you describe any class of person being part of Microsoft that would not be someone 'paid to invent things for them' but who invented things?
    8. Re:Not that bad. by Blakey+Rat · · Score: 1

      Flight Simulator - bought from SubLogic. (You said this yourself!)

      Considering they've pushed all other non-military flight sims out of the market, they must be doing something right with Flight Sim.

      Outlook/Exchange - Lotus Notes was a groupware product well before then.

      I guess Microsoft innovated the concept of a groupware product that doesn't suck ass.

      Excel - Plagiarised from Lotus 1-2-3. The two were basically playing leapfrog in feature sets before 1-2-3 bit the dust.

      Actually, Excel's innovation was realizing that most people use spreadsheet programs to make lists and not necessarily to calculate huge financial spreadsheets. Thus, while Lotus 1-2-3 was adding in all kinds of crazy data features that hardly anybody used, Excel was adding in auto-fill, auto-formatting and all those other features that make it really good at making lists.

      Maybe not an "innovation," but that's what got Excel a lot of the market it has now.

      XBox Live - the PS2 offered online play, but Sony never really exploited this. Frankly, it was a little early because it predated ubiquitous broadband.

      Sony? What about the Dreamcast?

      In any case, you have to admit that Gamer Points are pretty innovative. A pointless, useless number that increases the amount of time (some) people play your video game with nearly no effort. Microsoft gave those insane game completionists exactly what they wanted, in a publically-visible system-wide form. That's never been done before.

    9. Re:Not that bad. by Anonymous Coward · · Score: 0

      Word - Plagiarised features from WordPerfect. Won the battle primarily by being sold to the boss rather than the secretary who was actually typing the letters.

      I didn't even think about being the reason, but it might actually be true. I remember 11 years ago I was working at a TV station, and the secretary used WordPerfect. She was forced to switch to Word at some point and was completely pissed about. Granted, it might have largely been because she had to relearn, but maybe because she didn't like it as much.

    10. Re:Not that bad. by jimicus · · Score: 1

      In any case, you have to admit that Gamer Points are pretty innovative. A pointless, useless number that increases the amount of time (some) people play your video game with nearly no effort. Microsoft gave those insane game completionists exactly what they wanted, in a publically-visible system-wide form. That's never been done before.

      That's a pretty accurate definition of a pinball machine with a high score table. All Microsoft have done is added "on the Internet" to it.

    11. Re:Not that bad. by Ullteppe · · Score: 1

      Excel - Plagiarised from Lotus 1-2-3. The two were basically playing leapfrog in feature sets before 1-2-3 bit the dust.

      Were you actually using spreadsheets when Excel was new? 1-2-3 was a difficult-to-use text-mode program. Excel was graphical from the start, and it was extremely easy to use. Also, unlike the early incarnations of Word, it was rock-solid and never crashed. Excel was so good that people bought Windows just to run Excel. If 30% of Microsoft's software was as good as Excel, they would be a totally different company.

      It's fair to bitch about other Microsoft software, but Excel deserves respect, man!

    12. Re:Not that bad. by Anonymous Coward · · Score: 0

      Innovation IS taking existing ideas and improving them.

    13. Re:Not that bad. by jimicus · · Score: 1

      I accept that this is a part of innovation. "If I have seen farther than others..." and all that.

      But the original ideas, the ones which really push new boundaries in technology - things like dbase, Lotus 1-2-3 - Microsoft has never been behind any of them.

    14. Re:Not that bad. by QuietObserver · · Score: 1

      The bad idea about Visual Basic was not that it let noobs program, but that Windows gave thosee programs, even little MS Office macros, full access to the the users computer, and worse, often ran them by default without even requiring user input,.

      I completely agree with this point. No scripting language should ever be allowed full control of the user's computer. A good scripting language, in my opinion, should only be allowed to perform two IO functions, if it's given any IO control at all, and those are to open a document that the current application can use, and to save a document that's already open. I think everything else should be completely internal to the application.

      Oh, and I should also point out that I completely agree that Visual Basic, QBasic, and every other variant of Microsoft Basic wasn't innovative. Just didn't think I should post this without making my opinion on that clear.

    15. Re:Not that bad. by LWATCDR · · Score: 1

      "Excel - Plagiarised from Lotus 1-2-3. The two were basically playing leapfrog in feature sets before 1-2-3 bit the dust."
      Excel no more plagarised from Lotus than Lotus did from Muliplan.
      Lotus fail to produce a usable Spreadsheet for the Mac. Microsoft made a HUGE leap forward with Excel. I was around back then. Microsoft Windows was just a toy back then that nobody really used. Lotus was the king of Spreadsheets and Microsoft made a better Spreadsheet than Lotus 1-2-3.
      This was back in the day when you tested if a PC was really PC compatible by seeing if it ran Flight Simulator and 123.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    16. Re:Not that bad. by LWATCDR · · Score: 1

      "But the original ideas, the ones which really push new boundaries in technology - things like dbase, Lotus 1-2-3 - Microsoft has never been behind any of them.'
      But Lotus built on Visicalc.
      If you ever really used the original 123 and then took a look at Excel I think you would change your mind.
      Excel was a big leap and very innovative.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
  81. God I hate you linux fags by Anonymous Coward · · Score: 0

    Geez, you guys really can't see why Microsoft is innovative? Are you that blinded by your open source pride? First of all, the person who wrote this article obviously hasn't ever used a Zune, it's actually a great MP3 player and IMO better than any ipod (although I have yet to try an ipod touch). Half of the linux software out there is just a bunch of clugy hacks to standards or protocols developed by Microsoft. And the retard who wrote this article might not know this, but Microsoft makes more than Windows and Office... and the Zune. The person who wrote this obviously isn't a developer, or at least have never touched any development tools written by Microsoft. Visual Studio is a far superior IDE to anything out there, especially anything open source. And as a .NET and ex-Java devleoper I can easily say that .NET is a far superior programming language too (not to say that Java doesn't have it's place, too, though). Btw, try making a living off Open Source... have fun living in your studio apartment too.

    1. Re:God I hate you linux fags by Beefslaya · · Score: 1

      Can you pull Bill's dick out of your mouth, and have a real conversation.

      The standards you speak of, are actually OPEN standards that the industry has set forth.

      Microsoft is very good at taking them, and modifying them to suit their proprietary needs (ala LDAP (aka Active Directory, TCP/IP, DNS (aka WINS), Widgets (aka Gadgets)) The list goes on.

      The fact of the matter is that Microsoft has never done anything innovative, that they haven't bought, stolen or copied from someone else. .Net isn't a "standard". It's a pain in the ass. If Microsoft had any sense, it would start applying these Open Standards to their products, and maybe they would stop eating the ass of Mac OS and other up and coming systems.

  82. I have the answer by Quiet_Desperation · · Score: 1

    Short answer: No

    Long answer: Nnnnnnnnnno

  83. Re:the innovation is going to vista techs that no by bigstrat2003 · · Score: 0

    Yeah, innovation that goes to things that don't exist (hint: your "example" isn't true for all Vista installs, thus it isn't true) is pretty crappy innovation.

    --
    "16MB (fuck off, MiB fascists)" - The Mighty Buzzard
  84. Oh, the Pollyanna-ness by Ancient_Hacker · · Score: 1
    Someone seems to hold patents in high regard.

    One survey found something like:

    • Only one out of every 35 patents was ever licensed.
    • Only one out of every 188 patents ever made any money.
  85. Too many patents gurantees poor innovation! by King_TJ · · Score: 2, Insightful

    This sounds contradictory, but think about it. Who were always considered the "top dogs" of sheer numbers of patents? IBM? AT&T? Maybe even 3M?

    All have some success stories from their respective research divisions, yet nothing remotely comparable to the number of patents they filed for.

    Truthfully, a lot goes in to taking a "innovative idea" and taking it all the way through to become a marketable product in mass production. I think some of these big firms just like to pay a "think tank" to work on "anything you like", throwing all manner of things at the wall to see what sticks. This ends up being profitable for them because of all the lawsuits they can file over the trivial patents other people end up infringing on by accident - and means they're likely to eventually come up with something really innovative, at SOME point in time. (EG. Post-it notes!)

    Smaller, more efficient businesses will do the R&D only on things focused squarely on a specific goal they've defined. They won't have huge numbers of patents, but will have ones relevant to their task at hand. These folks get more products to market per patent than the "big guys" do.

  86. Here's a vote for keyboards by ProppaT · · Score: 1


    I don't know if anyone else has delved into Microsoft's new Natual Keyboard line, but these are some of the most comfortable split/ergo keyboards I've ever used. And kudo's to MS for bringing back the front kickstand so we can actually type in an ergonomic position. I never understood why companies decided to just offer back kickstands for keyboards. This just leads to wrist aches.

    Other than that, I'm sure that media center and xbox live add a ton of patents to their portfolio. We can sit back and bash MS all we want, but they do a lot of things right (even if writing an O/S doesn't seem to be one of them these days), especially in the HID market. Their mice and keyboards are A+ gear.

    --
    Wise men say, "Forgiveness is divine, but never pay full price for late pizza."
  87. Prolific? Their patents would have to stand... by pyrr · · Score: 1

    Along the lines of other comments, quantity does NOT necessarily equate to innovation or quality. A very tangible and relevant case-in-point would be in the scientific research realm. This is an anecdote on of my professors dropped in emphasizing the importance of doing GOOD work rather than LOTS OF POOR-QUALITY work.

    The most prolific published author of biological research papers lived around the turn of the 20th century. His name eludes me at the moment, and the reason is that his work didn't stand the test of time, and his name has sunk into obscurity. He churned out research papers at an incredible pace, mostly classifying new species, but unfortunately for his legacy, his work was rather shoddy. A large percentage of his papers failed to remain standing after enduring the rigors of peer review, many falling even when he was still alive.

    At the time I heard the anecdote, a researcher named Hobart M. Smith was overtaking that 'record' of quantity, but the vast majority of Dr. Smith's papers hold-up to scrutiny. His work is just higher quality, which makes it inherently more meaningful than the sheer volume.

    So what's more meaningful to us today? Microsoft innovation, or IBM's innovation? IBM has revolutionized the tech industry time and time again with stunning advances in hardware technology, whereas Microsoft screams about how Linux 'infringes' on hundreds of its patents, which it won't even elaborate on because its execs are likely well-aware those patents would get revoked because they either wouldn't stand the tests of obviousness or prior art. Would Microsoft really rival IBM if it was suddenly stripped of all its dubiously-valid patents?

    The differences here are primarily quality. Patent-bully Microsoft doesn't hold a candle to IBM innovation.

    1. Re:Prolific? Their patents would have to stand... by shark72 · · Score: 1

      "Along the lines of other comments, quantity does NOT necessarily equate to innovation or quality."

      I think many people are misreading the summary. It does not state that the IEEE based their analysis on the quantity of the patents. This is what was written (emphasis mine):

      According to a recent analysis by IEEE, Microsoft's patent portfolio tops the industry in terms of overall quality of its patents.

      I agree with you that quantity != quality. I also agree with you that Microsoft and IBM are similar in that both have research labs which churn out a lot of patented ideas, few of which may end up in retail products. However, that is not germaine. The IEEE's analysis is based on overall quality.

      --
      Sitting in my day care, the art is decopainted.
  88. msr is good by coaxial · · Score: 1

    MS Research produces quality research, and I suspect many of the patents get issued there. Of course MS engineering is notorious for not being able to capitalize/monetize the work that MSR does.

    I have a friend that's a patent lawyer with an ms in cs that has handled both Amazon and Microsoft patent filings. He's told me that Amazon's tend to be pure crap, but MS's are actually pretty good. That said, Amazon's distributed systems work is actually so supposed to be pretty good, but they rarely publish on it.

  89. They Still Suck by curmudgeon99 · · Score: 1

    No matter what, anything that comes out of Redmond sucks. We've seen too many examples over too many years to believe this. Someone at MS must have blown someone at IEEE to make this possible. Or, MS just bought a bunch of companies and then claimed their patents.

  90. MS's innovation not necessarily consumer oriented by ashridah · · Score: 1

    In sum, if Microsoft is so innovative, why can't we get something better than the Zune?

    Because craploads of our innovation isn't going into consumer-oriented products. One of the drawbacks of having such a ubiquitous platform is that it tends to overshadow a lot of the work we do. Also, there are lines of work here that consumers will simply never see directly, like our work in security, testing, IT management, development, and all sorts of other areas where we're making massive strides, with our target release dates being 2009 and beyond.

    While you may think that microsoft's world revolves around the consumer giants, office and windows, the reality is, these two stay afloat because it's supported by ever more effective pontoons of tools like visual studio, system centre, identity lifecycle management, WPF, WCF, WF, Cardspace, Biztalk, and Unified Communications, not to mention several others..

    I know that's a giant link salad, but it's pretty clear to see that almost all of those tools aren't in any way aimed at consumers, and most will do a lot to drastically increase microsoft's business dominance. Without them, much of the third party products and inhouse tools that are going to come through the pipeline in much less connected and interoperable fashion. While some of these products may not be the winners we hope they will, they all add up to a pretty strong whole.

    ash

  91. What? by kocsonya · · Score: 1

    I thought that it was a well established general opinion in geek circles that MS has never been innovative? A decade ago I think the concensus was that MS stole, copied or bought anything remotely new (to them, that is) in their stuff and usually screwed up the implementation. I seem to remember that the only thing really credited to MS was ODBC, everything else had been traced back to some already existing thing. There was some credit for TrueType, but I think there was some contraversy about that too (I don't remember what, so I'm not sure about that).

    Their business tactics were not new either. However, unlike their software, those were implemented very, very well. That was the key to their growth. The innovative company is just an image, sheer PR, nothing to do with actual innovation. A patent portfolio is a business weapon, not an indication of being technically creative.

    So, I wonder, what happened in the past 10 years that shifted the opinion so much that 'Is MS the *most* innovative company?' as a question can even emerge and appear on /. ?

  92. Begs the question by Anonymous Coward · · Score: 1, Informative

    It does not "beg the question." Argh!

    http://begthequestion.info/

  93. Some truth means M$ bashing is unjustified by jrothwell97 · · Score: 0

    True, there are rip-offs of OSX, Linux and every other OS out there in Vista, and the Zune does feel like a Windows Live Frankenstein with all the worst bits of every mp3 player in existence, but M$ has come up with some great software lately.

    Office 2007 is very innovative, and while the ribbon interface has its detractors, I think it's great and IMO you can't blame them for trying something new. True, OOXML is a steaming pile of Ballamer's excrement, but it's a brilliant app. It still does turn up the occasional gem in the Downloads section that makes Windows experiences slightly more bearable (although for some reason it doesn't work on Vista).

    While patents != innovation and M$ has certainly been involved in many questionable business practices lately, Office 2007 shows that it still does have the ability to innovate - and I fear that if they lose that (which is the way Microsoft seems to be going) then the company will eventually fade away. Although, with people like Ballamer at the helm, that's no bad thing.

    --
    Those using pirated Tinysoft signatures(TM) are a real threat to society and should all be thrown in jail.
  94. Just like the old DOS prompt ! by OricAtmos48K · · Score: 1

    Formatting while copying ...

  95. Begs the question? by WK2 · · Score: 3, Insightful

    All of which begs the question: Just where is all this innovation going?

    Does anyone else get the feeling that the editors actually do know what "begs the question" means, and are just screwing with us to get a higher post count?
    --
    Write your own Choose Your Own Adventure. http://www.freegameengines.org/gamebook-engine/
    1. Re:Begs the question? by Abcd1234 · · Score: 1

      No, I just think you philosophy pedants need to suck it up and accept the fact that the common usage of the phrase "begs the question" no longer matches the classical definition.

    2. Re:Begs the question? by Mordaximus · · Score: 1

      Does anyone else get the feeling that the editors actually do know what "begs the question" means, and are just screwing with us to get a higher post count?

      It certainly begs that very question!
  96. Uh no by Ranger · · Score: 1

    They aren't the source of innovation, the buy it.

    --
    "You'll get nothing, and you'll like it!"
  97. Completely Asinine by DrPeper · · Score: 0

    Is it just me or does this actually make sense to someone? What is to stop someone from watching the live broadcast (because they already have the sports pack from joe-blo-cable company) and blogging about it live from the comforts of their own home? No laptop or press pass required! It's the internet man, nobody knows you aren't at the game physically. What is the NCAA gonna do about that?

  98. few patents productionized by peter303 · · Score: 1

    I've admired some of the results coming out of MSFTs R&D lab. But I rarely see them becoming supported products. For example they (and other groups) are working on image-based construction of 3D models. This means if you shoot a bunch of overlapping photos, you may be able to construct the 3D geometry behind them such as buildings along a street via stereo matching. All the mapping companies are starting to use this now for street views. MSFT finally released a version of this for NASA so they could QC space-shuttle defects more quickly and accurately during a mission.

  99. Arggg, my eyes!!! by choongiri · · Score: 1

    Microsoft Research is really cool.

    Methinks Microsoft Research need to do a little "research" into modern content management systems that correctly resize images on the server side:

    <img src="images/tagline.jpg" alt="Turning ideas into reality." border="0" height="52" width="560">

    Image is 560 x 54 px. Schoolboy error.

  100. no they aren't by Anonymous Coward · · Score: 0

    Having a large patent portfolio does not make them innovative. Microsoft gets many patents by buying smaller companies and patenting things that other people did but forgot to patent.

  101. BULL-SHIT! by AlgorithMan · · Score: 1

    I made a list once, that shows very clear, how "innovative" MS is...
    I listed pretty much all MS products and similar products that existed earlier. for each ms product there was a "prior art" product 14 months to 34 years earlier (ok, there are products that were the first in their sector - these are ALL products that MS didn't invent either, but that they bought from others)

    the list is in german, though (I didn't think I'd ever mention it on an english discussion board)
    http://www.algorithman.de/freedom/ms_quality.htm

    --
    The MAFIAA is a bunch of mindless jerks who will be the first up against the wall when the revolution comes
  102. similar to Xerox, ATT&T ... by peter303 · · Score: 1

    Great lab, poor productizing. AT&T invented UNIX, but really couldnt figure out what to do with, so gave it to universities almost free. Xerox pretty invented the GUI, yet couldnt make money off it. I heard a complain of "culture war" between shipping product devlopers at MSFT and their R&D lab. The research people are undsiciplined prima-donas.

  103. RTFM... Quality vs Quantity... by rmallico · · Score: 1

    ""According to a recent analysis by IEEE, Microsoft's patent portfolio tops the industry in terms of overall quality of its patents"

    uh... it states the overall QUALITY of their patents not quantity....

    --
    sig goes here!
  104. Here it comes by Anonymous Coward · · Score: 0

    Lot's of comments by people who don't make money and are angry at anyone that does- my prediction.

    BTW: Is the Zune bad? Because considering its penetration in an already crowded market space (check similar configured devices) we're in for a another X-Box 360 ... that is, a few years of loses followed by profits and shared dominance with 1 or 2 other players.

  105. ClearType is not psychic (BGR RGB problem) by DarthStrydre · · Score: 2, Informative

    Are you sure your monitor just doesn't have reverse ordered pixels? Most LCDs have BGR color ordering... but some have RGB. Sounds the same? It is very different! The following is a very zoomed in example of some backwards y letter I just made up. In the first, the font algorithm (Cleartype) thinks (correctly) you have BGR color order. In the second, the screen has RGB color order, and Cleartype thinks it is BGR (which is BAD!). Notice that the first one looks like a backwards y, like it should. The second one has separated pixels. On screen, this would look like a color halo "fringing" around the letter. Remember that in both examples, that 3 letters make up a single pixel, and the letters in each group that are turned "on" are the same in the first and second example.

    BGR..RBGR
    .GRBGRB..
    ..RBGR...
    ...BGRB..
    ....GRBGR

    RGBR..RGB
    RG.RGB..B
    R..RGB...
    ...RGB..B
    ...RG.RGB

    If your video driver supports screen rotation, try inverting the screen, then looking at the result of Cleartype upside down. (temporarily of course... it is not very comfortable to hang from the ceiling and type). If this is significantly better, look for the MS Cleartype Tuning utility, which can change the logical pixel ordering, and gaussian values to make the text look good when the screen is right side up.

    The BIG pain is when you have two monitors, one is BGR (my laptop) and one is RBG (external SONY) in dual head. Windows XP cannot set the logical pixel ordering for the monitors separately, meaning one looks good (I can pick which, of course), the other like ass. To remedy the situation, I currently have the SONY monitor propped upside down on my desk and have the screen rotated on it. Sounds dumb, but it works.

    Best of luck! (and I hope my monospaced example does not get messed up)

    1. Re:ClearType is not psychic (BGR RGB problem) by ortholattice · · Score: 1

      Are you sure your monitor just doesn't have reverse ordered pixels?

      Yes, I am sure. I have played around with every combination, even going to the MS site to run their tuning program, and I still can't stand ClearType no matter what the setting (on my 768x1024 LCD). It just makes me feel like my vision is blurred.

      What is worse, I like to use 8-point Andale Mono in my text editor - easy to read (without ClearType) small letters with lots of text visible on the screen. ClearType makes it literally unreadable - I cannot distinguish a period from a comma, for example, unless I tilt the screen to bring out the contrast difference that LCDs have at different angles.

  106. The Obvious Reason Why... by makaidiel · · Score: 1

    The corporate culture of Microsoft prevents them from producing anything of use to common market because, well, they're a bunch of out of touch dorks who wouldn't know something useful to their non-geeky neighbors if it landed on their faces and wiggled, so to speak. (I had the pleasure of making the acquaintance of the culture of Silicon Valley this year, and I know this to be true.) The need to hire "cool" product people, give them bucketloads of money and unlimited creative license. (And I mean cool, as a point tangential to any coolness their particular corporate culture can perceive.) I am also available for children's parties.

  107. I don't think it means what you think it means by porneL · · Score: 4, Informative
    1. Re:I don't think it means what you think it means by Doctor+Faustus · · Score: 1

      Yes, it does. It just also has an older meaning from philosophy.

    2. Re:I don't think it means what you think it means by Repton · · Score: 1

      I used to think that. But popular usage says otherwise. And, unless you live in France, popular usage defines language. I'm sure there've been other words or phrases to have their meaning completely inverted, and I'm sure there'll be more to come..

      --
      Repton.
      They say that only an experienced wizard can do the tengu shuffle.
    3. Re:I don't think it means what you think it means by Anonymous Coward · · Score: 0

      It means exactly what he thinks it means. That's what language does... it means what people think it means. That's why it works. "dog" means dog because people think it means dog. If everyone thought that "dog" referred to something else, it would refer to something else.

      I've heard the "incorrect" usage of that phrase more times than I can count, and I've heard the "correct" usage exactly 0 times. I think it's safe to say that the meaning has changed. You might as well set up a site called gay.info and whine about how "gay" actually means happy. While you're at it, every time you feel happy why don't you tell everybody that you're gay?

    4. Re:I don't think it means what you think it means by Abcd1234 · · Score: 1

      To beg the question does not mean "to raise the question."

      It does now. Piss off.

  108. Reward to employee's? by Gat0r30y · · Score: 1

    Anyone know what sort of incentive system M$ offers for employees to get patents? What sort of limitations there are (i.e. does it have to be a patent that has merit)?
    If i had to venture a guess, I would say that M$ employees probably get slightly better incentives than IBM (runner up) or at least a little more time to work on them. I can't back that up at all, can anyone else?

    --
    Prediction: The real iPhone killer is going to be sex robots from Japan. Think about it.
  109. ms patents by someone1234 · · Score: 1

    Are software patents.
    I wonder how their quality could be any good, when ones like 'string comparison based on address' can sneak in their portfolio.
    Or some of the FAT patents.

    DOH, they just bought one more research.

    --
    Patents Drive Free Software as Hurricanes Drive Construction Industry
  110. innovative? by Anonymous Coward · · Score: 0

    Sure lets take the idea's of other innovative companies after engaging in a "licensing agreement" or "Non disclosure agreement", claim the idea as our own, patent it, and then implement it full of bugs as security holes........ innovative! Mirosoft has even patented the concept of watching a television broadcast and having a chat window open on the same screen as their intellectual property. Please. Will the patent reform laws please teach those with small idea's and big legal teams that stealing is wrong and absurd patents are not meant to be a means of suing the more innovative competition. Will someone please slap their wrist so hard that they stop bullying the industry!!!!

  111. Microsoft has many innovations in their products. by I'm+Don+Giovanni · · Score: 3, Informative

    Slashdotters are largely clueless regarding Microsoft, and willfully so.

    First, Office *does* have lots of innovations, particularly Office 97 and Office 2007.
    Clippy *was* innovative. Yeah, it failed, but a lot of research went into it.

    LINQ *does* rock.
    Which reminds me that Microsoft just recently released a CTP of the .NET Parallel Extensions, allowing easy use of multiple cores in .NET code, including PLINQ (Parallel LINQ).

    VC-1 *is* the most efficient hidef video codec.

    XNA *is* an innovative product.
    See the 2006 DEMMX Awards and see that Microsoft won Best of Show - Innovator of the Year (beating out the likes of Apple, who won a lesser award for video iPod) and Game Innovation of the Year, both for XNA.

    Microsoft *has* been commissioned by the JPEG working group to develop JPEG XR (aka HD Photo aka Windows Media Photo) as the next-gen photo image standard (where JPEG2000 failed).
    Industry Standardization for HD Photo

    Check out this article on SIGGRAPH 2007 and learn that Microsoft is leading the way regarding graphics technology.
    Siggraph: Microsoft the new research powerhouse in graphics?

    F# *is* being "productized" and is already used in Xbox Live.

    Vista *does* have excellent speech recognition (despite a failed demo of a beta), even admitted to by Mac fanboy David Pogue.
    Telling Your Computer What to Do
    Windows 2 Apples

    TabletPC'S *do* have the best handwriting recognition in the biz.

    It goes on and on.

    Microsoft Research is this era's "Bell Labs" and "Xerox PARC", but much of Microsoft Research's stuff does wind up in products. Microsoft Live Labs is also doing interesting stuff like Volta (which is being productized), Photosynth, etc.

    Just because slashdotters don't are totally ignorant of Microsoft tech doesn't mean that such tech doesn't exist.

    --
    -- "I never gave these stories much credence." - HAL 9000
  112. MS spawned whole industries by flyingfsck · · Score: 1

    MS spawned whole industries in Virus Writing and Virus Fighting. Without MS, security consultants world-wide will go hunger.

    --
    Excuse me, but please get off my Pennisetum Clandestinum, eh!
  113. on track by Anonymous Coward · · Score: 0

    About 10 years ago, I "foolishly" predicted that in 20 years Microsoft would be out of business. I'm happy to say progress is being made, day by day!

  114. 6,307,566 void due to obviousness by Anonymous Coward · · Score: 0

    From an engineering perspective, sub-pixel rendering is implemented in the font engines rasterizer. It has nothing to do with the font, text or glyphs. ClearType is an application of an old technique that works best with high contrast images (eg: text) to a modern display device with an accurate pixel grid.

    There is nothing innovative in ClearType and even if you say that MS "invented" it first; how many hackers do you know who had LCD displays prior to 2001? Which commercial companies were investing in R&D in the field given Microsoft had a monopoly on computer operating systems? Are you sure you're prepared to call this "innovation"?

  115. Patents != Innovation by Gonoff · · Score: 1

    Just because someone is patenting huge amounts of stuff, it does not indicate that they have innovated anything.
    It means only that they have a large number of people whose job is to take existing ideas and patent them.

    In Microsoft's defence, this does not prove that they have not invented anything either.
    I think it is quite likely that some of the very clever people that they have working for them did create new ideas. It just hasn't got much connection with this abuse of the patent system.

    --
    I'll see your Constitution and raise you a Queen.
  116. Actually, the original Clippy was very innovative by harlows_monkeys · · Score: 3, Informative
    Actually, if you look into the history of Clippy, it started out based on very serious research in machine learning and human/computer interaction. Researchers developed a very awesome system that watched what you did, learned your work habits, and could figure out when you were having trouble, and then make useful suggestions. The product development people took this research and made Clippy, and explained to the marketing folks how great this was (and it was great).

    The marketing folks decided it wasn't coming up enough (who want's a revolutionary feature hidden away most of the time?), and so made the development people dumb Clippy down, so it would think you were in trouble at the first sign of anything slights wrong, and pop up.

    I suspect that this happens a lot with Microsoft products. The research version of Clippy was probably one of the best online help aids ever--way ahead of, and far more useful than, anything you'll find on Linux or Mac. Then marketing turns it into a joke.

  117. In other words ... by Schraegstrichpunkt · · Score: 1

    Innovation cannot be measured by counting patents.

  118. They need a Slashdot-friendly bumpersticker slogan by Anonymous Coward · · Score: 0

    Maybe Microsoft needs a catchy bumper-sticker slogan all the FOSSies can swoon over. Something like "TEH DUNT BE TEH EVIL!!11!!". That way, when they do something evil, all the retards can just say "BUT DEY SEY DEY DUNT BE TEH EVIL, DEY KANT BE TEH EVIL!!!?!?!"

  119. Perception is a funny thing by pyrr · · Score: 1

    I'd expand on this to say that it goes beyond resolution and pixel size, the primary difference is that some folks' brains also don't process visual inputs the same way. Quite a lot of what we *think* we see is not reality, our brains smooth over gaps. What's particularly interesting about most display technology is that it takes (what I'm guessing is) a representation of a pure, colored image in the machine, blasts it out to a screen that's comprised of lots of primary-colored dots, and those dots are picked-up by many more primary-color sensors in our eyes, and then re-assembled into a pure, colored image by our brain if all goes well. Even though that image never existed in the first place, and even if it did, our eyes never even actually saw it as such, either.

    ClearType has always looked a little fuzzy to me, probably because even on the most fine-grid-pitch/tiny pixel LCD displays (such as the 1920x1200 17" Dell LCD I use at home), I can see the grid, and I can see those tricks that allow parts of a "pixel" to fall outside of the grid enclosing that pixel. Conventional type rendering, even if the curves and some strokes are a little jagged due to the limitation of displaying diagonal lines or curves in square-pixel blocks, appears very clean and sharp to me, even though I can see the flaws. It's just a greater flaw, as far as my own perception goes, to color outside the lines.

  120. But they are... by ortzinator · · Score: 1

    Innovative in finding new ways to get our money in their pockets.

  121. Vista? by pandrijeczko · · Score: 1

    So where does this sit with the article on Slashdot the other day where Vista is viewed as the most disappointing product of 2007? It strikes me that the two articles are entirely contradictory of one another.

    --
    Gentoo Linux - another day, another USE flag.
  122. It's not about innovation by LinuxInDallas · · Score: 1

    It's not about innovation, it's about implementation. If you are not going to implement the numerous great ideas that your research group develops and get those innovations into products then all those innovations might as well have never happened.

  123. Patents are reverse Industrial Espionage. by einnar2000 · · Score: 1

    It used to be that companies would spy on each other, steal idea, etc, to try to be first to market. A patent would help protect you from that, as it gave a baseline date for innovation. Anymore, it's like mass registering URLs. You know someone is doing it, or has done it, and you can either wait for them to come to you with money, or have your lawyers tell them to come to you with money. Sounds like Microsoft's portfolio is a lot of the latter anymore. Some of them in there look like honest innovations, but the last spate of mass patenting appears nothing more than legal posturing on existing technology. The actual innovators now face an uphill battle to be able to do anything with their ideas, or hope that MS will let them continue on out of their good graces. (try to say that with a straight face.) Patents don't protect anything anymore. It's the latest corporate sword that the lawyers are wielding.

  124. MSFT invented IPv6!? by Penguinisto · · Score: 1
    Waitafugginminute...

    From your referenced article:

    "The following is a partial list of other technologies that began in Microsoft Research and later moved into Microsoft products, demonstrating the extensive success of the company's distinctive technology transfer approach.

    [...]

    • IPv6 is an implementation of the Internet Protocol version 6 that is fully supported in the shipping version of the operating system
    "(emphasis mine)

    What in the everliving FUCK!? Am I reading that wrong, or is Microsoft literally claiming to have come up with IPv6?

    Among other things, they apparently claim to have invented public key cryptography, text-to-speech, spam-filtering, clustering (at least insofar as SQL), and photography analysis tools...

    Dude, something ain't right, there...

    /P

    --
    Quo usque tandem abutere, Nimbus, patientia nostra?
    1. Re:MSFT invented IPv6!? by dswt · · Score: 1

      Yes, you're reading it wrong:

      "IPv6" is an implementation of the "Internet Protocol version 6" -- quote marks mine for emphasis.

      The claim is of the *implementation* (and specifically for XP, in the context of the reference), not of the protocol.

    2. Re:MSFT invented IPv6!? by Tony+Hoyle · · Score: 1

      That's not research.. The question what *research* has ended up in a product, not what their programming teams have implemented from standards developed by other people.

    3. Re:MSFT invented IPv6!? by harlows_monkeys · · Score: 4, Informative
      Yes, you are reading it wrong. They are saying those are technologies in Microsoft products that came into the Microsoft products via Microsoft Research. The implementation of IPv6 in Windows came from a research implementation that MS Research did back around 1998, to further network research, for example. They didn't invent it--they implemented it to use for network research, but the product development side of the company got to benefit from that. They are including that as an example of why it is worthwhile to fund researchers.

      As for the other things you list, some of them did originate at Microsoft, or Microsoft was among the first. Spam filtering, for example (no Paul Graham was not first with statistical spam filtering--he was the first to popularize it). And they have indeed invented quite a bit of photography analysis tools.

      Microsoft Research is basically an academic research lab. The place their results usually go are peer-reviewed journals and conference proceedings (which is why most people here never hear of them). But they also work with the product development side of the company so that the products can include this stuff, whether it was something invented at Microsoft, or something that was invented somewhere else and MS Research simply contributed advancements to the original investment.

    4. Re:MSFT invented IPv6!? by Allador · · Score: 1

      Are you kidding me?

      No reasonable human being would read the information on that page and think that MS is claiming to have 'invented' IPv6, or any of the other things.

      It's clear as day that they did research in those areas that was used in real world product development.

      You do realize that once an area of study has been 'discovered' or 'invented', that other people are allowed to continue to do research in that area, right?

    5. Re:MSFT invented IPv6!? by totally+bogus+dude · · Score: 2, Insightful

      You do realize that once an area of study has been 'discovered' or 'invented', that other people are allowed to continue to do research in that area, right?

      Not if I patent it they aren't!

  125. True, however-- by pyrr · · Score: 1

    The full article does explain that the standard of "quality" is determined by "who won in court in a patent defense suit". IBM and Microsoft both have comparably deep pockets to wage legal wars of attrition against anyone who wishes to challenge them. They probably also have the wisdom to not pursue lost causes, which is why Ballmer is quick to spread FUD on how Linux infringes on Microsoft IP, but refuses to cite even a single patent. The point I'm making is that the IEEE is judging the strength of Microsoft's entire patent portfolio based on the percentage of successful defenses, coupled by the sheer number of patents it holds. Failure to defend a patent because it may not be defensible in the first place isn't reflected in the figures.

    Having watched both companies over many years, I see a lot more substance and innovation behind IBM's R&D and its products, and markedly less so from the Microsoft camp. Anecdotally, I can't recall IBM EVER having a spokesperson come out and bluster that another company or project is infringing on their patents, they act on those things. Microsoft's propensity to bluster says a lot; sure, a lot of their patents stand-up to scrutiny, but there are likely quite a lot that are utterly indefensible and they know it. They just want to cling to the empty patents and so they don't even attempt to defend them. It would be impossible to truly judge the strength of a patent portfolio until every last patent was either confirmed or tossed-out.

  126. At least don't mislead us.... by crhylove · · Score: 1

    If you're going to put such an obvious joke up as a story, at least put the Monty Python Foot Icon, so I know. I almost spit my coffee all over my new flat screen.

    Innovative, by copying a copy of a copy? Hadn't that already been done? Define innovative. If owning patents is innovative, I would suggest the patent office itself is the sole proprietor of all innovation. I'm not a Windows hater, but innovative really doesn't even begin to enter into it. How about "easy to develop for", and "clean simple well understood layout" with "good driver support and tons of games".

    Innovative.... LOL I do not think that word means what you think it means.

    --
    I hold very few opinions. I hold information based on observation and fact. If you wish to disagree, please use facts.
  127. Umm... examples? by linumax · · Score: 4, Informative

    The thing is, where is this alleged research going? We don't see it in MS's products; this was stated in the article summary.
    XMLHttpRequest
    VC1
    XBox Live and XNA
    C#
    Ribbon
    Sharepoint

    or those nice mice/keyboard that Microsoft makes, they get a lot of patents for those, or if SQL Server does something better in the next release, well they get patents for the new algorithm/method that helped them achieve better performance.

    Of course, if you open your eyes, there's a lot more, and they are affecting millions of people.
    1. Re:Umm... examples? by Anonymous Coward · · Score: 0

      Another, much more ground-breaking invention from MSR: SLAM. It is basically formal verification that a device-driver adheres to the contracts specified by the kernel API (e.g. that a mutex is taken before it is released and others). SLAM is part of the DDK and has started an entire branch within formal verification of real-life programs (another being the Modex/FeaVer apps from AT&T/Bell Labs).

      At a glance SLAM works by automatically abstracting your program and checking the abstraction for errors. If the abstraction shows an error, it is automatically tested whether the real program exhibits the error. If so, we are happy, we have found and can eliminate a driver error. If not, the abstraction is refined and the process is repeated until a certain limit is reached. This is only applied to device drivers, but the methodology is much more general (the rationale for applying it to device drivers only is that they are pretty critical-they can take down your machine-and restricting to one domain initially makes it easier to get good results).

    2. Re:Umm... examples? by sgtrock · · Score: 1

      Sharepoint?? SHAREPOINT????

      Boy, I can tell you haven't had to support it in a big enterprise. Typical Microsoft engineering. Can't scale worth a damn. Does only one thing, share documents, sorta half-assed as well as a half dozen competitors. Oversold as a work process/collaboration engine/content management system/web portal by Microsoft sales drones to every department head who thinks his/her IT group is full of idiots who long for the good old days when computers were kept in glass walled temples and the priests wore white lab coats.

      I f'ing HATE Sharepoint. Not because it's bad at what it does. It's an OK document management system. It sucks at everything else. No, I hate Sharepoint for a much better reason; Sharepoint's sole reason for existence is to protect and maintain Microsoft Office's lock-in.

      Don't believe me? Then try this test: Try to integrate anyone else's office suite with it. Then, try to integrate MS Office with any other document or content management system.

      BTW: You did know that Logitech makes Microsoft's mice and keyboards, didn't you?

  128. They might have lots of patents, but their product by crivens · · Score: 1

    They might have lots of patents, but their products suck. They can't create decent products for toffee.

  129. Depends on what innovations they have done... by hotfireball · · Score: 1

    if Microsoft is so innovative, why can't we get something better than the Zune?
    Looks like I know why: http://www.hemmy.net/2006/04/27/useless-japanese-inventions/ ;-)
  130. that's one.... by Anonymous Coward · · Score: 0

    ...234 more to go. if this is the quality of the ms patent violated by linux, i wouldn't tell linux which patents were violated either.

    1. Re:that's one.... by Anonymous Coward · · Score: 0

      Tell me how Linux would work around that patent? I don't see how.
      And even if they did, they'd still need to pay Microsoft for the years that Linux has been violating it. Red Hat can go whining to the OIN to do something about it, but the OIN patents are bullshit and don't apply to Microsoft. Most of them are hardware patents by IBM.

  131. MS is pretty good at Research - Production by djelovic · · Score: 1

    I'm don't know much about other areas but when it comes to programming languages MS has been pretty good at moving stuff from research to production.

    I've been following Don Syme's work for a couple of years. Here's a guy that wrote the foundation for CLR generics, then he created F# which is now being moved into production.

    Or take a look at Comega which laid the foundation for C# 3.0 and will probably also form a foundation for pragmatic parallelism in C# 4.0.

    Or take a look at the Task Parallel Library which does some cool research topics like task stealing that I haven't seen implemented anywhere else yet.

    When it comes to other MS software I don't see much improvement but I use very few MS products. The Office Ribbon definitely looks like a giant improvement over the toolbars and menus but that's cosmetic.

    The depressing thing is that I see way more cool stuff coming out of Microsoft than from the GPL-loving crowd. FireFox 3.0, provided that it delivers on better bookmarks management, may be the first big thing I've seen in years. OpenOffice is still a bad clone of MS Office, Thunderbird is a giant fucking disappointment (how a product may be worse than Outlook or Outlook Express is beyond me), and the multi-protocol chat clients have more switches than a Boeing 747.

    So how about something that impresses us you GPL-loving freaks? ;) Take something like face recognition which has been proved to have too many errors to be useful for finding terrorists at airports and create an awesome application that can tag my pictures by people who are in them automatically.

    Dejan

  132. A monopoly doesn't need innovative products by Anonymous Coward · · Score: 0

    Duh.

    Turning a patent into a product is expensive. Not only that, but you don't play your best cards when you don't need them--you hold them for a play where you need a strong hand.

    This is again the failure of patents to actually produce good results at the market level: instead, they allow the strongest companies to buy the best ideas (through research or outright purchase) and simply hoard them, preventing smaller competitors from bringing the innovative ideas to market.

  133. Yes, Wozniak referred to NTSC signals by michaelmalak · · Score: 1

    If you read that page's quote from Wozniak, he's talking about NTSC signals, not phosphors. It was an electronics hack. The Apple ][ didn't have completely randomly programmable colors for every pixel, which was a pain. On the other hand, you got what? -- 6 or 8, I don't remember because I was an Atari guy -- colors instead of just 4, which was the tradeoff. Atari graphics mode 8 (320x192) was similar -- and get this -- when Atari switched from the CTIA to the GTIA, the blue/green colors swapped! The original Jawbreaker, a Pac-Man rip-off, rendered as a green maze on machines with GTIA chips.

  134. I think we can dismiss this one... by argent · · Score: 1

    I think we have amply demonstrated, in many articles here, how little innovation is needed to get a patent. a large patent portfolio simply means that the company has spent a lot of money on patent lawyers.

  135. Bull by Anonymous Coward · · Score: 0

    Why don't you read the damned claims from US patent# 6,307,566 yourself?

    There are no "different and substantially more advanced" algorithms in the ClearType patent. They are scaling an image to map it's data to all the sub-pixel elements, then super-sampling it to calculate the intensity of the sub-pixel elements. In other words.. simply render a bitmap using sub-pixel elements, then anti-alias. It's no more complex than that.

    Here's pretty pictures for you morons.

    [ X ][ X ]
    [ X ][ Y ]
    [ Y ][ Y ]

    Scale.
    [X][X][X][X][X][X]
    [X][X][X][Y][Y][Y]
    [Y][Y][Y][Y][Y][Y]

    Super-sample.
    [X][X][X][X][X][Y]
    [X][X][Y][Y][Y][Y]
    [Y][Y][Y][Y][Y][Y]

    I'm sure bitmaps have been rendered using sub-pixel elements in the past, but maybe the combination of anti-aliasing makes it somehow technically patentable.
    Whatever, just don't call it "way different and substantially more advanced" because you can't read a patent.

    1. Re:Bull by Anonymous Coward · · Score: 0

      Patent #6,307,566 is only a small part of ClearType - there are quite a few subtleties, like color fringe prevention, subpixel specific font metrics, and other details only a font geek could love. There are at least 10 patents covering "ClearType".

      http://david.freetype.org/cleartype-patents.html

    2. Re:Bull by Anonymous Coward · · Score: 0

      If the rest are as "innovative" as the one I first mentioned, they still don't deserve them. Thanks for the info though.

  136. Re:the innovation is going to vista techs that no by Anonymous Coward · · Score: 0

    So the DRM is only operating "correctly" on some installs. Sounds just like M$.

  137. The Land of the Free! by Anonymous Coward · · Score: 0

    Yeehaw! Go go go Amerikkkkkka!

  138. Fonts? by Anonymous Coward · · Score: 0

    WTF does Microsoft's patent have to do with fonts, other than it is a useful method of rendering them.. or ANY BITMAP using sub-pixel elements.

    From US patent# 6,307,566

    Abstract
    Methods and apparatus for utilizing pixel sub-components which form a pixel element of an LCD display, e.g., as separate luminous intensity elements, are described. Each pixel of a color LCD display is comprised of three non-overlapping red, green and blue rectangular pixel sub-elements or sub-components. The invention takes advantage of the ability to control individual RGB pixel sub-elements to effectively increase a screen's resolution in the dimension perpendicular to the dimension in which the screen is striped, e.g., the RGB pixel sub-elements are arranged lengthwise. In order to utilize the effective resolution which can be obtained by treating RGB pixel sub-components separately, scaling or super sampling of digital representations of fonts is performed in one dimension at a rate that is greater than the scaling or sampling performed in the other dimension. In some embodiments where weighting is used in determining RGB pixel values, e.g., during scan conversion, the super sampling is a function of the weighting. During a scan conversion operation, RGB pixel sub-component values are independently determined from different portions of a scaled image. The scan conversion process may involve use of different weights for each color component. Processing to compensate for color distortions, e.g., color fringing, introduced by treating each pixel sub-component as an independent element is described. For horizontally flowing text applications, screens with vertical as opposed to horizontal striping are preferred.

    It's not fucking complex. The patent's claims cover horizontally scaling an image to be rendered using sub-pixel elements, then super-sampling (antialiasing) it to produce shades of gray. Here's pretty pictures for you morons.

    [ X ][ X ]
    [ X ][ Y ]
    [ Y ][ Y ]

    Scale.
    [X][X][X][X][X][X]
    [X][X][X][Y][Y][Y]
    [Y][Y][Y][Y][Y][Y]

    Super-sample.
    [X][X][X][X][X][Y]
    [X][X][Y][Y][Y][Y]
    [Y][Y][Y][Y][Y][Y]

    Sure, bitmaps have been rendered using sub-pixel elements in the past, so maybe the combination of anti-aliasing makes it somehow technically patentable.
    Don't mean it's AT ALL innovative. Microsoft didn't "discover" jack shit about rendering anything using sub-pixel elements, they sure as fuck didn't discover antialiasing, and you all damn well know they weren't the first to realize that scaling and super-sampling are useful together. Fucking nimrods. They were awarded a patent, but don't give them any credit for shit they didn't actually discover.

    1. Re:Fonts? by RightSaidFred99 · · Score: 0, Flamebait

      Hey fuckhole, maybe the interesting part isn't the patent but the implementation of ClearType? Crazy ass shit, I know, that someone would actually focus on a real product. Who cares what the patent is for, the implementation of ClearType is what gives value.

    2. Re:Fonts? by Anonymous Coward · · Score: 0

      Microsoft... implementation... value... ROFLS!. Enjoy your mod points.

  139. Yeah, well, so was Xerox PARC... by alispguru · · Score: 1

    ... and look how much good that did Xerox. Turning real innovation into competitive advantage, or new products, is hard.

    Anecdote from Fumbling the Future (book on Xerox PARC in the 1970's and 80's):

    Xerox held a big coming-out party for the Xerox Star office system - personal workstations with mice and WIMP interfaces, networked file storage, laser printers. They set up a big demo Office Of The Future, and invited all of Xerox's top brass to see it. Because this was 1980, they were all male, and they brought along their wives, who had all been secretaries at one time or another.

    The executives walked around, looked at stuff, and nodded their heads thoughtfully, but did not get excited. Their wives sat down, rolled the mice, clicked the buttons, typed stuff, created documents, printed them, and basically got excited as all hell. The users knew that this was the future - the business decision-makers didn't have a clue.

    --

    To a Lisp hacker, XML is S-expressions in drag.
  140. It does mean what they think it means by Livius · · Score: 1

    "Beg" is simply an old-fashioned way to say "ask".

    So, given a particular question, "beg the question" can legitimately mean:

    to provide an answer that simply reformulates the *same* question over again,

    or

    to provide an unsatisfactory answer that immediately raises a *different* question.

  141. They employ something like seven hundred by melted · · Score: 1

    They employ something like seven hundred people in Microsoft Research alone. And MSR produces some top notch scientific work. Take nearly any top scientific conference related to CS, AI or linguistics and you'll find some good papers from MSR there, every year. Some of it makes its way into Microsoft products (Clear Type, .NET Generics, a bunch of search related stuff, some SQL related stuff, speech technologies, video/audio compression, some stuff in XBox), but about 95% of the output is, sadly, wasted for all practical purposes. The only benefit to the company is patents.

    So I'm not surprised at all that the portfolio is strong. Everything MSR invents gets patented. Patents are its raison d'etre. It's just that the consumer rarely sees the ideas implemented.

  142. Not Innovative but buys good stuff by BanjoBob · · Score: 1

    MS is known as the company that purchases other innovative companies and assimilates them into the collective that is Microsoft. Is Microsoft really innovative? Not really. Look at all their innovations from Windows ME, Robert, Barney, Plays for Sure, Origami handheld PC, SPOT watch and on and on. Even Zune, Vista and the Table Surface PC are not being accepted into the marketplace. Shoot, even XP has been touted as an UPgrade to Vista.

    Innovation has be be an improvement or a usable new product that makes sense to both the vendor and the consumer. While Microsoft has accesses to some of the best, they are a lot like Boeing Aircraft that bought up all the cool innovative military companies like North American Aviation (F-86, F-100, P-51, XB-70, etc) and killed off most of America's competitive fighter aircraft manufacturers. Only Lockheed/Lockheed Martin remains. Is Boeing more innovative or did they purchase their innovations? Maybe but at what cost?

    Spending millions on research doesn't mean anything really, Look at Xerox and their PARC facility. How much of that innovation made it to market? Probably less than 10%, if that. Did all that research make Xerox into an innovative company? Maybe but, Canon, Sharp and other copiers are taking over the world.

    MS can be innovative but, I would much rather they become ethical. That's how to become a good corporate citizen and a company that people like and respect. Xerox is such a company. Microsoft is not. Apple is. Halliburton is not. It all has to do with ethics -- not innovation.

    --
    Banjo - The more I know about Windoze, the more I love *nix
    1. Re:Not Innovative but buys good stuff by freedom_india · · Score: 1

      The pathaological pursuit of Profit is the SOLE goal of any corporation.
      Ethics when it can improve profits is permissible, but not at cost of profit.
      Any less behavior by any corporation which takes an altruistic view and reduces profit (Exhibit A: BodyShop) will result in instant suing of the board by shareholders.

      Expecting corporations to be ethical is like expecting Bush to acknowledge his wrongs and resign.

      --
      "Doing what i can, with what i have." ~ Burt Gummer
  143. Microsoft Scam by algoa456 · · Score: 1

    Only explanation is that the IEEE is being paid off by Misfit. Come on, anybody who has been in software for any length of time knows that Misfit has not produced anything noteworthy ever. Even PowerPoint - Gates' pride and joy had a precursor - Harvard Graphics.

  144. and more examples by irtza · · Score: 1

    The first thing that came to mind was the optical mouse. I know they existed before, but the MS design definitely brought it to the masses.

    Visual Studio. Though I haven't used it for a while, my last encounter was quite pleasant. I still feel that MS makes some of the best development tools for quick development.

    Not sure how to count this, but MS bought/made some of better 3D tools (didn't they buy Silicon Graphics patent portfolio?)

    Game engines. This is second hand info - I don't get to play too many games

    considering I run Linux at home and work computers are secured - or overrun with crap if not - I don't have too much experience with MS software directly. I have big issues with Windows and MS philosophy, but they have done a few things worth noting. One must merely keep things in perspective - a company of thousands of people can provide great innovation while still being an abusive monopoly.

    One thing of note. Patents don't require a real working product. They merely require a vague description of a working product, so if you have a good idea, its in your interest to patent it, so when someone else makes it, you already "own" it. Its what patent trolls do. For all we know, the MS patent portfolio could be smoke and mirrors - with MS ready to pounce on a real threat to their interests.

    --
    When all else fails, try.
  145. They have the most innovative business plan ever by ShaunC1000 · · Score: 1

    Find software that is good and make software that does the same thing or worse, or just buy the company. Who needs originality with a business plan like that?

    I mean.. taking Novell's NDS and making Active Directory was probably the most innovative thing ever.

  146. Begs the question indeed by Tenebrarum · · Score: 1

    All of which begs the question: Just where is all this innovation going? To Clippy?

    And of course just where is all this innovation going? To Clippy? Follows. Thus, And of course just where is all this innovation going? To Clippy? Follows. Thus, And of course just where is all this innovation going? To Clippy? Follows. Ergo, And of course just where is all this innovation going? To Clippy? Follows. So it continues following: And of course just where is all this innovation going? To Clippy? Follows. You see? That's what you get for invalid logic. Infinite regression.

  147. A tasty plumb like this can't just go... by Anonymous Coward · · Score: 0

    Ok. So now it comes to Microsoft and patents and innovation. Hmmm. Now that's interesting isn't it? If we went through the mountain (mountain, is that correct?) of paper that Microsoft spent all of this money locking down, and went and got a full set of copies of Don Knuths "The Art of Computer Programming", then added to that mix, Doug Englebarts "The Mother of All Demos", and then add to that all of the innovation done by the Internet Engineering Task Force, then add all of the innovation done by Xerox PARC, DARPA, and the good folk over at the University of California at Berkeley (BSD Unix), and go hunting through that big pile of paper Microsoft bought, with the clear thought that PRIOR ART is not patentable, and the US Patent Office had been extremely sloppy in the past few years in its lack of looking for prior art, then I bet *BET* that we will be looking at patents belonging to the wrong people. The US Government has made a lot of money taking money for patents, leaving it to the courts to overturn patents from offended parties. So then it comes down to what was created. What has Microsoft actually created thats credible? Surely if they figured out cold fusion, we would have heard from them. So where are all of the marvelous trinkets that we are to expect? Is it related to only pushing the mouse button once instead of twice? Does it involve animated paper clips? IBM has a systems journal where people (PhD's who work for the company) publish papers. Microsoft? I remember IBM developing the tunneling electron microscope. This is super cool technology that has saved the lives of millions and does for science what Toy Story did for 2D animation (HELLO 3D!). There isn't any real innovation in Microsofts paper. Its just paper to trip people in trying to implement the obvious. I'm quite disgusted by all of this (and I know I'm not alone).

  148. Success by Tony · · Score: 1

    They are an extremely successful company.

    So? Budweiser is the best-selling beer in America. That doesn't make it any good, let alone the best quality. ...but not one of those competing products has yet been able to overthrow Microsoft's dominance in its core fields.

    Aye. And the reasons behind this (ruthless, immoral, and illegal business activity) have very little to do with the quality of their products.

    When you're in first place, you dont really have to run harder to increase the distance between you and second place.

    Or you can use the power that comes with being in first place the ensure no other runner can enter the race. That is the power Microsoft has wielded in the past to great affect: by restrictive licensing agreements, they were able to keep out DR-DOS, OS/2, Geos, BeOS, and a host of other early competitors. (IBM really fucked up with OS/2, so it's only on the list because Microsoft *still* had to pull some questionable tricks to keep it at bay, even when IBM had OS/2 locked in the basement, feeding it through the crack at the bottom of the door.)

    So, now we come to the first line:

    I know this is slashdot and all, but the person who wrote this summary is so hopelessly biased against Microsoft its not even funny...

    It's not bias when your opinion is based on truth. Just because I want Charles Manson locked safely away doesn't mean I'm biased. It means I know what Chuck is like. Just because I wouldn't go to dinner with Jeffrey Dahmer doesn't mean I'm biased against him. Just because I wouldn't have sex with the most beautiful woman in the world who has aids, that doesn't mean I'm biased.

    See what I'm getting at? Even your post in Microsoft's defense had nothing good to say. The best you could say was that they were "successful." That's certainly not untrue. The summary was actually pretty to-the-point, except for the swipe at Clippy. (C'mon, folks. That was a long time ago. Let it pass. Even Microsoft was embarrassed enough to dump Clippy. But they had to do *something* with MS-Bob.) For instance, the Zune is not a good MP3 player. It's decent, but not that great. MS-Vista rather sucks, as an upgrade 5 years in the making. MS-Office 2007 is essentially MS-Office 2003 with a facelift and new proprietary document format.

    So far, the *only* product that is half-decent from Microsoft in the last couple of years is the XBox 360. It's hobbled by lack of high-density media (HD-DVD or BluRay), but they had to do that to keep the price down, so maybe that was the right call. It's still a decent game console. (I hated the original XBox, which was nothing but a cheap PC in an ugly case. At least they took the time to figure out how to make a *gaming* console this time around.) Even with the 360, there's no real innovation. It's a good, solid system with some quality control issues, but otherwise not very spectacular.

    I guess my point is this: the summary was simply saying that, with so much regard for the quality patent portfolio, why is Microsoft still making Budweiser? Why can't they get up to Anchor Steam quality? Or Great Lakes Nosferatu? Or (insert your favorite ale or lager here. But not lambics. I hate lambics.)?

    --
    Microsoft is to software what Budweiser is to beer.
  149. Irony Sandwich by Tablizer · · Score: 1

    like AT&T when it had too much money, take a bunch of academics, give them money, and tell them to do cool things. After all, the whole department will pay for itself with a couple of nifty inventions.

    Which sparked UNIX and its clones, which ironically ultimately may be what kills MS. Pig lab kills a pig.

  150. Taking this at face value... by localman · · Score: 1

    I'll give Microsoft and the USPTO the benefit of the doubt here (insanity!) and assume that they really do produce the most great patents.

    It just goes to show that there's a world of difference between a good idea and viable execution. Reminds me how Xerox had, by far, the best set of ideas in the industry in the late 70's and almost totally failed to do anything with them.

    As someone who leans more toward the creative side as opposed to the marketing side, it's humbling to see how much we need each other. "If you build it they will come" isn't true. You need someone who understands how to make great ideas into practical products, then find the right people to market to and get it in front of their eyeballs. It's not easy or cheap.

    Really, this kind of marketing ability is Apple's greatest innovation. They have great ideas, sure, but their ability to get them out to people is what sets them apart. Hopefully Microsoft can figure out how to do this before they start slashing their R&D budget in a downward spiral.

    Cheers.

  151. Encouraging Innovation by hanzoach · · Score: 1

    Well at least they are encouraging developer to be creative, like..

    1001 ways to make your page work in IE

  152. The Borg, innovative??? by Anonymous Coward · · Score: 0

    AAHAHAAHAMOUAAAHAHAHAHAHAHAHAHAHAHAH! Please kill me! AHAHAAHOAHAOHOHOHOHAHAHAHAHHRRRRAHHHHH!

  153. Some hidden in plain sight by ET3D · · Score: 1

    First, as people said here, patents aren't always directly related to innovation as a lot of people see it. However, they do provide new ways of doing things.

    Classic MS patents are the extended filenames for FAT/FAT32. Say what you will, MS invented a way to encode long filenames. Not anything major, but worth a few patents (in an industry that has software patents as they are now; not getting into *that* argument). I'm sure that Windows Media encoding of audio and video has a few patents, and these are true patents. Sure, there are other ways to achieve the same goal, but that's what patents are about.

    A lot of other research goes into things like .NET, DirectX, all kinds of platform products that end users care little about. I'm sure Vista's kernel includes a lot of patents, and few users know or care, because users just see the UI and interaction, not what's underneath.

    Some research goes into products like Microsoft's image editing (defunct product that is now partly integrated with Vista). Probably others are integrated into other products that few people use, relatively speaking. Of the many products that Microsoft publishes, most people only think of Office and Windows and what's included with them. Even then, they refer only to a subset of functionality. Few people will think of Office's collaboration tools or OneNote, and probably nobody has heard of Forefront Client Security (I just downloaded the Microsoft product list, and there are lots of products there I've never heard about).

    A lot of patents of course don't yet have products incorporating them on the market, which is just the nature of patents. The time from patent creation to product is a few years, even when a company immediately starts creating a product around it. A lot of times the company doesn't have a good product to incorporate the patent into. Though Microsoft has a lot of patents in graphics, image processing, etc., it doesn't really have mainstream products there, so what doesn't get into the OS via the likes of DirectX might remain in the patent portfolio without implementation.

  154. speaking English are you? by Anonymous Coward · · Score: 0

    Microsoft is the Industry's Most Innovative Company?

    or

    Is Microsoft the Industry's Most Innovative Company?

  155. Wah wah wah. by erroneous · · Score: 1

    Fuck it, karma to burn. A summary of this thread.
    > "Microsoft did X and that was pretty cool."

    15 replies> "That's not cool! Everything Microsoft do is SHIT!"
    8 replies> "Actually, Apple/IBM/XEROX/My Dad did X first!"
    4 replies> "That's so obvious. Anyone could've done that."

    Actually, that's almost a summary of this entire site.

    --
    erroneous: look me up in a dictionary
  156. Microsoft, innovation and reality by jdickey · · Score: 1

    Having worked at Microsoft before.... there is an amazing amount of wonderful stuff that gets generated, internally, but never sees the light of day outside the company. This is another indication of how jaw-droppingly bad the mismanagement situation has been for the last decade (at least). There's no political gain in it for the legions of "managers" at any of an amazing number of levels. The innovation and general lack of productive control (i.e., harnessing and utilizing creative energy and ideas to create kick-ass products) and the tension between the (low-level) folks who come up with the cool stuff on the one hand, and the business/internal political chosen realities on the other, make for a fatally dysfunctional company. Part of why Vista sucks with absolute zero partial pressure and took a dog's lifespan to finally get out the door is because all the "neat stuff" got put in, taken out, put in, taken out, and then the whole crap sandwich got taken apart and made with a different loaf (Server 2003). The higher you go in the organization, with very few exceptions (mostly people like Ozzie who've been brought in from outside within the last ten years), the lower the quality gets, until it reaches absolute zero a couple of levels below SteveB - and keeps right on going.

    I think I speak for most of us software professionals when I say that Microsoft pwning the world the way they do really wouldn't be so bad if their cash-cow products didn't give shit a bad name. I'm positive I speak for a large number of small shareholders when I say I wish that the Board would take a broom to the top several layers of management, cauterize the middle 20 or so out of existence, tar and feather SteveB and run him out of town tied to one of the chairs he likes to throw around, and get Microsoft into the business of creating great software. We know it can be done; we're just tired of seeing everybody else doing it instead.

  157. I guess you have to give it to them, by garphik · · Score: 1

    after all they "invented" .NET

    But seriously, looking at other aspects (like CG, robotics) yes, they do deserve a pat on back.

  158. yet more abuse of the I word .. by rs232 · · Score: 1

    Once commercial considerations become the priority real 'Innovative' goes out the window. You see there is no incentive in producing anything new while the current product is still making revenue.

    --
    davecb5620@gmail.com
  159. the original Clippy was very innovative .. by rs232 · · Score: 1

    "it started out based on very serious research in machine learning and human/computer interaction"

    Like, do you have any citations or URLs pointing to this research. I understand it started out as part of the Microsoft Bob project headed by Melinda French, which is probably why it was foisted on an unsuspecting world.

    "made the development people dumb Clippy down, so it would think you were in trouble at the first sign of anything slights wrong, and pop up"

    I understand that in earlier versions of clippy you could disable it by removing certain 'actor' folders. This was changed in later versions so it is impossible to stop the annoying paperclip poping up. That about as innovative as it gets .. :)

    "The research version of Clippy was probably one of the best online help aids ever"

    Where can we see it .. was: the original Clippy was very innovative .. (Score:3, BS)

    --
    davecb5620@gmail.com
  160. is it just me ... by Anonymous Coward · · Score: 0

    ... or have the IEEE and ACM become less and less relevant. Vicious content walls and now crap analysis.

    Who will fill the gap ? Maybe somebody at PLOS ? Or
    USENIX ? Maybe some other project ? Any pointers ?

  161. back to the future .. by rs232 · · Score: 1

    "Microsoft seems to have understood that the first company to crack the parallel programming nut will be at the forefront of computing in this century"

    "The transputer (transistor computer) was the first general purpose microprocessor designed specifically to be used in parallel computing systems ", circa 1980s ..

    I figure we haven't seen any advances as so much resources have been invested in advancing the WinTEL platform, to the detriment of real Innovation ..

    Re:Parallel Programming Research at MS (Score:5, BS)

    --
    davecb5620@gmail.com
  162. Microsoft patented innovations .. by rs232 · · Score: 1

    "Microsoft *has* been commissioned by the JPEG working group to develop JPEG XR .. as the next-gen photo image standard"

    "One important aspect regarding the standardization of HD Photo is Microsoft's commitment to make its patents that are required to implement the specification available without charge"

    I do believe I see where this INNOVA~1 is going, total control of the TUBES .. ;)

    --
    davecb5620@gmail.com
  163. innovative product .. by rs232 · · Score: 1

    "Excel was another really innovative product. It was so much better than Lotus123 that it made your head hurt"

    Yes, it was so much better that MS had to copy it in the earlier versions of Excell and withold Windows API specs from Lotus. Lotus concentrating on OS/2 probably didn't help either. Promoting switcher messages to disrupt the SmartSuite launch. Not publishing extension as they can't with compete with Lotus and Wordperfect, Yea lots of 'innovation' going on here .. :)

    "Q+E 2.5 will use some fresh product news to talk about in June, but is a parity feature with Lotus"

    Not that bad. (Score:5, BS)

    --
    davecb5620@gmail.com
  164. ClearType = subpixel rendering .. by rs232 · · Score: 1

    "MS actually does have patents on some fairly innovative things (example: ClearType) that are pretty clever"

    Cleartype aka 'subpixel rendering' borrowed from Apple ..

    "Sub-pixel rendering was actually first implemented in 1976 by Steve Wozniak at Apple Computer for the Apple"

    Re:MS does have some valuable patents (Score:3, BS)

    --
    davecb5620@gmail.com
  165. Who from IEEE? by durval · · Score: 1

    Maybe it's the same guys who already gifted the world with the WEP fiasco

    Make no mistakes, people. There are complete idiots in the IEEE as well as outstanding geniouses, just like in any other organization.

    --
    Best Regards,
    Durval Menezes.
    I have never met a computer that didn't like me.
  166. friends published research ... by rs232 · · Score: 1

    "A friend did research on distributed shared computing in grad school. The project was supported by Microsoft, they had access to Windows source code, they were not restricted from publishing their research"

    Where can we see this project, what was your friends name .. ?

    Microsoft actually does real research ... (Score:5, mod everything up)

    --
    davecb5620@gmail.com
    1. Re:friends published research ... by AHumbleOpinion · · Score: 1

      My friend was a part time grad student employee on the project. The research was not complete or published when he moved on. Also, I had a typo - or brain fart if you prefer, it should have been "distributed shared memory" not "distributed shared computing". My bad.

  167. Patents inversely proportional to innovation? by WH44 · · Score: 1

    I don't know about all you other hackers out there, but over my thirty years of experience, I have probably developed over a hundred ideas that would have been patentable under todays standards, maybe hundreds if you sink to the "one click" level. I do not have a single patent. If I had taken time to develop a patent or patents on one idea, it would have taken months and screwed up my creative processes for a good long time. In the small company I work for, that would be fatal.

  168. That's fucked up! by Anonymous Coward · · Score: 0

    You fucking freaks are bashing the Zune without even owning one. I have the Zune and it's excellent. Fuck you all you filthy humans!

  169. SOP for most large companies by Bigmilt8 · · Score: 1

    Microsoft (like ATT, IBM, HP, Dupont, etc.,) does research in their fields of endeavor. That is a part of most large organizations budget. They don't release it until it fits into a strategic place for them. That is also SOP (Standard Operating Procedure) for most companies. If you want free research go to either Academia. Pay isn't great though.

  170. And now irony by Microsift · · Score: 1
    --
    My other sig is extremely clever...
  171. The Secretary Might Have Agreed With This . . . by QuietObserver · · Score: 1

    Please allow me to point out three major reasons the secretary might have hated switching to Word from WordPerfect:

    1. Reveal Codes: This is the ultimate editing tool; reveal codes allows a WordPerfect user to see exactly why a document appears the way it does, showing every nuance of the document in a very simple, straightforward fashion. This was impossible to properly implement in Word because they use a document format that is makes adding codes to the text impossible; Word's format is 'object oriented', a text string followed by a mess object pointers (this also slows the editing process, since each object pointer has to be updated anytime text is added into the middle of the document). WordPerfect's file format, on the other hand, is stream based, the entire document is presented as a long data string, much like an HTML or XML document, with codes interlaced within the text, which makes editing much faster, since all you have to do to add text is just shove everything below it down (graphics and other objects are stored as separate objects, but since they don't have to be changed as the document is edited, editing remains quick and simple).

    2. Specialized Formatting: WordPerfect included several codes that I've never seen in any other word processor, including 'Center on Margin', 'Right Flush', and two forms of 'Indent', which allow the user to make small changes to a line or a paragraph without changing any of the document settings. 'Center on Margin' and 'Right Flush' give you a single line of center justification and right justification without changing the justification settings, and both can be used on the same line, which gives you the ability to create three columns without changing any document settings or creating a table. These specialized formatting codes allow users to do simple things with their documents without wasting extra time fiddling with tab settings or creating a table; there are very, very few documents I create in WordPerfect that I don't use Center on Margin at least once in, and I often use Center on Margin in place of Center Justification.

    3. The Mouse is *not* required, except for things that would be completely illogical to do without the mouse. I frequently use keyboard shortcuts to do all sorts of things, simply because it's easier, faster, and more efficient than screwing around with the mouse. Furthermore, you can make sweeping changes that effect the entire document simply by putting the cursor at the beginning and applying the change there; there's no need to waste time highlighting the entire document. From my somewhat limited experience with Word (I've detested every second I've had to deal with the app), I've had to use the mouse for a number of things that I'd just have used the keyboard for in WordPerfect, and find myself wasting a lot of time trying to cope with the numerous frustrations.

    These three reasons, and possibly many others, may have been reasons for the secretary's frustrations and displeasure at being forced to switch to Word. I know these have been the most significant reasons I've found Word to be a substandard excuse for a word processor, and I know many others who refuse to make the switch for the same reasons.