Slashdot Mirror


Wired Releases Annual Vaporware List

alacqua writes: "Wired has an article titled Vaporware 2001: Empty Promises which is a top-ten list of last year's vaporware. 'You've Got Smell!' made it, but the Justice Department did not. Says Wired, 'Speaking of Microsoft, some smart-aleck readers opined that the most vaporous thing in tech last year was the Justice Department's failure to deliver on its promise to punish Bill Gates for his company's monopolistic misdeeds -- but we thought that a bit of a stretch.'"

2 of 311 comments (clear)

  1. Photoshop for OS X was demoed today... by Cutriss · · Score: 5, Informative

    It's in the /. MacWorld coverage.

    But still, they're right. I think I can be correct (mostly) in saying that Apple wouldn't exist today if it weren't for Adobe, and without X-native Adobe apps, X will flounder. It's a *wonderful* OS, but Adobe has long been providing Apple with the killer apps it needs to stay alive, and OS X is no exception.

    --
    "Mod, mod, mod...and another troll bites the dust."
  2. Re:Slashdot moving to PNG from Gif by Dominic_Mazzoni · · Score: 5, Informative
    What are the differences between PNG and Gif?
    Both are entirely lossless compression. GIF supports up to 256 colors, with one optional transparent color. PNG supports 24-bit color plus 8-bit transparency. Only PNG supports some color calibration/adjusting. Only GIF supports animation.

    Which one is better at compression?
    GIF is good enough, especially for line art and things that don't use more than 256 colors. PNG is almost always better than GIF, sometimes compressing images to 1/2 the size.

    Are the encoders copywrited?
    Of course, nearly everything's copyrighted (including a lot of GPL and other "free" code). The LZW algorithm, which is used to encode GIF images, is patented, and the patent owner (Unisys) tries to get people to pay if they sell software with a GIF encoder in it. PNG is patent-free and royalty-free.

    Which one is supported more?
    Mozilla, Konqueror, Opera, Netscape 4.0+, and IE 5.0+ fully support PNG. That's 99% of normal web surfers. Unfortunately there were a few versions of IE (around 3.0 - 4.0) that actually crashed if a web page had any PNG's on them.

    That's very unfortunate because it means that 0.1% of your website viewers will get a crash and write you hate mail. That's why very few sites use PNGs.

    When I want to include a PNG of something on a webpage, I usually make a high-quality JPEG thumbnail which links to a PNG. That way people know it's the image that crashes their browser, not my webpage.

    There's a great free, portable, easy-to-use library for encoding and decoding PNG images, so if you want to include support for some image format in a program you're writing, PNG is a great choice.