Slashdot Mirror


User: Zarel

Zarel's activity in the archive.

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

Comments · 231

  1. Re:Bash on Update on Standards and CSS in IE7 · · Score: 2, Informative

    This question has been answered several times. As it seems, Opera renders it mostly correctly (significantly better than FireFox), and their reps say they're working on passing it completely. Safari passes it now, but the version that does isn't available yet. The same goes for Konqueror (I think).

  2. Re:MS Will Implement an "innovative" file system on Windows Interoperability in A Linux Distro · · Score: 1

    It actually stands for Windows Future Storage, not Windows File System, and is not a filesystem, but instead a 'plugin', of sorts, to NTFS.

  3. Re:In Two Minds on Opera to Stop Spoofing User Agent as IE · · Score: 1

    I think browsers use a different string (HTTP-Accept) to say what they support. User-Agent is just to say which browser it is.

  4. Re:Score calculation hidden... on Rate Your IM Popularity · · Score: 1
    They don't really say how they calculate the score, do they? "Your score is relative to other AIM users?" What the hell does that mean? Why isn't it just the number of third-degree connections, what's wrong with using that number?
    They do say how they calculate the score, and it does use the number of third-degree connections. Right on aimfight.com, if you click "What is AIMFight?", the second FAQ answer is:
    Your score is the sum of the current number of people online who have you listed as a buddy, out to three degrees.
  5. Re:Will some coder please answer this? on MS Urging Developers To Prep For IE 7 · · Score: 1
    Why can't there be some Firefox extension that puts a button somewhere so that if a web site seems to be fucked up, clicking the button sends an email to webmaster@siteyouarelookingat.com complaining about their lack of compliance to standard?
    FireFox 1.1 (Well, at least Deer Park Alpha 1) currently does something similar to this.
  6. Re:Stupid......IE Tricks on MS Urging Developers To Prep For IE 7 · · Score: 2, Insightful
    Well, in PHP, it's easy.

    <?
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') === false) {
    ?>
    <b>Warning:</b> You are using the Microsoft Internet Explorer browser.
    This browser is notorious for its inability to comply with W3C
    standards. In other words, IE sucks.<br /><br />
    So what should you do? We reccomend you install <a href="http://www.getfirefox.com/"
    target="_blank" >Mozilla FireFox</a> instead.
    <?
    }
    ?>


    Replace the stuff between '{ ?>' and '<? }' with whatever you like.