I have discovered a very useful way of tracking the comments that I leave on other blogs or forums, using del.icio.us + LT Magpie.
If you want to try it, this is all you need to do:
- Register in del.icio.us
- Within del.icio.us create a tag called for example mycomments
- Each time you leave a comment on a post (blog, forum....) bookmark the post to del.icio.us using the tag mycomments
- Edit your template adding this code:
{if $rss->parse("http://del.icio.us/rss/yourusername/mycomments")}
{assign var=channel value=$rss->getChannel()}
<ul>
{foreach from=$rss->getItems() item=rssItem}
<li><a href="{$rssItem->getLink()}">{$rssItem->getTitle()}</a></li>
{/foreach}
</ul>
{else}
<p>There was an error parsing the feed!</p>
{/if}
Take in account that Magpie cache in LifeType is set with a 60 minutes life time.
You can see what you will get in my personal blog. It is the list on the right, called (in Catalan) "Llocs on he escrit".
