My linklog now comes from del.icio.us
I switched over from Bloglines to del.icio.us to store the links that appear on the linklog. The linklog only contains links to existing pages, so there's no necessity to maintain a complete weblog with articles as I did on Bloglines.
The purpose of the linklog is to make a list of links, and using del.icio.us is ideal for this. With it I also get the benefit of the tagging system, and my links and tags become part of the whole del.icio.us community. You can find me on del.icio.us at http://del.icio.us/kwebble.
The changes to the script to show the links from del.icio.us are small:
require_once('rss_fetch.inc');
$rss = fetch_rss('http://del.icio.us/rss/kwebble');
echo "<ul>n";
foreach ($rss->items as $item){
echo '<li><a href="' . $item[link] . '">' . $item[title] . "</a></li>n";
}
echo "</ul>n";