<?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>mark.bockenstedt.net &#187; Microblogging</title>
	<atom:link href="http://mark.bockenstedt.net/tag/microblogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://mark.bockenstedt.net</link>
	<description>Tech Tips, How-To's, and Miscellaneous Geekery</description>
	<lastBuildDate>Tue, 19 May 2009 03:05:39 +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>How To Install Laconica</title>
		<link>http://mark.bockenstedt.net/2008/09/15/how-to-install-laconica/</link>
		<comments>http://mark.bockenstedt.net/2008/09/15/how-to-install-laconica/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 15:30:09 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Laconica]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microblogging]]></category>

		<guid isPermaLink="false">http://mark.bockenstedt.net/?p=398</guid>
		<description><![CDATA[If you&#8217;re interested in setting up a Laconica 0.5.0 instance of your own, you can follow the directions I&#8217;ve outlined below. I got the general outline from decafbad.com but had to do some modifications of my own to get it running. This how-to requires you to be fairly knowledgeable with web systems and databases. If [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re interested in setting up a <a href="http://laconi.ca/">Laconica</a> 0.5.0 instance of your own, you can follow the directions I&#8217;ve outlined below. I got the general outline from <a href="http://decafbad.com/blog/2008/07/03/getting-laconica-up-and-running">decafbad.com</a> but had to do some modifications of my own to get it running. This how-to requires you to be fairly knowledgeable with web systems and databases. If you don&#8217;t know what you&#8217;re doing, don&#8217;t bother. This setup is tricky to say the least. To preserve my own sanity, <strong>I will not help you get your system going</strong>.</p>
<p><strong>Edit:</strong> That may be a little harsh. I can offer some limited advice, but I can&#8217;t hold your hand through the whole process.</p>
<h3>Get the Code</h3>
<p>You can grab the <a href="http://laconi.ca/laconica-0.5.0.tar.gz">latest stable version</a> from laconi.ca. Extract it to the location you want the server to be.</p>
<h3>Install Dependent Libraries</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libapache2-mod-php5 php5-cgi php5-cli php-pear php5-gd php5-mysql</pre></div></div>

<p>You&#8217;ll also want to make sure you have Apache2, PHP, and MySQL installed, otherwise nothing will work. Once you have those, you&#8217;ll need to grab some PEAR libraries:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> pear channel-update pear.php.net
<span style="color: #c20cb9; font-weight: bold;">sudo</span> pear <span style="color: #c20cb9; font-weight: bold;">install</span> channel:<span style="color: #000000; font-weight: bold;">//</span>pear.php.net<span style="color: #000000; font-weight: bold;">/</span>Validate-0.8.1
<span style="color: #c20cb9; font-weight: bold;">sudo</span> pear <span style="color: #c20cb9; font-weight: bold;">install</span> DB_DataObject
<span style="color: #c20cb9; font-weight: bold;">sudo</span> pear <span style="color: #c20cb9; font-weight: bold;">install</span> Mail
<span style="color: #c20cb9; font-weight: bold;">sudo</span> pear <span style="color: #c20cb9; font-weight: bold;">install</span> Net_SMTP</pre></div></div>

<p>Then you&#8217;ll need to grab a whole bunch of external libraries. I&#8217;ve taken the liberty of creating a tarball containing those libraries, which you can grab <a href="http://mark.bockenstedt.net/wp-content/uploads/extlibs.tar.gz">here</a>. Extract this file in the root of your Laconica instance.</p>
<h3>Database Setup</h3>
<p>You&#8217;ll need to create a database named <em>laconica</em> to use with this project. Then, you&#8217;re also going to need a user that has all access on that table &#8211; I used a user named <em>laconica</em> also. Once you&#8217;ve got those setup, run the laconica.sql file that&#8217;s in the db folder against the <em>laconica</em> database.</p>
<h3>Configuration</h3>
<p>You&#8217;ll need to add the following two lines in config.php right below the first line of code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'INSTALLDIR'</span><span style="color: #339933;">,</span> <span style="color: #990000;">dirname</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">__FILE__</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">set_include_path</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">get_include_path</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> PATH_SEPARATOR <span style="color: #339933;">.</span> INSTALLDIR <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/extlib'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>There are a few other lines you&#8217;ll want to change in the config.php file also:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Micronica'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'server'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'laconica.bockenstedt.net'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'path'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;"># in my case blank because it's its own subdomain
</span><span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'theme'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'stoica'</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;"># not the them we're using
</span><span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'mark@bockenstedt.net'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'broughtby'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'microblink.com'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'broughtbyurl'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://microblink.com/'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'db'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'database'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'mysql://laconica:PASSWORD@localhost/laconica'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'db'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ini_laconica'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'db'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'schema_location'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/stoica.ini'</span><span style="color: #339933;">;</span></pre></div></div>

<p>The next step is to change the permissions on the avatar directory:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> www-data avatar
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #660033;">-R</span> ug+rw avatar<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>At this point, you should have a functioning laconica instance!</strong></p>
<p>Forge on for the rest of the setup&#8230;</p>
<h3>Configure .htaccess</h3>
<p>If you don&#8217;t care about ugly URLs, this step is optional. There&#8217;s already an htaccess sample file included; I simply had to rename it to .htaccess and everything was fine. I can&#8217;t guarantee yours will be that simple, but it&#8217;s worth a shot. I&#8217;m really not that good with .htaccess, so you&#8217;re kind of on your own here.</p>
<p>If you do try to rewrite the URLs, be sure to tell config.php that you&#8217;re doing that with:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'site'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'fancy'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Tweak</h3>
<p>That should be a pretty inclusive set of directions for getting things going. As stated earlier, tweaks and modifications are up to you. You can check out my installation at <a href="http://laconica.bockenstedt.net/">laconica.bockenstedt.net</a> to see how it turned out for me. As a reminder, the theme you&#8217;ll see there is NOT the Default or Stoica themes that come with the installer, but is a custom theme. Custom themes are actually pretty simple to make provided you know some CSS.</p>
<p>SMS, IM, and posting by e-mail still don&#8217;t work for me as I haven&#8217;t figured out how to get those systems up. Otherwise, it seems like everything else works (including OpenID).</p>
<p>Again, thanks to <a href="http://twitter.com/lmorchard">@lmorchard</a> for the original directions. Be sure to check out his site <a href="http://decafbad.com/">decafbad.com</a>.</p>
<h3  class="related_post_title"><h2>Related Posts</h2></h3><ul class="related_post"><li><a href="http://mark.bockenstedt.net/2008/10/30/partition-a-hard-drive-using-a-gparted-live-cd/" title="Partition a Hard Drive Using a gParted Live CD">Partition a Hard Drive Using a gParted Live CD</a></li><li><a href="http://mark.bockenstedt.net/2008/09/22/laconica-xmpp-sms-oh-my/" title="Laconica, XMPP, SMS, Oh My!">Laconica, XMPP, SMS, Oh My!</a></li><li><a href="http://mark.bockenstedt.net/2008/09/17/under-review-gtwitter/" title="Under Review: gTwitter">Under Review: gTwitter</a></li><li><a href="http://mark.bockenstedt.net/2008/09/02/under-review-twitux/" title="Under Review: Twitux">Under Review: Twitux</a></li><li><a href="http://mark.bockenstedt.net/2008/09/02/pingfm-goes-to-open-beta/" title="Ping.fm Goes to Open Beta">Ping.fm Goes to Open Beta</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://mark.bockenstedt.net/2008/09/15/how-to-install-laconica/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Microblog Week Follow Up</title>
		<link>http://mark.bockenstedt.net/2008/08/19/microblog-week-follow-up/</link>
		<comments>http://mark.bockenstedt.net/2008/08/19/microblog-week-follow-up/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 15:13:27 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Identi.ca]]></category>
		<category><![CDATA[Microblogging]]></category>
		<category><![CDATA[Plurk]]></category>
		<category><![CDATA[Pownce]]></category>
		<category><![CDATA[Rejaw]]></category>

		<guid isPermaLink="false">http://mark.bockenstedt.net/?p=343</guid>
		<description><![CDATA[Last week I ran a story about Wayne Sutton and his journey on Microblog Week. He asked his friends on Plurk what they thought of the week, which was received with mixed reactions. Some users noticed that it seemed like Sutton was talking to himself quite a bit. One user says he gained a new [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I ran a story about <a href="http://twitter.com/waynesutton">Wayne Sutton</a> and his journey on <a href="http://mark.bockenstedt.net/2008/08/13/microblog-week/">Microblog Week</a>. He asked his friends on Plurk <a href="http://www.plurk.com/p/2m9ij">what they thought of the week</a>, which was received with mixed reactions. Some users noticed that it seemed like Sutton was talking to himself quite a bit. One user says he gained a new respect for <a href="http://pownce.com/">Pownce</a> and used <a href="http://identi.ca/">Identi.ca</a> &#8220;more than ever&#8221;. Another user on Twitter called the week &#8220;<a href="http://twitter.com/MarkMayhew/statuses/886709701">silly</a>&#8220;.</p>
<p>I&#8217;m still awaiting Sutton&#8217;s official reflection on the week, but I&#8217;ll forge ahead with my promised follower metrics. To recap follower numbers at the beginning of the experiment (as of August 12):</p>
<ul>
<li><a href="http://identi.ca/waynesutton">Identi.ca</a> &#8211; 240 subscribers</li>
<li><a href="http://pownce.com/waynesutton/">Pownce</a> &#8211; 41 fans</li>
<li><a href="http://rejaw.com/waynesutton">Rejaw</a> &#8211; 95 followers</li>
</ul>
<p>Checking those numbers again today yields the following numbers:</p>
<ul>
<li><a href="http://identi.ca/waynesutton">Identi.ca</a> &#8211; 258 subscribers (+18)</li>
<li><a href="http://pownce.com/waynesutton/">Pownce</a> &#8211; 17 fans (-24)</li>
<li><a href="http://rejaw.com/waynesutton">Rejaw</a> &#8211; 131 followers (+36)</li>
</ul>
<p>There was a definite gain in followers for both Rejaw and Identi.ca, but they were marginal gains. Over the last two months, Sutton has gained an average of <strong>27 followers per day</strong> on Twitter (<a href="http://twittercounter.com/?username=waynesutton">source</a>). This leads me to the impression that, in terms of followers, the week was unsuccessful.</p>
<p>The feature that was most dearly missed was mobile capability. Of the five networks that Sutton used last week, only Twitter has mature mobile features. From what I can tell, none of the other networks support SMS, and only Plurk and Pownce even have a mobile-friendly site.</p>
<p><img class="alignnone size-full wp-image-344" title="sms" src="http://mark.bockenstedt.net/wp-content/uploads/2008/08/sms.jpg" alt="" width="500" height="65" /></p>
<p>I have no doubt that Sutton&#8217;s goal wasn&#8217;t to gain followers, but to better educate himself on other networks and what they have to offer. It&#8217;s even got another user <a href="http://mark.bockenstedt.net/2008/08/13/microblog-week/#comment-92">anxious to do the same thing</a>. My initial reaction is to say that the experiment returned successful results. In my opinion, having a solid grasp on the competition&#8217;s offerings means the week was successful. I, like others, anxiously await Sutton&#8217;s official reaction.</p>
<h3  class="related_post_title"><h2>Related Posts</h2></h3><ul class="related_post"><li><a href="http://mark.bockenstedt.net/2008/08/13/microblog-week/" title="Microblog Week">Microblog Week</a></li><li><a href="http://mark.bockenstedt.net/2008/07/11/tentative-mu-feature-list/" title="Tentative mu Feature List">Tentative mu Feature List</a></li><li><a href="http://mark.bockenstedt.net/2008/09/15/how-to-install-laconica/" title="How To Install Laconica">How To Install Laconica</a></li><li><a href="http://mark.bockenstedt.net/2008/07/24/mu-update/" title="mu Update">mu Update</a></li><li><a href="http://mark.bockenstedt.net/2008/07/23/plurk-profile-customization/" title="Plurk Profile Customization">Plurk Profile Customization</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://mark.bockenstedt.net/2008/08/19/microblog-week-follow-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microblog Week</title>
		<link>http://mark.bockenstedt.net/2008/08/13/microblog-week/</link>
		<comments>http://mark.bockenstedt.net/2008/08/13/microblog-week/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 14:00:50 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Identi.ca]]></category>
		<category><![CDATA[Microblogging]]></category>
		<category><![CDATA[Plurk]]></category>
		<category><![CDATA[Pownce]]></category>
		<category><![CDATA[Rejaw]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://mark.bockenstedt.net/?p=332</guid>
		<description><![CDATA[For Wayne Sutton, this is microblog week. Microblog week is a chance to experience microblogging sites that may otherwise go unused. The idea was conceived by Sutton and almost halfway through its execution. I&#8217;m not sure how many other people are participating, but I know for sure that he&#8217;s being diligent about it. I like [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-333" style="border: 0; float:right" title="11446-big" src="http://mark.bockenstedt.net/wp-content/uploads/2008/08/11446-big.jpg" alt="" width="150" height="150" />For <a href="http://twitter.com/waynesutton">Wayne Sutton</a>, this is microblog week. Microblog week is a chance to experience microblogging sites that may otherwise go unused. The <a href="http://twitter.com/waynesutton/statuses/884092489">idea</a> was conceived by Sutton and almost halfway through its execution. I&#8217;m not sure how many other people are participating, but I know for sure that he&#8217;s being diligent about it.</p>
<p>I like what Sutton is trying to do here. He has just under 6,000 followers on Twitter alone, so there&#8217;s a good chance that his idea is pretty well-known. There are numerous microblog sites out there competing for a chunk of the user base that Twitter holds. These other sites (Plurk, Identi.ca, Pownce, and Rejaw) could conceivably see an influx of registrations and usage due to Sutton&#8217;s nomadic use this week. Sutton calls himself a &#8220;Social Media/Technology Evangelist&#8221; &#8212; this is his chance to practice what he preaches.</p>
<p>The message I&#8217;m getting from this experiment is that the best way to learn what other sites have to offer is to use them for a day. This will tell you what you like and dislike about the current site in comparison to other sites. There are many other sites just like Twitter that are just as good, but lack the community Twitter has. Part of Twitter&#8217;s problems have been caused by its success, however, so there&#8217;s no telling if other sites will experience the same issues.</p>
<p>To gauge the success of this project, I&#8217;ll track the number of followers Sutton has. As of August 12, 11:30 PM CT, Sutton had these followings:</p>
<ul>
<li><a href="http://identi.ca/waynesutton">Identi.ca</a> &#8211; 240 subscribers</li>
<li><a href="http://pownce.com/waynesutton/">Pownce</a> &#8211; 41 fans</li>
<li><a href="http://rejaw.com/waynesutton">Rejaw</a> &#8211; 95 followers</li>
</ul>
<p>On Monday, I&#8217;ll compare the numbers above to the then current numbers to see what kind of headway has been made in terms of followers. Since those who know about it will likely follow him as they participate, his follower numbers should be indicative of his success.</p>
<p>If you want to participate in the week-long project, there are no obligations or &#8220;gotchas&#8221; involved. Just jump on the social network of the day and use it as exclusively as possible. Wednesday&#8217;s network is <a href="http://identi.ca/">Identi.ca</a>, Thursday&#8217;s is <a href="http://pownce.com/">Pownce</a>, and Friday&#8217;s is <a href="http://rejaw.com/">Rejaw</a>. If you want to follow me on any of those, I can be found under the handle chewbocka.</p>
<h3  class="related_post_title"><h2>Related Posts</h2></h3><ul class="related_post"><li><a href="http://mark.bockenstedt.net/2008/08/19/microblog-week-follow-up/" title="Microblog Week Follow Up">Microblog Week Follow Up</a></li><li><a href="http://mark.bockenstedt.net/2008/07/11/tentative-mu-feature-list/" title="Tentative mu Feature List">Tentative mu Feature List</a></li><li><a href="http://mark.bockenstedt.net/2009/05/18/add-your-twitter-timeline-to-friendfeed-with-an-imaginary-friend/" title="Add Your Twitter Timeline to FriendFeed with an Imaginary Friend">Add Your Twitter Timeline to FriendFeed with an Imaginary Friend</a></li><li><a href="http://mark.bockenstedt.net/2008/11/20/inaugural-ames-tweetup-a-success/" title="Inaugural Ames Tweetup a Success">Inaugural Ames Tweetup a Success</a></li><li><a href="http://mark.bockenstedt.net/2008/11/17/tweetdeck-continually-improves-the-twitter-experience/" title="TweetDeck Continually Improves the Twitter Experience">TweetDeck Continually Improves the Twitter Experience</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://mark.bockenstedt.net/2008/08/13/microblog-week/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
