Slashdot Mirror


User: ardeez

ardeez's activity in the archive.

Stories
0
Comments
61
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 61

  1. Re:Enemy of My Enemy, etc... on Microsoft Sues Motorola Over Android-Related Patent Infringement · · Score: 0

    I think you make two really good points, Apple don't seem to care so much about vast market share (although, through no fault of their own they have that with the mobile mp3 market). Also market fragmentation, i.e. more players makes MS's job a lot harder. Before they really only had to compete with Symbian. Now they've also suddenly got Apple and Android to compete with.

    The fact that HTC (the only manufacturer imo that had a decent Winmo device) is now shipping on Android further highlights the danger to them gaining much market share at all, never mind being the dominant player.

  2. Re:"padding oracle"? on Microsoft To Release Emergency Fix For ASP.NET Bug · · Score: 1, Funny

    Did the attack originate in Greece?

    Yeah, it was written in Dephi

  3. Re:IIS and ASP.NET can’t compete with Wordpr on Microsoft Migrating Live Spaces Users To WordPress · · Score: 0

    You're claiming that the success or failure of an application is a direct condemnation of the infrastructure stack that runs it? On that basis, I could cite any LAMP application that was ditched for a Microsoft stack application and say that Apache, PHP, and MySQL can't compete with (insert name of Microsoft stack application here) running on plain old .NET and an MSSQL database.

    Not that MS would ever play it the other way around, citing every move away from Linux as a 'win' for MS technology
    urging us to 'get the facts' ...

    They seem a lot quieter about the 'facts' recently. Haven't heard much about their great success at e.g. the LSE for a while ....

    Facts? We got 'em thx

  4. Scramble for Mindshare on IE9 Team Says "Our GPU Acceleration Is Better Than Yours" · · Score: 0

    Basically MS have lost market share, mindshare and respect for their browser and
    now when they see the vista of browsers competing effectively against them, they've
    sat down and said 'gosh darn it, how can we leverage our Windows(tm) advantage to recover
    and totally dominate the Web once more?' What do the other guys not have that they just
    can't emulate on our platform ?

    And they all agreed that 'leveraging' DirextX would be the best.

    So they've made up this pointless metric of displaying shit faster on the screen, like the web's
    a video game or something and said - 'see, this is really important and we're the best at it! Now buy
    Windows 7 and download IE9 so we can totally crush the competition already!'

    I'm pretty sure they've also instructed every salesman and evangelist to trumpet IE9's hardware acceleration
    to try and crowd out the competition.

    MS really can't brook any competition in their playpen.

  5. telco threatening on Microsoft Holds iPhone Funeral Event · · Score: 0

    Actually the zombies and mock funeral are more as a warning for the telcos.

    Buy and install our KILLER ! OS or we bring in the zombies!!!

    It's practically free! Or at least it will be until we kill the competition
    and then we'll revert to Windows based er, competitive pricing.

    That OK with you? Thought so ...
    Right! Take the zombies on to the next one .. who is it? t-mobile heh heh heh hehhhhh

  6. Re:What is this game? maybe I am too young? on Duke Nukem Forever Back In Development · · Score: 0

    You must be all outta gum

  7. Re:Something with a future? on Microsoft Kills the Kin · · Score: 0

    Cargo Cult Microsoft?

    They look at what the competition are doing and try hard to emulate
    it, but just don't 'get it'

    And by releasing all of this hardware they MUST be pissing off their
    hardware partners who are allegedly Microsoft's real customers, and
    that can only hasten their adoption of competing OS's like Android.

  8. Re:firefox is getting old on Microsoft Previews IE9 — HTML5, SVG, Fast JS · · Score: 0, Troll

    I laugh at Microsoft being forced to improve its support of a technology that can only
    help its competitors more than itself. Really, better Javascript support is not core to MS
    product lines in any way, and can only help trying to build a Web-centric app world
    (e.g. Google Office).

    But I'm sure they won't cede the future to others that easily.

  9. Re:Malware detection is Bogus. on How To Guarantee Malware Detection · · Score: 1

    I like this idea. Just this one extra step would put the onus of action on the users enough that they
    would not only pause to think, but actively associate any malware infection with their direct actions (possibly).

    Rename downloaded EXE's to .web and put up a dialog with an accept button that say 'I know the Risks' when
    they try to rename it/make it executable.

    Could make a difference ...

  10. Survey on The Coming Botnet Stock Exchange · · Score: 1

    Can somebody do a survey of all of these infected machines and check what OS
    version they're running?

    If there's a growing number of Vista and Win 7 machines then someone should
    get back to MS and let them know whatever they're doing ain't working.

    With all of these security initiatives I'd have thought botnets would have been a shrinking
    problem - not something that was a growth industry as this article seems to indicate.

  11. Re:Apache and a threading framework on Apple Open Sources Grand Central Dispatch · · Score: 1

    >IOW, with GCD you do not need to configure every application how much threads it should start.

    You seem pretty hung up on this issue, but in reality most apps can configure themselves without the need for users ever dinking with the settings. A good algorithm that I've used is create threads in the pool 2 * the number of cores available and have the app expand dynamically to 4 * the number of available cores when really busy. When idle, the thread pool then shrinks to the original computed low-water mark again.

    This works fairly well and means users never have to configure anything, and it will scale up to however many cores your system has available without the user ever having to worry about it.

    But I take your point that an OS managed thread pool will manage OS resources much better, instead we have a situation now where multiple apps all have their own pools and most likely there are loads of threads per process doing absolutely no useful work.

    Also interesting to see in GCD is the two different types of queues, serial and parallel, with the serial queues potentially greatly reducing the number of locks an app might have to manage.