Slashdot Mirror


MSN's Slate Recommends Firefox over IE

brightertimes writes "That's right folks, Slate (Microsoft's on-line magazine) recently printed an article enitled "Are the Browser Wars Back? How Mozilla's Firefox trumps Internet Explorer.""

4 of 493 comments (clear)

  1. MS Keyboards by TexasDex · · Score: 0, Offtopic
    Although I've entirely switched over to Linux by now, I have to agree that although MS's software bites the big one, their peripherals are pretty good. Not the best perhaps, but good.

    Right now I'm using an MS wireless/optical mouse and an MS natural keyboard, and I am for the most part able to ignore the fact that they're both made by the same company that wants your soul.

    --
    The Cheese Stands Alone.
  2. Re:ActiveX by essreenim · · Score: 0, Offtopic

    Haha : )

  3. Satan, get me a popsicle -- make it strawberry! by tilleyrw · · Score: 0, Offtopic

    I am filling this space to post this title. See above.

    --
    This post encoded with ROT26. If you can read it, you've violated the DMCA. Handcuffs please, sergeant.
  4. Re:PHBs by Dwonis · · Score: 0, Offtopic
    So you're saying some information is worse than none? How ridiculous. I seen many examples of bugs and problems that could have been avoided by simply prefixing "p" in front of a variable name that's a pointer.

    I *am* saying that some information is worse than none, because having *no* information encourages a programmer to look up *all* the information. Having only some information does not have this effect. Having *some* information is worse than *all* of it, and you get *all* the information from the documentation/comments, which you should be checking anyway. The bugs you refer to might well have been avoided by prefixing "p" in front of the variable name as you say, but they might also have turned into more subtle bugs, if the programmer made *other* type-specific mistakes.

    As a programmer, if you don't know everything you need to know about a variable, you should be checking the documentation/comments. You should not be relying on variable prefixes to give you this information, since the information you get from variable prefixes is incomplete.

    I'm aware that Hungarian notation is helpful in certain cases, but not using Hungarian notation has the benefit of requiring the programmer to know the variables, or else look them up again. Thus, I contend that not using Hungarian notation reduces mistakes that would otherwise make it into the finished program, although it may increase frustration and development time somewhat.