Slashdot Mirror


Changing Climates for Microsoft and Google

ReadWriteWeb writes "Weather metaphors abound as this article looks at the evolving software environment — and in particular the competition between Microsoft and Google. Milan says that while Google enjoys relative dominance on the Web platform today, two fissures exist that will force them to move. The first is Microsoft's ability to use the exact same HTML based strategy as Google (like Microsoft's current Live initiative); and secondly Microsoft leapfrogging the current environment by solving rich application installation/un installation and enforcing an acceptable contract regarding what rich apps can do on a user's machine. Unfortunately for Google, Microsoft is a lot closer to solving these two issues than people think. Microsoft has the best virtual machine with .NET, the best development tool with Visual Studio and the best access to developers with their MSDN programs. And they have a notion. Steve Ballmer himself has started touting the exact strategy they need — Click Once and Run."

66 of 393 comments (clear)

  1. and Google has ... by thrillseeker · · Score: 2, Insightful

    ... respect.

    1. Re:and Google has ... by Creepy+Crawler · · Score: 3, Insightful

      That they do have respect.

      The nice letter to the guy developing the google-map data interface was a great show. And no C&D, just asking nicely.

      Im always amazed at companies acting ethically.

      --
    2. Re:and Google has ... by garcia · · Score: 4, Insightful

      Yes they do, until their applications stop running. People aren't going to blame MSFT for their Google apps not working. They're going to blame Google. "It's Google's responsibility to make sure our stuff works on the MSFT platform. Not the other way around."

      People want their computers to run fast and easy. Aside from that, there are very few people that care how that is accomplished. So, if MSFT ensures that their computers are doing just that, they will have happier customers.

      MSFT has been known to make sure that certain applications do not run w/o changes on their OS and if you think that they won't do anything in their power to shut Google out, you're sadly mistaken.

    3. Re:and Google has ... by Anonymous Coward · · Score: 2, Insightful

      Google or no Goole, but how about this little gem?

      "Microsoft has the best virtual machine with .NET, the best development tool with Visual Studio and the best access to developers with their MSDN programs"

      Why did the author not go ahead and say, "MS has the best OS and the largest market share on the desktop, search, server arenas". I mean, if its on a blog, we have to believe it, right, right....

    4. Re:and Google has ... by namityadav · · Score: 2, Informative

      No, they can not do that. You need to read about http://en.wikipedia.org/wiki/Antitrust/

  2. click once and be pwned by ummit · · Score: 5, Insightful
    Steve Ballmer himself has started touting the exact strategy they need -- "Click Once and Run."

    That's just about the worst possible news. Microsoft's strategy of making it all-too-easy to install and run questionably-trustworthy code is why the email virus, web browser malware, and -- worst of all -- botnet problems have become the unsolveable epidemics that they are. Does anyone believe that Microsoft will actually get it right this time, in terms of introducing some practically workable mechanism for allowing only trustworthy code? (Not to mention the difficulty of meaningfully defining "trustworthy" in this context...)

    1. Re:click once and be pwned by StrawberryFrog · · Score: 3, Insightful

      I'm ignoring mod points to reply to this. Do you know anything about code access security in .net? Can you tell me, for instance if .net code off running the internet has permission to read and write arbitrary files? Hint: starts with a "n".

      We're not talking about "will get it right ... introducing some practically workable mechanism for allowing only trustworthy code", We're talking talking about a model laid out in .net 1.0 and refined in 2.0 about a year ago.

      Do you in fact know anything about what you're talking about?
      You can work against MS all you want, but blind ignorance won't help you do that. Know your enemy.

      --

      My Karma: ran over your Dogma
      StrawberryFrog

    2. Re:click once and be pwned by xra · · Score: 2

      Knowing their record, isn't only fair to wonder ?

    3. Re:click once and be pwned by ummit · · Score: 2, Interesting
      We're not talking about "will get it right ... introducing some practically workable mechanism for allowing only trustworthy code", We're talking talking about a model laid out in .net 1.0 and refined in 2.0 about a year ago.

      Neither of us will convince the other on this point, so I won't try.

      If, a year or two from now, .net 2.0 (or whatever version it's up to by then) is stable and secure, I will say, "Shit, I was wrong."

      I ask only: if, a year or two from now, there is some undreamt-of new "impossible" attack against or subversion of the idea, such that people are clicking once and getting pwned all the time, you do the same.

    4. Re:click once and be pwned by StrawberryFrog · · Score: 3, Insightful

      In order to have a successful application, Microsoft will either have to disable that protection, or require users to store their documents on a remote server.

      Wrong. I said "Arbitrary files" not "any files". Go look up "isolated storage" - it allows a partially trusted app to read and write files, while ensuring that the only app that it is capable of messing with is itself. And what's so bad about remote servers? It works for gmail.
      This is yet more argument from ignorance.

      Additionally, single click 'installs' will eliminate the 'code running off the internet' problem.

      Wrong. Such code runs with partial trust, in the internet zone.

      Please, know what you're saying before replying.

      --

      My Karma: ran over your Dogma
      StrawberryFrog

    5. Re:click once and be pwned by morgan_greywolf · · Score: 2, Interesting
      Wrong. I said "Arbitrary files" not "any files". Go look up "isolated storage" - it allows a partially trusted app to read and write files, while ensuring that the only app that it is capable of messing with is itself. And what's so bad about remote servers? It works for gmail.
      This is yet more argument from ignorance.


      Maybe. But when you have an OS where major parts of the GUI subsystem run in ring 0 with many, many bugs in that subsystem, making installation of a trojan or a worm or other malware a simple matter of exploiting those security bugs, I don't exactly get that 'warm and fuzzy' feeling about One-Click installs of applications from the Internet, an inherently untrustworthy network.
    6. Re:click once and be pwned by truthsearch · · Score: 2, Interesting

      I've written a fair amount of .net code to run within a private corporate network. I've never written anything to be run through the browser or "from the internet". But I was calling COM objects with no security limits. Does .net "off the internet" prevent COM or Win32 calls? Because if not a few lines of code can control the entire windowing system, and probably worse.

      In my experience .net is just a poor copy of java. This discussion is like the mid-1990's all over again. Virtual machines, sandboxes... it wasn't popular last time. Why should this time be any different?

    7. Re:click once and be pwned by StrawberryFrog · · Score: 2, Informative

      Does .net "off the internet" prevent COM or Win32 calls?

      That is correct: It would require the UnmanagedCodePermission, which code in the Internet or Local Internet zone does not have. You know, if you can think of a hole in 5 minutes, the .net team might just have covered in in the last 5 or so years.

      In my experience .net is just a poor copy of java.

      Well, I prefer c# to Java, I found it to be an improved copy. But your mileage may vary.

      --

      My Karma: ran over your Dogma
      StrawberryFrog

    8. Re:click once and be pwned by truthsearch · · Score: 2, Insightful

      Oh, such a poor attempt at trolling. How would being a .net developer from beta to version 1.0 make me an expert in their platform's security? I have no idea what's going in the last few years with .net. And for what short time I did use it I didn't care much about security because it was only for intranet use.

  3. Visual Studio by Explodo · · Score: 3, Informative

    I'd have to say that Visual Studio pretty much rocks. I use it for c++ development only, and am very happy with it. If linux had any dev environment that was ANYWHERE NEAR as good as VC++, maybe I wouldn't despise working on it.

    1. Re:Visual Studio by Shaman · · Score: 2, Informative

      Eclipse? KDevelop? Emacs?

      --
      ...Steve
    2. Re:Visual Studio by t0tAl_mElTd0wN · · Score: 2, Informative

      I would recommend the Eclipse CDT - it does C and C++, works on Windows with MinGW, Linux or Mac with GCC, and has far more descriptive syntax highlighting than VC++.

    3. Re:Visual Studio by everphilski · · Score: 2, Insightful

      Eclipse is buggy as hell in a C++ environment, not to mention sloooow. (even my Java friends who are evangelists for the program will concede it is not worth it for a C++ developer) KDevelop - depends upon what you are building with. There are issues depending on your coding convention (extensionless headers, Qt builds, etc). I refuse to touch Emacs with a 39 and a half foot pole.

      That being said I do my linux development under vi. But under windows I use VS. VS excels beyond any open-source replacement to date.

    4. Re:Visual Studio by ivan256 · · Score: 3, Insightful

      I refuse to touch Emacs with a 39 and a half foot pole.

      You refuse to use the best application out there for the task at hand, and then you complain that there isn't a good application out there?

      What do potential employers think when they see "Intimidated by complex software" on your resume?

    5. Re:Visual Studio by Viol8 · · Score: 2, Insightful

      "ANYWHERE NEAR as good as VC++, maybe I wouldn't despise working on it."

      If you're a half decent programmer you'd be able to code just as well with a text editor as with an IDE. That fact that you imply you can't says more about you than the linux dev enviroment.

    6. Re:Visual Studio by Explodo · · Score: 2, Insightful

      This is the attitude that's holding linux back. IDE's aren't bad things. A good IDE makes life easier for everyone. Both experts and novices can get things done with a good IDE. Using only a text editor and command line interfaces makes it so that only the greatly experienced can get anything done, thereby giving those who've mastered it the feeling of l337-ness that makes them think that anyone who prefers using an IDE is an incompetent fool. Elitist attitudes and awkward tools aren't going to advance linux.

    7. Re:Visual Studio by shaneh0 · · Score: 3, Funny

      "I refuse to touch Emacs with a 39 and a half foot pole"

      Perhaps, then, my penis would be of some assistance?

  4. Denial....... by LibertineR · · Score: 3, Informative

    You can argue about .NET, and about Visual Studio dude, but there is NOTHING that compares to MSDN, and the resources Microsoft makes available to developers. On this, there is no contest.

    1. Re:Denial....... by interiot · · Score: 4, Insightful

      I can't tell you're serious or not. I've always found navigating MSDN to be pretty frustrating, from the 100 copies of documentation for the same function (none of which are the version you want), to the hours I've spent searching for something only to find that it's not documented anywhere, to the same convoluted thinking that brought us VB and batch file syntax. At least with open source apps, I know there's some upper limit to the amount of frustration I have to endure, since you can just look at the code to get your answer if it comes to that.

    2. Re:Denial....... by LibertineR · · Score: 2, Insightful

      I'm serious. I am NOT saying that MSDN is great, only that it is better than anything provided for competing platforms. Sometimes MSDN assumes a level of knowledge with products that is beyond the average developer. Take BizTalk for example. Trying to learn that product strictly through MSDN is a lesson in futility. Only after you gain a basic knowledge does MSDN become really useful. I would say the same for Dynamics CRM too.

  5. today is spammy article day by Anonymous Coward · · Score: 2, Informative


    AdBlock has blocked 19 out of 39 items

    so nearly 50% of the page is adverts
    sad

  6. Click once and run? by stile99 · · Score: 5, Funny

    Run where? Screaming from the room? For the border?

  7. click once and run, but run what? by 192939495969798999 · · Score: 5, Insightful

    Click once and run, sure, but run what? The program I wanted, or some spyware installing, DRM-adding beast app? Google has a huge competitive advantage in that they don't need to lock people in with that stuff in order to enjoy success. They simply make apps that perform well, and for some reason people continue to use those. Over time, .Net's massive overhead and microsoft's high licensing costs will cripple upstart developers. These developers will turn to OSS alternatives for cost and other benefits, it's only a matter of time. Microsoft may maintain a large market share, but Google will not "lose" because they're doing something different, even if the end result is a similar set (from a stratospherically high-level view) of apps.

    --
    stuff |
  8. Click Once by Archangel+Michael · · Score: 5, Insightful

    Click Once is the biggest problem with MS software. Already we have zero click and back door click software installs. It is the bane of my daily chores to remove and recover from web based installs and applications. As a system administrator, having to run in a windows environment I struggle daily to remind the users to NOT INSTALL SOFTWARE FROM THE INTERNET.

    I hate Google Toolbar, Yahoo Toolbar and all the others not because those two are not useful, because they are, but rather because they condition the user to install EVERY FREAKING "IE Toolbar" out there. No Toolbars, period!

    Your average user is a clueless idiot, and will click install all sorts of crap as long as he thinks it is okay. IT IS NOT OKAY! IE7 is the latest and greatest FOOBAR automatic install from Microsoft. Hey Microsoft, having IE7 automatically install with automatic updates is a really stupid idea, fire the asshat who signed off on that one. Not everyone is running PIV with a gig of ram necissary to run IE7.

    So, as for the "click once and run" crap, keep it to yourselves!

    --
    Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
  9. google is by everphilski · · Score: 2, Insightful

    An advertizing company with a search engine [and other tools] to drive traffic to its advertizements.

    1. Re:google is by somersault · · Score: 2, Interesting

      It didn't start off that way, well as far as I remember, but still.. what's not to respect about a company that does its job well, and in an unobtrusive (compared to all the crappy flash ads and banners we have these days) way? Not that I usually look at the google ads either. In fact I think they're being blocked completely now with an ad blocker..

      --
      which is totally what she said
    2. Re:google is by plantman-the-womb-st · · Score: 2, Insightful

      But, that is in fact what they are. How do you think they make money? The magic money fairy pays them for brodcasting free news?

      --
      Say bad words about my book, in cold oatmeal, or I shall sue!
    3. Re:google is by jdray · · Score: 3, Interesting

      I actually like the ads in GMail. They're context-sensitive, so when I'm chatting with one of my friends about the latest hare-brained idea (rocket boosters based on parafin/lox, personal VTOL aircraft, etc.), we get an on-going catalog of mostly-related products. Some of them have been very useful, and gotten us past some difficult engineering problems.

      --
      The Spoon
      Updated 6/28/2011
    4. Re:google is by Joe+Snipe · · Score: 2, Insightful

      They are. Name one program that has stayed on the air even though it gets low ratings and is expensive to produce ( I realize there are multiple reasons for this, bear with me).
      The television companies may have started out attempting to offer quality programming for your enrichment (or some other noble goal), but the end result of 60+ years of business is this: Produce programs that grab a viable portion of the viewing audience as leverage to increase sales from the advertising market. Your quantifiable experience is irrelevant, except as it pertains to your repeat viewing. Sadly, the only thing that really keeps the programs in check is the stronghold the religious community has over hollywood and various government agencies.

      --
      Sometimes, life itself is sarcasm...
    5. Re:google is by q-the-impaler · · Score: 2, Insightful
      Remember the Janet Jackson wardrobe malfunction?
      Not to disagree, but I never bought the "wardrobe malfunction" crap. That was done on purpose for some publicty-based reason. My take was that it wasn't the religious community that made a big deal about it, but the news media that didn't have anything better to harp on. Not that the religious community didn't object to it, but still, the media blew it way out of proportion and made it a scandal. Boring things don't make headlines.

      What was the original topic again?
      --
      Sierra Tango Foxtrot Uniform
    6. Re:google is by cloricus · · Score: 2, Insightful

      To be honest I tune out nearly all the ads I see. I some times click on the ones from /. because they are very well targeted and some times they coincide with a purchase we need to make at work. On the whole though when I'm looking to buy some thing I really only rely on Google ads as I have no interest in rewarding flash+bight colour ads. If I think about it I think the last ten things I've bought online on a whim have been from Google ads. Then again I miss the olden days on the web when there were no ads. Guess if you can't have everything you can at least have some thing thats not intrusive. Anyway Google has my loyalty over Microsoft for the foreseeable future; that includes keeping the default search engine as Google when work phases in Vista some time in the next five years.

      --
      I ate your fish.
  10. Qualify Best by micromuncher · · Score: 4, Insightful

    [Microsoft has the best virtual machine and IDE.]

    Using persuasive language without a qualification comes accross as marketing FUD. Please qualify "best" for us. .NET is a suite of tools, some old, some new. Each has a set of strength and/or weakness depending on your point of view. For example, C# and its ability to sidestep strong typing and security server/client side, VBA client side and its ability to drive a lot of client side integration (Office Automation), complicated by the fact most enterprise make this almost impossible with default desktop security, Studio with a serious bent on good integration with anything Microsoft but not so good with anything else... coupled with documentation that is completely outdated on MSDN (OLE Object Stream initialization for embedded controls). There are some serious architectual flaws in the whole attempt to integrate OLE/OCX with web pages and services (including support of archaec pre-web stuff.) Extended clip board support... Complexity injected via SOAP/XSL...

    So please qualify "best". Because its not reduced complexity, increased quality, best reliablity, best scalability, best security, shortest delivery time, easy integration, or fastest performance...

    --
    /\/\icro/\/\uncher
  11. Doesn't Steve Mean.... by zarthrag · · Score: 4, Funny

    "Click Once And Run"...Away?

    --
    Why can't all fpga/microcontroller manufacturers just release free optimizing compilers???
  12. Again by shaneh0 · · Score: 3, Insightful

    Eclipse? KDevelop? Emacs?

    Again.. If linux had any dev environment that was ANYWHERE NEAR as good as VC++, maybe I wouldn't despise working on it.

    1. Re:Again by Explodo · · Score: 2, Insightful

      "Development tools"

      Let's look at those words:

      Development: I'm gonna write some code to get some jobs done
      Tools: Things I use to write the code to get some jobs done.

      I wouldn't buy a hammer that's still "developing quickly" but not ready for prime time, I'd buy a hammer that's ready to use! In fact, if someone gave me a free hammer, and said, "It may or may not work for now, but in a couple of years it'll work great!" I'd go out and buy myself a hammer that already works in spite of the increased immediate cost to myself.

      If development tools slow down the development process, then they aren't good tools.

    2. Re:Again by Ginger+Unicorn · · Score: 4, Insightful

      no, but an IDE isnt a hammer. You are implying that Eclipse wont function as an IDE because it isnt finished yet. That isnt true. It simply hasnt matched every single feature of VS yet.

      Put it this way - if someone offered you a moderately featured family sedan for free, would you turn it down because you'd rather buy a formula 1 car that can go 80mph faster?

      perhaps you need to go 200mph. most people dont.

      its an even more tempting proposition when you factor in the the family sedan maker will automatically upgrade you car every year until eventually it does go as fast a formula 1 car.

      --
      (1.21 gigawatts) / (88 miles per hour) = 30 757 874 newtons
    3. Re:Again by Bob-taro · · Score: 2, Funny
      Emacs - I found a faster text editor with the same features of emacs: "wine /opt/winc/Windows/notepad.exe".
      Wow! I'm not that fluent in emacs, but for this statement to be true, I must be totally ignorant of most of Notepad's features.
      --
      Prov 9:8 Do not rebuke mockers or they will hate you; rebuke the wise and they will love you.
  13. ClickOnce by outcast36 · · Score: 4, Insightful

    I agree that Microsoft does have a very nice development approach, but to claim that ClickOnce is comparable to todays HTML/Javascript applications is really reaching. Corporate Users will likely have this ability (once the organization deploys .NET 2.0 runtime), but expecting Windows Live or Yahoo to give up on the AJAX binge for ClickOnce deplyoments is not likely. ClickOnce is more like Java Web Start. We've had that technology for years now, but for some reason, these web apps persist.

  14. correction by toetagger1 · · Score: 2
    Click Once and Run
    Shouldn't that read "Click Once, and Reboot"?

    Given, Microsoft has a lot of legacy technology and platforms that give them an edge moving forward. But you cannot ignore the other part of the momentum this technology carries with it. All the bugs, limiting architectures, and requirements for legacy support makes it harder to go into a new direction.

    My prediction is that the more the environment changes, the bigger an advantage the newer players gain over the large, legacy companies that build their company on incremental products, like Microsoft does with Windows.
    --
    who | grep -i blond | date cd ~; unzip; touch; strip; finger; mount; gasp; yes; uptime; umount; sleep
  15. What MS Doesn't Have by nate+nice · · Score: 4, Interesting

    They have .NET which is greta and all, but for the Web they leverage ASP.net which is still a dinosaur of an idea.

    Google has GWT, which only about 100 people on Earth get right now. Google has an understanding for the Web, Web applications and how users should interact in the World Wide Web far surpassing MS's "reactive" method of toolkit design.

    I see two companies. One which is using old methods, not innovating or developing new ideas and assuming stability in something as fast moving and cutting edge as the WWW. I see another company challenging old ideas (relatively old anyways) and proving the WWW is more than Web Pages and stateless client/server communication.

    I see a company that think they get this but only see flashy UI's as the means to the end here. I see another company that understand the UI is just a view to this new idea that the Web is a series of intercommunicating applications users can access from anywhere.

    But then, I don't expect many people, especially a monolith who's made their fortunes through brute strength rather than new ideas, to see this until it's apparently obvious. The search for the holy grail of the Web's next "killer app" is right in front of peoples faces.

    --
    "If you are a dreamer, a wisher, a liar, A hope-er, a pray-er, a magic bean buyer ..."
  16. difference between google and microsoft by rjdegraaf · · Score: 5, Interesting

    You can try for yourself:

    on www.google.com search for 'microsoft':
    Results 1 - 10 of about 393,000,000

    on search.live.com search for 'google':
    google page 1 of 751 results

    I like my search results 'unbiased', so I choose google.

    1. Re:difference between google and microsoft by SashaMan · · Score: 5, Interesting

      I originally thought your comment was trolly, but it actually turns out to be true, especially if you compare all possible cases:

      Google searching "microsoft": 39,500,000 results
      Google searching "google": 52,800,000 results
      MSN searching "microsoft": 80,139,835 results
      MSN searching "google": 648 results

      I can understand leaning a little more one way or the other, but 648 versus 52 million? Give me a friggin break.

    2. Re:difference between google and microsoft by recursiv · · Score: 2, Interesting
      I turned off adult content filtering in the options:


      google
      Page 1 of 65,601,473 results


      Very strange
      --
      I used to bulls-eye womp-rats in my pants
  17. Different companies, with different products. by RingDev · · Score: 2, Insightful

    Google provides software services. You go to Google to get directions, information, maps, images, etc. You use their rich web apps.

    MS provides tools for creating rich web apps. Sure, they produce some of their own apps (MSN Search, Live, etc...) to compete with Google. But their tool-set for the most part the best IDE in the industry. This allows any Joe-Schmoe coder to kick out rich web apps. They have an an amazingly robust VM in the .Net framework, which competes excellently against Java. (And that competition will force BOTH VM's to continue to improve!)

    So comparing the two companies is slightly irrelevant. Comparing MS's apples to Google's apples, Google wins, no questions asked. Comparing MS's oranges to Google's oranges... well, Google doesn't have much for oranges.

    -Rick

    --
    "Most people in the U.S. wouldn't know they live in a tyrannical state if it walked up and grabbed their junk." - MyFirs
  18. relative dominance on the Web platform today? by xxxJonBoyxxx · · Score: 2, Insightful
    Google enjoys relative dominance on the Web platform today

    "Dominance" is easy as long as you don't intend to charge for it. If Google puts a price on Google's free-as-in-beer service offerings, alternatives will start to look more attractive.

    (I don't run Google ad/spyware software (e.g., the Google toolbar) here because I don't like other people's software phoning home; I don't think the "advertising on everything" gambit will work on my dev tools either.)
  19. Reductionist by Infonaut · · Score: 4, Insightful

    An advertizing company with a search engine [and other tools] to drive traffic to its advertizements.

    Google's goal is to make information available and useful to people. They do so through a variety of means, and currently their profit model is based on advertising. It's tempting to reduce companies down to soundbytes, but it's not really useful for understanding how they operate or what they'll do in the future.

    --
    Read the EFF's Fair Use FAQ
  20. The best development tool with Visual Studio by oliverthered · · Score: 4, Informative

    Have you actually used visual studio? it degrades to a useless piece of rubbish after a few months.

    It may be better than Googles offering (nothing) but probably isn't better than eclipse/jbuilder.

    And after using both Java and .NET I would say that they are on equal footing, except Java is more mature, open source has things like EJB etc....

    --
    thank God the internet isn't a human right.
    1. Re:The best development tool with Visual Studio by W2k · · Score: 2, Informative

      Have you actually used visual studio? it degrades to a useless piece of rubbish after a few months.

      This is news to me, since I've been working off the same Visual Studio 2005 installation for almost 10 months now. Only time it got dreadfully slow was when I tried using a refactoring tool called Resharper. Since I uninstalled that, VS has been zippy. Before switching to VS2005, I believe I had a VS2003 installation that was several years old.

      --
      Quality, performance, value; you get only two, and you don't always get to pick.
    2. Re:The best development tool with Visual Studio by Almahtar · · Score: 4, Interesting

      I worked on a codebase of several hundred thousand lines over the summer, all on VS 2005. I was excited to see what all the buzz was about for myself. Intellisense constantly lied about which functions call others (example: it told me a function called itsself while I was looking at it - all 5 lines of it - and it clearly did not...). It constantly jumped to forward declarations when I asked where definitions were. The toolbar buttons would change their placement on occasion, and I would have to put them back. The program they provide for browsing the Windows API documentation frequently crashed (especially when left minimized for a half hour or so).

      One of my favorite "features" was when I would tell Visual Studio to close and it would decide what I really meant was "update your intellisense then close". Great. With a project that size updating intellisense took about 2 minutes. I don't need intellisense updated right now, because I can't use it if you're closed. Just close.

      The real clincher, though, was the "crash-on-debug" error that started plaguing the office. When you tell VS to "build and debug" it would build the program and then seg fault immediately. That's a serious pain with a large project because it takes a few minutes to load it again. To debug, you'd have to build the program then run it manually and then manually attach the process for debugging. This bug would strike staff at random, and the only solution was to do a complete rebuild of the entire project, non-distributed. This could take hours.

      With the amount of talent in that office and the amount of frustration at that crash, we could have just fixed the bug ourselves and saved a lot of time if the product in question was open source, but it wasn't.

      Visual Studio has cost that company a lot of money in wasted man hours.

  21. The best Virtual Machine? by Rik+Sweeney · · Score: 3, Interesting

    Microsoft has the best virtual machine with .NET

    If it's the best then why doesn't it work on a Mac or Linux?

  22. HTML standard and the new proposed canvas tag by Lothar · · Score: 2

    I really wish they would include the canvas tag in their next version of Internet Explorer. This would make the door wide open for an endless number of thin applications using cool graphics. But alas, there is not yet a standard for browser rendering of pixel graphics. It wouldn't be surprising if Microsoft tried to sabotage the inclusion of the canvas tag in web pages because using such powerful features in the browser would be against their rich client policy.

    Have currently been using the canvas tag myself in IE using google's excanvas and it rocks! Please give us Canvas!

  23. Re:Strike Three - You're Out! by hiroller · · Score: 4, Interesting

    I'll concede on the third allegation which I interpreted as the denial of access to the source code. This is one of the reasons that I have Linux running on my home box since I like to know how things tick on the inside. But I develop with M$ at work and I wanted to point a few things:

    "Microsoft has the best virtual machine with .NET,"
    Nope.
    Actually, I don't know if I could say that it is the best ever but it is a damn good virtual machine! It can run as well or even better of its equivalent JVM http://www.gotdotnet.com/team/compare/Benchmark_re sponse.pdf.
    "the best development tool with Visual Studio"
    Nope.
    Bar none, VS is the best development tool that I have used. M$ V$ 2005 alone is amazing and while it oversimplifies things, I like it b/c it makes me tremendously more productive which is great b/c now I have more time to read Slashdot at work!

    Just b/c it's made by M$ doesn't mean that it is a horrible product. The company itself makes some really shady ethical decisions but there are a lot of developers working for M$ just like us who want to release a great product.

  24. logic errors abound by sgt+scrub · · Score: 5, Insightful

    Microsoft has the best virtual machine with .NET, the best development tool with Visual Studio and the best access to developers with their MSDN programs.

    1) The best virtual machine runs on my platform and preferably others. .NET only runs on Windows. Therefore, .NET could not be the best virtual machine for any platform other than Windows.

    2) The best development tool runs on my platform and allows me to write applications that run on my platform an preferably others. Visual Studio does not run on anything other than Windows and makes it difficult to write application that will run on any platform other than Windows. Therefore, Visual Studio could not be the best development tool.

    3) The developers I look for write software for my platform and preferably others. The majority of developers available through MSDN are focused on developing Windows software using Windows development tools. Therefore, MSDN is not the best way to access developers.

    --
    Having to work for a living is the root of all evil.
  25. Re:Time to Throwdown by DLG · · Score: 2, Insightful
    Microsoft has never really had a direct threat it its business that could actually compete at the same level.

    I will give a fast list of companies. Some of them you may have heard of.

    Apple

    IBM (OS/2)

    Novell (Netware)

    Sun (Java, Solaris)

    Lotus (Ever heard of Lotus 123?)

    WordPerfect (I always thought that Microsoft DOS Word 3.0 was a brilliant WP. Very little interface. WordPerfect was clearly the big dog and it still has penetration in the legal field)

    Netscape

    It is true that many of these competitors were the #1 player and Microsoft managed to pass them. To suggest that none of them could compete with Microsoft seems to be based on the idea that if Microsoft won, then clearly the competitors were not even in the same league, whereas in most cases it has more to do with business cases. Google hasn't even started to compete against Microsoft in any meaningful way. While giving away software is a way to gain market penetration, (Microsoft gave away IE to beat Netscape), eventually you have to look at the way people make money. Microsoft does this through enterprise licensing, (wherein, they charge per user in environments that already have technical support staff so they have less to worry about as far as support), and through bundling their software on new PC's, where they charge less per copy but know that DELL will cover user support and software installation.

    In any case to suggest Microsoft has never been in competition with companies with significant resources is nonsensical. The fact that their techniques of requiring PC manufacturers to sell their OS on every machine they ship or pay higher per machine licenses allowed them to shut out all other OS's (why buy two operating systems when I HAVE to buy windows) was unfair and predatory, or that their tradition of non-public API's allowed their own apps to have improved performance, or their tendency of announcing vaporware (did you put in 2006 or 2007 in your office pool for the release of longhorn?), and writing in specific code into windows to forbid it to run on top of DR-DOS. A company that had to cheat as much as Microsoft has, is not a company that hasn't faced competition. Rather it is a company that has used every resource it has to claw its way to the top.

    The real question has more to do with whether Microsoft (or anyone) can constrain competition when the tools to create world-class applications are so inexpensive. I mean a pc for 300, linux for free, cheap broadband, cheap virtual hosting. Even Microsoft is giving away their development stuff for free. And with telephones becoming the new laptop, it just makes it even less clear how a big company gains. I mean it isn't going to be because of speed to release product if we are talking MSoft.

  26. HTML is not code by saforrest · · Score: 4, Insightful

    Consider two classic applications for two platforms. One is more or less owned by Microsoft, the other more or less owned by Google. The apps are familiar to every programmer: 'Hello World' done in C++ and HTML.

    Repeat after me:

    HTML is not code.
    HTML is not code.
    HTML is not code.

    What is not shown is the C++ compiler and linker that turns code into executable. Also not shown is the web browser which takes HTML and makes it presentable. And that's really the only difference between these two programs.

    That and, I don't know, Turing completeness?

  27. Re:Here's a test... by pavera · · Score: 3, Insightful

    What do you mean by "access any database" do you mean a gui database administration tool that allows a user to create tables on any database? Or do you mean compatibility with any database server (oracle, mssql, postgresql)? Or do you mean a gui application with a database backend and along with picking the dev environment we pick a database server too and build the tables etc?

    If you mean the last of those options (IE building a custom app that stores customer data in a database) I might take an extra day to build a simple app in Java...
    My app will run on windows, mac, linux, be web accessible (via standard browser or handheld), and will scale to millions of users by simply adding hardware.

    Now try using Visual Studio to match that..

    Sure anyone can open MS Access or Visual Studio and build a little database app for a 5 person company, but the data is now locked up in windows, building in web access is a pain, and you can't run anything but windows on your desktops.

  28. Upcoming patent cases: by ZiZ · · Score: 2, Funny

    Amazon vs. Microsoft for One-Click operations
    Lindows vs. Microsoft for Click and Run operations
    Pringles vs. Microsoft for Once You Pop, You Can't Stop operations

    --
    This flies in the face of science.
  29. VC: Great while it works... by The+Real+Nem · · Score: 2, Informative

    While I generally agree that VC is one of the best development IDEs out there (and I have used several open source alternatives, namely for coding in different languages), it has some glaring bugs that make me want to rip my hair out.

    VC 2003 had (and still has) an extremely annoying bug in its shortcut code whereby a compulsive ctrl-c and ctrl-v user like myself (in fact I've never quite determined which shortcut combination triggers it) can result in the end of a source file being duplicated twice. (So, for example, a header that ends in "}" may have another "}" appended. This would be OK if it wasn't for the fact that you couldn't actually see the additional "}" until you restarted VC (or opened the file in another editor). Alas, I've wasted many hours pulling my hair out trying to find errors in my code caused by superfluous braces etcetera that don't exist.

    I thought VC 2005 would save the day and solve this issue, which it did at the expense of an even more annoying one. I'm talking about the new intelli-sense in VC 2005 which, in large projects, can spend almost a minute "updating" after the most trivial of changes drawing 100% CPU power and bringing your work to a grinding halt. To make matter worse, using the ctrl-s shortcut to save a file freezes the UI until intelli-sense is done updating, and even then intelli-sense doesn't work half the time or is too slow to be of any use. For example, if I declare an instance of a class then attempt to use it, its methods only appear if I type slow enough for intelli-sense to keep up. In another brilliant move, intelli-sense cannot be disabled without renaming a .dll, and even when you do disable it you'll be surprised to find that other features suddenly stop working (for example, the form designer), which means you have to restart VC every time you want to enable/disable intelli-sense.

    This "best" development environment is enough to make me want to throw my computer out of the window sometimes. I wouldn't be the least bit suppressed if this is what's taking Vista so damn long?

  30. Re:Strike Three - You're Out! by 0xABADC0DA · · Score: 2, Interesting

    Uh, right, so to show CLR running "as well or even better of its equivalent" you compare two entirely different web architectures, J2EE and .NET. Kind of like comparing performance of OpenOffice to MS WordPad and concluding that g++ is much slower than MS c++.

    To benchmark these is complicated as .NET gets a lot of its speed by directly calling C functions, whereas in Java pretty much everything is implemented actually as Java code. This is of course a tradeoff since .NET contains a LOT more functions that can potentially be cracked because they are not run as 'managed' code. In the end it's basically a wash on performance; on actual virtual machine operations Java is in general significantly faster and on API calls .NET is usually quite a bit faster.

    DotNET has a couple technical shortcomings when it comes to performance, one being the impossibility of fast interpretation of bytecodes (the instructions depend on the argument types so can't be easily dispatched). Another is using "real" generics, which they thought would improve speed by avoiding some box/unbox operations but it also leads to type explosions and, slow instanceof and casts (for example you could use so much memory just due to instantiated types that CLR has to constantly throw away older code and re-JIT, not to mention poor use of cache).

  31. Re:Strike Three - You're Out! by W2k · · Score: 2, Informative

    I'll concede that MSDN is a very nice collection of CDs, but I'd trade those CDs for source code any day of the week. On that note, the Linux stack has a wealth of documentation ... but at your local book store.

    MSDN is not just a nice collection of CD's - it's all available on-line, and free as in beer. No ads, and it works well in Firefox! That's more than you can say for high-quality documentation for any other platform. I challenge you to prove me wrong.

    I personally find the CD collection inferior because you have to update it. Fortunately, the MSDN integration in Visual Studio also uses the on-line MSDN if the sought information is not available locally.

    Now, on that note, typically, the architects, developers, and testers you're referring to wouldn't know what to do with source code if it hit them in the head. They represent the lower ranks of the tech profession. Those of us who work in pushing the envelope of new technology almost unanimously reject MS products because they are far too contraining.

    That's a pretty unfair and ignorant way to look at people who use Visual Studio. Not only are you ignoring the fact that the most commercially successful pieces of software ever conceived - Microsoft Windows and Office - were developed in Visual Studio by people who certainly do not deserve to be called "the lower ranks of the tech profession" (well, some of them perhaps), you are also ignoring the many other companies who have created successful products developed using Microsoft's tools. I work at such a company, and we are in fact pushing the envelope of new technology in our market. While I would not call Microsoft's products perfect, they have been instrumental to our success.

    If your tools constrain you, you may be using the wrong ones; or you may be using them incorrectly. I think you have to try very hard to fail at using Visual Studio.

    --
    Quality, performance, value; you get only two, and you don't always get to pick.
  32. Re:Here's a test... by OldeTimeGeek · · Score: 3, Interesting
    Many companies don't run anything except for Windows on their desktops (mine included).

    Many, but not all.

    The company that I work for has some very important customers that don't, and I'd rather spend the time making sure that we worked without regard to operating system than being in the position of having to tell them that we're not interested enough in their business to make our site work for them.

    Besides, who knows what the future will bring? Fifteen years ago, if someone told you that you should start developing for Microsoft NT/AS because Novell wouldn't be a factor in the NOS business, would you have believed them?