<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ansis World &#187; microblogger</title>
	<atom:link href="http://ansi.interblc.com/tag/microblogger/feed/" rel="self" type="application/rss+xml" />
	<link>http://ansi.interblc.com</link>
	<description>Family, Work, Life</description>
	<lastBuildDate>Mon, 08 Feb 2010 09:30:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Twitter analyse</title>
		<link>http://ansi.interblc.com/2009/01/27/twitter-analyse/</link>
		<comments>http://ansi.interblc.com/2009/01/27/twitter-analyse/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 21:01:28 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[microblogger]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=190</guid>
		<description><![CDATA[Moin I love these twitter mashups. More and more services are using the API and adding meta services.]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
I love these twitter mashups. More and more services are using the API and adding meta services.</p>
<div id="tweeteffect"></div>
<p><script type="text/javascript" src="http://tweeteffect.com/badge.php?user=ansi">
</script></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/27/twitter-analyse/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Howto extract all followers from twitter into list of RSS feeds</title>
		<link>http://ansi.interblc.com/2008/07/24/howto-extract-all-followers-from-twitter-into-list-of-rss-feeds/</link>
		<comments>http://ansi.interblc.com/2008/07/24/howto-extract-all-followers-from-twitter-into-list-of-rss-feeds/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 18:20:59 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gutenberg2.0]]></category>
		<category><![CDATA[microblogger]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=28</guid>
		<description><![CDATA[I had this idea to use build a real distributed microblogger system a while ago. Unfortunately I was a little bit to late and twitter lost so many links between users (follow and followers) this night. But better now then never. I will post here from time to time parts of the pig picture how [...]]]></description>
			<content:encoded><![CDATA[<p>I had this idea to use build a real distributed microblogger system a while ago. Unfortunately I was a little bit to late and <a href="http://www.twitter.com" target="_blank">twitter</a> lost so many links between users (follow and followers) this night. But better now then never. I will post here from time to time parts of the pig picture how to build such a system. This time how to extract the list of friends from your Twitter account and generate a list of RSS feeds out of it.</p>
<p>Twitter has  a cool <a href="http://groups.google.com/group/twitter-development-talk/web/api-documentation" target="_blank">API</a> wich we can use legally. The xml list of users you follow can be retrieved with</p>
<pre><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;">http://twitter.com/statuses/friends/<strong>USERNAME</strong>.xml?lite=true&amp;page=1..n (for me its ansi)</span></span></span></span></span></pre>
<p><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;">Having at the moment 112 user I follow (yesterday more then 160. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  ) page 1 and 2 are all my guys.</span></span></span></span></span></p>
<p>This small xsl stylesheet extracts  the userids.  (if anyone is  into xsl please help me here. Would  be great to  extract username, realname and user with comma  separated per line. Please add comments if you know the solution, I appreciate it!)</p>
<pre>&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
 &lt;xsl:strip-space elements="*"/&gt;

 &lt;xsl:template match="/users/user"&gt;
     &lt;xsl:for-each select="id"&gt;
      &lt;xsl:value-of select="." /&gt;
      &lt;xsl:text&gt;&amp;#10;&lt;/xsl:text&gt;
     &lt;/xsl:for-each&gt;
 &lt;/xsl:template&gt;</pre>
<p>Save this code snip to a file called extractIDs.xslt and call it with the processor:</p>
<pre>xsltproc extractIDs.xslt friendsPage1.xml  | sed 1d &gt;list_of_ids.txt</pre>
<pre>xsltproc extractIDs.xslt friendsPage2.xml  | sed 1d &gt;&gt;list_of_ids.txt</pre>
<p>So now next step howto get the rss feeds out of it. The API offers this call</p>
<p>http://twitter.com/statuses/user_timeline/<strong>USERID</strong>.atom</p>
<p>Short bashscript like</p>
<pre> for i in `cat list_of_ids.txt`</pre>
<pre> do</pre>
<pre>  echo "http://twitter.com/statuses/user_timeline/$i.atom" &gt;&gt;list_of_rrs_feeds.txt</pre>
<pre> done</pre>
<p>is doing the job. So we end up with a text file each line with one RSS feed. I totally agree its much easier at the moment to call the &#8220;user and friend&#8221; rss feed from twitter but the idea behind this is to get a list of each user so future systems can really be distributed among many microblogging systems.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/24/howto-extract-all-followers-from-twitter-into-list-of-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Howto set up your own twitter</title>
		<link>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/</link>
		<comments>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 20:51:06 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[idento.ca]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[laconica]]></category>
		<category><![CDATA[microblogger]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=13</guid>
		<description><![CDATA[So first serious blog entry. I try to install my own instance of identi.ca what is microblogging system. Its based on Laconica. Lets see how to install this system on Ubuntu Server Edition. l.m.orchard has compiled an outstanding description see DECAFBAD. Additionally a changed something so here are the description for the latest greatest version. [...]]]></description>
			<content:encoded><![CDATA[<p>So first serious blog entry. I try to install my own instance of <a href="http://identi.ca" target="_blank">identi.ca</a> what is microblogging system. Its based on <a href="http://laconi.ca" target="_blank">Laconica</a>. Lets see how to install this system on Ubuntu Server Edition. l.m.orchard<span class="author"> has compiled an outstanding description see </span><strong><a href="http://decafbad.com/blog/2008/07/03/getting-laconica-up-and-running" target="_blank">DECAFBAD.<br />
</a></strong></p>
<p>Additionally a changed something so here are the description for the latest greatest version. I do not repeat his description only point out the changes.</p>
<p>There is a new version of the xmpPHP library available at least a new release candidate.</p>
<p>http://xmpphp.googlecode.com/files/xmpphp-0.1beta-r50.tar.gz</p>
<p>Beside</p>
<pre><code> cp xmpphp/*.php ../extlib/</code></pre>
<p>also</p>
<p>cp -R xmpphp/XMPPHP ../extlib/</p>
<p>to copy the necessary libraries.<br />
In order to convince apache2 to accept the rewrite it is neccessary to activate the rewrite module with</p>
<p>a2enmod rewrite</p>
<p>/etc/init.d/apache2 force-reload</p>
<p>The XMPP Part is still not running but I try this tomorrow.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
