Syndication

July 30, 2008

'Get Twitter RSS with authentication' script for Mac OS RSS screen saver

<?
$url = "http://twitter.com/statuses/friends_timeline.rss";
$ch = curl_init();    
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_USERPWD, "your@email.here:password"); 
$result = curl_exec($ch); 
curl_close($ch); 
echo $result; 
?>

Posted by pj at 03:31 PM | Comments (0)

November 07, 2006

SVN RSS and Atom feeds


svn2feed.py

Posted by pj at 03:46 PM

August 03, 2006

Very cunning Python based Universal Feed Parser

Universal Feed Parser

Posted by pj at 12:51 PM | Comments (0)

February 23, 2006

ROME - a Java feed parser

XML.com: ROME in a Day: Parse and Publish Feeds in Java

Posted by pj at 10:10 AM

November 24, 2004

Photo metadata

I've finished the cataloguing tool for my photo album and formalised how the RDF is represented for the album, each collection, associated events and event attendees and then person depictions in the images themselves.

This is done within the framework of the CC License and Work model to assign a CC license to everything aswell.

I've also set up an RSS feed of the latest catalogued pictures and then hacked Feed2JS so that it pics up the image thumbnails if they are in the feed:

Paul Hollands - Photo Album - RSS

Posted by pj at 10:14 AM

November 02, 2004

Presentation about use of blogs and RSS for RLO peer review

This was posted by Phil Barker on the LTSN-Technical list and really set me on a different tack in my thinking about RLO evaluation, hence my current rabid bloggery:

<http://www.mcli.dist.maricopa.edu/show/nmc1003/>

Posted by pj at 03:23 PM