the power of 0ne

# November 26, 2004

For comment: BitTorrent RSS Module.

"A RSS module that adds an element at the <item> level that links to a BitTorrent version of the item's enclosure." More...

via [ipodder News]

Dealing with information overload. via [Scobleizer: Microsoft Geek Blogger]

Tantek gives aggregator developers some ideas.

Tantek, who works at Technorati, took notes of my Information Overload session and is telling aggregator developers some ways to make it better for users like me.

via [Scobleizer: Microsoft Geek Blogger

Blog Torrent is "software that makes it much easier to share and download files using the bittorrent protocol." via [Scripting News]

Thanksgiving and Spam. I want to wish everyone a happy and healthy Thanksgiving. For everyone that doesn't celebrate Thanksgiving as in the rest of the world, have a great Thursday.

The UserLand team continues to work on getting rid of spam in comments. Testing this week. More on that later. via [Scott Young's Radio Weblog]

Extensible Software. Extensible software is starting to be more and more common. Development tools like Eclipse are extensible through plugins, my blogging tool Movable Type supports plugins, there are third party add-ons for MSN Messenger and Outlook. There are also extensions for my favourite browser, Mozilla Firefox. via [Ryan Lowe's Blog]

A look inside how Microsoft approaches Testing. [Dana Epp's ramblings at the Sanctuary]

I came accross a very interesting bug in Usertalk the other day, take a look at this piece of code:

    local (adrTable = @someTable);
    for adrItem in adrTable {
        if adrItem^.flFlag {
            delete (adrItem);
        }
    }
    

This script looks quite simple, it's a loop that checks for a flag and then deletes the table if it's true, so where's the bug? Post your response as a comment or via trackback...