So yeah, nofollow doesn’t work like it used to. Your only options if you care about PR leaks are to either remove the links or to just ignore it. I’ll show you how you can unlink all external links on your WP blog using a regex and John Godley’s Search Unleashed plugin.

First, you want to prevent new urls from being posted. You’ll need to do a couple of theme edits.
Remove Comment Links in WordPress:

Edit Theme > comments.php ; Remove the url form:

            <div class="form-label"><label for="url">< ?php _e('Website', 'sandbox') ?></label></div>
            <div class="form-input"><input id="url" name="url" type="text" value="<?php echo $comment_author_url ?/>" maxlength="50" tabindex="5" /></div>

Use search regex plugin to remove the link:

http://wordpress.org/extend/plugins/search-regex/

To remove all commentluv links from comments:

(.*last blog post.*)

Remove all http links:

(http.*)

Remove only the link:

(<a href.*">)
(</a>)

Unlink “a class” links:

(<a class.*">(.*?)</a>)

replace with $1

Unlink “a href” links with their url target as quoted plaintext (without killing image links):

(<a \s+(?:(?:\w+\s*=\s*)(?:\w+|"[^"]*"|'[^']*'))*?\s*href\s*=\s*(?<url>\w+|"[^"]*"|'[^']*')(?:(?:\s+\w+\s*=\s*)(?:\w+|"[^"]*"|'[^']*'))*?>[^< ]+</a>)
</a>

replace with $1

Unlink everything including images:

(<a [\s]+[^>]*?href[\s]?=[\s\"']*(.*?)[\"']*.*?>([^< ]+|.*?)?<\/a>)
</a>

replace with $2

Just when I was beginning to believe that Chromium’s source was somehow (purposely?) crippled to prevent its compilation on Linux, the Chromium dev blog has announced developer only binaries for Debian/Ubuntu compatible x86 and x64 systems. The only problem? Read this quote from the post:

In order to get more feedback from developers, we have early developer channel versions of Google Chrome for Mac OS X [wtf is Mac?] and Linux, but whatever you do, please DON’T DOWNLOAD THEM! Unless of course you are a developer or take great pleasure in incomplete, unpredictable, and potentially crashing software.

So yeah… don’t download it.

Anyway, here’s some decidedly unscientific benchmarks for performance comparison. I ran Peacekeeper on Firefox 3.0.10 x86_64 on my Mint 6 install (what’s the holdup with 7 guys?), Firefox 3.0.10 on Vista x64, and IE8 64bit on Vista 64.

Looks pretty good to me, though I quickly uninstalled it afterward. I just don’t get why ALL the privacy features were disabled on the Linux build…

© 2010 nukeitdotorg Suffusion WordPress theme by Sayontan Sinha