<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Online Information 2009 &#8211; A Twitter Timeline</title>
	<atom:link href="http://www.menarik.co.uk/2009/12/online-information-2009-a-twitter-timeline/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.menarik.co.uk/2009/12/online-information-2009-a-twitter-timeline/</link>
	<description>my kind of interesting</description>
	<lastBuildDate>Tue, 09 Mar 2010 12:59:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paul Matthews</title>
		<link>http://www.menarik.co.uk/2009/12/online-information-2009-a-twitter-timeline/comment-page-1/#comment-573</link>
		<dc:creator>Paul Matthews</dc:creator>
		<pubDate>Thu, 10 Dec 2009 20:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.menarik.co.uk/?p=269#comment-573</guid>
		<description>Thanks! Good idea on the RTs. To make the XML I used this python script on the TSV downloaded from Twapper Keeper:

&lt;code&gt;
# Script to convert a twapper TSV to an xml timeline file
import csv
import xml.dom.minidom as dom
twapFile = &quot;../online09.csv&quot;
tlFile = &quot;../online09.xml&quot;
twapReader = csv.reader(open(twapFile), delimiter=&#039;\t&#039;)
tlTree = dom.getDOMImplementation().createDocument(None, &quot;data&quot;, None)
tlRoot = tlTree.documentElement
for row in twapReader:
 tlEvent = tlTree.createElement(&quot;event&quot;) 
 tlEventText = tlTree.createTextNode(row[1])
 tlEvent.setAttribute(&quot;start&quot;,  row[9]) 
 tlEvent.setAttribute(&quot;image&quot;,  row[8]) 
 tlEvent.setAttribute(&quot;icon&quot;,  &quot;http://www.menarik.co.uk/tweetline/twitter_icon.png&quot;) 
 tlEvent.setAttribute(&quot;link&quot;,  &quot;http://www.twitter.com/&quot; + row[3]) 
 tlEvent.setAttribute(&quot;isDuration&quot;, &quot;false&quot;)
 tlEvent.setAttribute(&quot;title&quot;, row[3])
 tlEvent.appendChild(tlEventText)
 tlRoot.appendChild(tlEvent) 
tlOut = open(tlFile, &quot;w&quot;)
tlTree.writexml(tlOut, &quot;\t&quot;, &quot;\t&quot;, &quot;\n&quot;, &quot;UTF-8&quot;)
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks! Good idea on the RTs. To make the XML I used this python script on the TSV downloaded from Twapper Keeper:</p>
<p><code><br />
# Script to convert a twapper TSV to an xml timeline file<br />
import csv<br />
import xml.dom.minidom as dom<br />
twapFile = "../online09.csv"<br />
tlFile = "../online09.xml"<br />
twapReader = csv.reader(open(twapFile), delimiter='\t')<br />
tlTree = dom.getDOMImplementation().createDocument(None, "data", None)<br />
tlRoot = tlTree.documentElement<br />
for row in twapReader:<br />
 tlEvent = tlTree.createElement("event")<br />
 tlEventText = tlTree.createTextNode(row[1])<br />
 tlEvent.setAttribute("start",  row[9])<br />
 tlEvent.setAttribute("image",  row[8])<br />
 tlEvent.setAttribute("icon",  "http://www.menarik.co.uk/tweetline/twitter_icon.png")<br />
 tlEvent.setAttribute("link",  "http://www.twitter.com/" + row[3])<br />
 tlEvent.setAttribute("isDuration", "false")<br />
 tlEvent.setAttribute("title", row[3])<br />
 tlEvent.appendChild(tlEventText)<br />
 tlRoot.appendChild(tlEvent)<br />
tlOut = open(tlFile, "w")<br />
tlTree.writexml(tlOut, "\t", "\t", "\n", "UTF-8")<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marydee</title>
		<link>http://www.menarik.co.uk/2009/12/online-information-2009-a-twitter-timeline/comment-page-1/#comment-572</link>
		<dc:creator>Marydee</dc:creator>
		<pubDate>Wed, 09 Dec 2009 20:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.menarik.co.uk/?p=269#comment-572</guid>
		<description>Some of the tweets from marydeeo in TwapperKeeper will link you to the infotodayblog.com posts about #online09.</description>
		<content:encoded><![CDATA[<p>Some of the tweets from marydeeo in TwapperKeeper will link you to the infotodayblog.com posts about #online09.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Wallace</title>
		<link>http://www.menarik.co.uk/2009/12/online-information-2009-a-twitter-timeline/comment-page-1/#comment-571</link>
		<dc:creator>Chris Wallace</dc:creator>
		<pubDate>Wed, 09 Dec 2009 20:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.menarik.co.uk/?p=269#comment-571</guid>
		<description>Oh better still, count the RTs and annotate the original with the count</description>
		<content:encoded><![CDATA[<p>Oh better still, count the RTs and annotate the original with the count</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Wallace</title>
		<link>http://www.menarik.co.uk/2009/12/online-information-2009-a-twitter-timeline/comment-page-1/#comment-570</link>
		<dc:creator>Chris Wallace</dc:creator>
		<pubDate>Wed, 09 Dec 2009 20:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.menarik.co.uk/?p=269#comment-570</guid>
		<description>Very nice Paul!  I wonder if you could optionally filter out the RTs What did you use to convert from the tweet stream to Timeline events?</description>
		<content:encoded><![CDATA[<p>Very nice Paul!  I wonder if you could optionally filter out the RTs What did you use to convert from the tweet stream to Timeline events?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
