Slashdot Mirror


User: Wesley+Felter

Wesley+Felter's activity in the archive.

Stories
0
Comments
3,537
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,537

  1. Re:96 comments and not one....? on IBM's New Processors To Exceed 5Ghz · · Score: 1

    Yes, it runs Linux.

  2. Everybody wants to rule the (virtual) world on Virtual Reality Getting its Own Network? · · Score: 1

    I know, I'll set up a new Internet (with blackjack and hookers, natch) where I'm a monopoly so everyone has to pay me. Why should ICANN and IANA and telcos have all the fun?

    At least it will serve as a lesson to anyone clueless enough to get scammed by these people.

  3. Re:There's DRM and then there's DRM on Will Apple Follow Microsoft's Lead to Restrictive DRM? · · Score: 1

    I think I have heard this rumor for every new version of OS X. "10.2 was too easy to copy; Apple's going to have activation in 10.3." And yet it never comes true. Even the rumor sites don't believe it. This idea is probably made up by people who think they can run Apple's business better than Apple can.

  4. Re:Great job with the title keys on HD-DVD and Blu-Ray AACS DRM Cracked · · Score: 2

    The revocation system is itself problematic anyway. A person seeking to damage the system itself would try to crack the most popular player, even if it's more difficult than other players. The cost of a massive recall - plus the fines the manufacturer would pay for their player being the one cracked - would heavily discourage the use of the revocation system.

    I see no one here has read the AACS spec. Each individual player has a different key, not each model. When The Man revokes an individual player, millions of regular consumers are totally unaffected.

  5. There's DRM and then there's DRM on Will Apple Follow Microsoft's Lead to Restrictive DRM? · · Score: 4, Insightful

    I think this thread boils down to a single issue: Microsoft's "Genuine Advantage" program is threatening to remotely self-destruct people's computers. Apple isn't.

  6. Re:Franchise even needed? on The Battle Over AT&T's Fiber Rollout · · Score: 2, Informative

    AT&T and other phone providers don't seem to NEED a new "franchise agreement" from any local government because they pretty much already HAVE one and have had it ever since copper wires were laid in.

    We're talking about a video franchise agreement. Since AT&T was not previously selling video services, they don't have one.

  7. Re:I thought Verizon was IPTV on The Battle Over AT&T's Fiber Rollout · · Score: 1

    FIOS TV is old-fashioned RF over fiber.

  8. Re:ZFS + Timemachine on ZFS Shows Up in New Leopard Build · · Score: 1

    So for example 200 versions of a word doc with sounds and pictures that got revised over 6 months get stored in maybe 3x the space of the last revision.

    Applications usually rewrite the whole file when you save, which causes ZFS to allocate a complete new copy on disk. ZFS doesn't know that the new data happens to be the same as the old data.

    Emails with the same attachments get stored in just a few k rather than taking a meg each....

    Nope; if you write the same contents to two different files, ZFS stores two copies. What you're talking about is de-duplication, which ZFS does not do.

  9. Re:It's to support Time Machine on ZFS Shows Up in New Leopard Build · · Score: 1

    Here's a one-line implementation of "Time Machine", works on any UNIX filesystem: rsync -a --link-dest=/mnt/backup/yesterday /home /mnt/backup/today

    That scans your entire directory structure, which may take a while and pollute your cache (especially if you do it every hour). Time Machine uses callbacks from the kernel to know when files are modified (AFAIK).

  10. Re:ZFS lacks decent backup support on ZFS Shows Up in New Leopard Build · · Score: 1

    Or you could just run Retrospect like other Mac users.

  11. Re:Checksumming != no data corruption on ZFS Shows Up in New Leopard Build · · Score: 1

    If your data is on a ZFS RAIDZ volume (~ RAID 5), then if the checksum fails you can rebuild the data from the parity information.

    Since the checksum is over the whole stripe, if the checksum is wrong you don't necessarily know which sector within the stripe is corrrupted and needs to be recovered. However, silent disk corruption seems to be much rarer than outright disk failures.

  12. Re:Open source EVD codec? on China Readies Royalty-Free DVD Format · · Score: 1

    Theora != VP6.

  13. Re:ISP Bandwidth on P2P - From Internet Scourge to Savior · · Score: 2, Interesting

    The telcos/ISPs write the laws, so "common carrier" means whatever they want it to mean.

  14. Re:Hmmm....WMV9 on OS X? on VLC 0.8.6 Released · · Score: 1

    You don't need to know which patents you're infringing; you just need to know that they exist and if you pay MS you get a license for all of them. :-/

  15. Re:Hmmm....WMV9 on OS X? on VLC 0.8.6 Released · · Score: 5, Informative

    FFMPEG now contains an open-source WMV9 decoder.

  16. Re:A good reason to move to IPv6 on Map of the Internet · · Score: 1

    How many Internet-connected computers are in Africa? How many in Prudential?

  17. Re:IPv4 space on Map of the Internet · · Score: 1

    Those unused addresses are being consumed at an ever-increasng rate, and will be gone by 2009-2012.

  18. Re:GPL? on Java SE 6 Released · · Score: 1

    The source code is here: https://openjdk.dev.java.net/hotspot/

    The binary downloads are going to remain under that clickwrap; only the source code is GPL.

  19. Re:Why no HD-DVD shortage? on No Love For The Blu-Ray · · Score: 1

    Blu-ray uses a different, more expensive lens than HD-DVD, but you never hear about that.

    Also, if the demand for HD-DVD players is ~200K units and the demand for PS3s is ~2M units, then it's easy to imagine that one is facing a shortage and the other is not.

  20. Re:RSX unlocking and its strategic market effect on Sony Adds PS3 Support to Linux Kernel · · Score: 1

    The PS3/Linux market is extremely small; indie game developers would be much better off developing for OS X.

  21. Re:So why is Verisign interested? on The Case for OpenID · · Score: 1

    OpenID is based on URLs that are based on DNS that is owned by VeriSign.

  22. Re:What are real problems in identity? on The Case for OpenID · · Score: 1

    Yeah, SET worked great last time so let's do it again.

  23. Re:i never liked the IDEA of OpenID on The Case for OpenID · · Score: 1

    The idea is that the service provider (e.g. MySpace) does it for them.

  24. CalDAV to the rescue on Novell Dumps the Hula Project · · Score: 1

    iCal or Mozilla Lightning as the client, Leopard Server or OSAF Cosmo as the server.

  25. Re:Doesn't this imply open source compatibility? on AMD Fusion To Add To x86 ISA · · Score: 1

    Even if the ISA is documented, writing an optimizing shader compiler is not easy. But my impression is that there are still some 3D-specific, fixed-function parts in the GPU that aren't triggered by instructions and thus aren't being documented, so the driver problem remains.