w<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Fuzzier Logic &#187; internet</title>
	<atom:link href="http://blog.fuzzierlogic.com/archives/category/internet/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.fuzzierlogic.com</link>
	<description>Logic. Just a bit woolier.</description>
	<lastBuildDate>Tue, 22 Nov 2011 09:21:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Making an RSS feed from Google Reader shared items</title>
		<link>http://blog.fuzzierlogic.com/archives/18184</link>
		<comments>http://blog.fuzzierlogic.com/archives/18184#comments</comments>
		<pubDate>Mon, 21 Nov 2011 22:35:33 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[google-reader]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=18184</guid>
		<description><![CDATA[<p>A month ago there would have been no reason to write this post, because Google Reader made it&#8217;s own RSS feed of the posts you wanted to share. See, Google wants to drive people to use Google+, and they seem to be doing this by crippling their other services that have even a smidgen of [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="18184">
<p>A month ago there would have been no reason to write this post, because Google Reader made it&#8217;s own RSS feed of the posts you wanted to share. See, Google wants to drive people to use Google+, and they seem to be doing this by crippling their other services that have even a smidgen of social usefulness. The thing is, I liked the social bits of Google Reader. Sure, they were a bit of an afterthought, and mildly dysfunctional, but I got a lot of value from reading what other people shared, and I liked that when I shared something I was creating a kind of archive of stuff I liked on Reader, with an RSS feed of its very own.</p>
<p>The great thing about RSS is that it can be consumed by arbitrary 3rd party applications. The likes of Google, Facebook and Twitter don&#8217;t like this, because they want control over the 3rd parties that can access their stream. So they are quite prepared to kill off RSS services in their applications, because it does not serve their mission. You can no longer get an RSS feed of your Twitter stream (as far as I know), there is no RSS built into Google+ (which I have yet to have the time to fully grok).</p>
<p>My needs are small, I want an RSS feed of the stuff I want to share from Google Reader, so that other people can follow the things I share in Reader (if they want), and I can pipe that information elsewhere (I use <a href="http://dlvr.it/" title="dlvr.it">dlvr.it</a> to post selected RSS feeds into Twitter). Google doesn&#8217;t want to provide that anymore, so I&#8217;ll hack something together.</p>
<p>The ingredients:</p>
<ol>
<li><a href="http://www.webreference.com/authoring/languages/xml/rss/custom_feeds/index.html" title="Make an RSS feed from a MySQL database">These simple instructions</a> for how to render an RSS feed from a MySQL backend.</li>
<li>The instructions for <a href="http://www.mattcutts.com/blog/google-reader-adds-send-to-feature/" title="Google Reader Send To">how to create your own &#8220;Send to:&#8221;</a> item in Google Reader</li>
<li>My rudimentary PHP hackery skills</li>
</ol>
<p>The code:<br />
All source is available on <a href="https://bitbucket.org/sjcockell/readershare/" title="ReaderShare on BitBucket">BitBucket</a>.</p>
<p>First, we need a database connection. The database is set up exactly as described in (1), above.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
DEFINE('DB_USER', 'db_user');
DEFINE('DB_PASSWORD', 'db_password');
DEFINE('DB_HOST', 'localhost');
DEFINE('DB_NAME', 'db_name');
// Make the connnection and then select the database.
$dbc = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD) OR die(mysql_error());
mysql_select_db(DB_NAME) OR die(mysql_error());
?&gt;
</pre>
<p>Now, when the page is visited, we want to render what is in the database as an RSS feed (again, this is a simple adaptation of the code in (1)):</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
  class RSS {
        public function RSS() {
                require_once ('mysql_connect.php');
        }
        public function GetFeed() {
                return $this-&gt;getDetails() . $this-&gt;getItems();
        }
        private function dbConnect() {
                DEFINE('LINK', mysql_connect(DB_HOST, DB_USER, DB_PASSWORD));
        }
        private function getDetails() {
                //header of the RSS feed
                $detailsTable = &quot;webref_rss_details&quot;;
                $this-&gt;dbConnect($detailsTable);
                $query = &quot;SELECT * FROM &quot;. $detailsTable;
                $result = mysql_db_query (DB_NAME, $query, LINK);
                while($row = mysql_fetch_array($result)) {
                        //fairly minimal description of the feed
                        $details = '&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot; ?&gt;
                                &lt;rss version=&quot;2.0&quot;&gt;
                                        &lt;channel&gt;
                                                &lt;title&gt;'. $row['title'] .'&lt;/title&gt;
                                                &lt;link&gt;'. $row['link'] .'&lt;/link&gt;
                                                &lt;description&gt;'. $row['description'] .'&lt;/description&gt;
                                                &lt;language&gt;'. $row['language'] .'&lt;/language&gt;
                                                ';
                }
                return $details;
        }

        private function getItems() {
                //return all the items foe the RSS feed
                $itemsTable = &quot;webref_rss_items&quot;;
                $this-&gt;dbConnect($itemsTable);
                $query = &quot;SELECT * FROM &quot;. $itemsTable;
                $result = mysql_db_query(DB_NAME, $query, LINK);
                $items = '';
                while($row = mysql_fetch_array($result)) {
                        $items .= '&lt;item&gt;
                                &lt;title&gt;'. $row[&quot;title&quot;] .'&lt;/title&gt;
                                &lt;link&gt;'. $row[&quot;link&quot;] .'&lt;/link&gt;
                                &lt;description&gt;&lt;![CDATA['. $row[&quot;description&quot;] .']]&gt;&lt;/description&gt;
                        &lt;/item&gt;';
                }
                //close the feed
                $items .= '&lt;/channel&gt;
                                &lt;/rss&gt;';
                return $items;
        }
}
?&gt;
</pre>
<p>Finally, we need a method for adding new stuff for the feed. This code takes the GET variables passed to it by Google Reader, and stores them in the DB:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
if ($_GET['url']) {
        //receive google reader 'send to' items, and store in mysqldb
        $url = $_GET['url'];
        $source = $_GET['source'];
        $title = $_GET['title'];
        $simple_check = $_GET['check'];
        //stops anyone adding new items to your feed unless they have the key
        if ($simple_check == 'uniquepasscodehere') {
                //statement adds new item to RSS database
                $insert_statement = &quot;INSERT INTO webref_rss_items(title, description, link) VALUES('$title', '$source', '$url')&quot;;
                require_once('mysql_connect.php');
                $result = mysql_query($insert_statement, $dbc);
                if ($result) {
                        echo &quot;&lt;p&gt;Success!&quot;;
                        //would be nice to close the window automatically after a couple of seconds
                }
                else {
                        die('&lt;p&gt;Invalid query: ' . mysql_error());
                }
        }
}
else {
        //render everything in the db as RSS
        header(&quot;Content-Type: application/xml; charset=ISO-8859-1&quot;);
        include(&quot;RSS.class.php&quot;);
        $rss = new RSS();
        echo $rss-&gt;GetFeed();
}
?&gt;
</pre>
<p>Now, I can set up the Send To: item in Google Reader:</p>
<p><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-21-at-22.22.49.png"><img src="http://blog.fuzzierlogic.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-21-at-22.22.49.png" alt="" title="Add GReader &quot;Send To&quot;" width="527" height="169" class="aligncenter size-full wp-image-18189" /></a></p>
<p>Finally, click &#8216;Send To: -> Readershare&#8217; in the footer of an item in Google Reader, and it is rendered into my RSS feed, which can then be consumed by other applications, including Google Reader itself (so if you want to subscribe to my Google Reader shared items feed, you can find it at <a href="http://fuzzierlogic.com/readershare" title="ReaderShare">http://fuzzierlogic.com/readershare</a>). Oh, and I can pipe my Google Reader shares back into Twitter again.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 18184 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/18184/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-21-at-22.22.49-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-21-at-22.22.49.png" medium="image">
			<media:title type="html">Add GReader &#8220;Send To&#8221;</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-21-at-22.22.49-150x150.png" />
		</media:content>
	</item>
		<item>
		<title>Stack Exchange and the future of BioStar</title>
		<link>http://blog.fuzzierlogic.com/archives/509</link>
		<comments>http://blog.fuzzierlogic.com/archives/509#comments</comments>
		<pubDate>Mon, 21 Mar 2011 22:00:03 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[BioStar]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[biostar]]></category>
		<category><![CDATA[stack-exchange]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=509</guid>
		<description><![CDATA[<p>Over the weekend I saw <a title="='@spolsky" href="http://twitter.com/spolsky/status/49233944582946816" target="_blank">this tweet</a> from <a title="Stack Overflow" href="http://stackoverflow.com/" target="_blank">Stack Overflow</a>/<a title="Stack Exchange" href="http://stackexchange.com/" target="_blank">Exchange</a> founder <a title="Joel on Software" href="http://www.joelonsoftware.com/" target="_blank">Joel Spolsky</a>. The content of the link he posted has served to crystallise some of my thinking of the last couple of weeks with relation to the Bioinformatics [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="509">
<p>Over the weekend I saw <a title="='@spolsky" href="http://twitter.com/spolsky/status/49233944582946816" target="_blank">this tweet</a> from <a title="Stack Overflow" href="http://stackoverflow.com/" target="_blank">Stack Overflow</a>/<a title="Stack Exchange" href="http://stackexchange.com/" target="_blank">Exchange</a> founder <a title="Joel on Software" href="http://www.joelonsoftware.com/" target="_blank">Joel Spolsky</a>. The content of the link he posted has served to crystallise some of my thinking of the last couple of weeks with relation to the Bioinformatics question and answer site <a title="BioStar" href="http://biostar.stackexchange.com/" target="_blank">BioStar</a>.</p>
<p>The link Spolsky posted in the tweet was to a <a title="Atheism Stack Exchange proposal" href="http://area51.stackexchange.com/proposals/2732" target="_blank">failed Stack Exchange proposal</a>, and I found the page interesting not for the proposal, or the fact that it failed, but the clearly enumerated reasons for <em>why</em> it failed. Here&#8217;s a screenshot:</p>
<p style="text-align: center;"><a href='http://blog.fuzzierlogic.com/wp-content/uploads/2011/03/atheism_shutdown.png'><img class="aligncenter size-medium wp-image-511" title="Failed Stack Exchange proposal" src="http://blog.fuzzierlogic.com/wp-content/uploads/2011/03/atheism_shutdown.png" alt="Atheism SE Proposal Screen Cap" width="300" height="250" /></a></p>
<p>To clarify the procedure here, new Stack Exchange sites are proposed by a community of users. That community was originally drawn from Stack Overflow, the extremely successful programming Q&amp;A site, but now that there are nearly 50 active sites, the available community of proposers is much larger. Newly proposed sites have to overcome a series of hurdles before they go live, from proposal, through commitment, to a private beta, a public beta, before finally becoming a fully-fledged SE site. At the end of each of these stages, sites are assessed for the likelihood that they will become a healthy and active site. Crucially, this assessment appears to not be an individual process. It is obviously the view of the SE powers-that-be that all Q&amp;A sites are created equal, and what works for one will work for all of them. What is worrying about this attitude is that sites that are genuinely niche and likely to have a small, but active and dedicated, community will be left by the wayside, since presumably they will be unable to generate the kind of ad-revenue that Spolsky <em>at al</em> are going to require to repay their investors.</p>
<p>BioStar is a web community reaching a crossroads. The site is running on the now-free, but inevitably unsupported Stack Exchange 1.0 platform (the process discussed above is for the SE 2.0 community). To continue to thrive, I firmly believe the site needs to move on from this platform, since it is almost certainly going to be closed down from under it within the next 12-18 months. This presents the site owners (and us, the community) with a choice.</p>
<ol>
<li>Migrate the site to SE 2.0</li>
<li>Change to an open-source alternative Q&amp;A platform</li>
<li>Roll-our-own site, with the functionality we require</li>
</ol>
<p>I will start by ruling out option 3. Bioinformatics teaches us the perils of reinventing the wheel when it is not necessary. An effort to write a custom-built platform for BioStar would be almost entirely redundant, undertaken on the free time of the community (free-time which could be better spent answering questions on BioStar), and almost certainly offer no tangible benefit over using one of the already available Q&amp;A engines. (Think Facebook-for-Scientists&#8230;)</p>
<p>I used to be firmly in the camp supporting option 1. I genuinely love Stack Overflow. I have found great utility in some of the Stack Exchange family of sites. However, the attitude betrayed in both Spolsky&#8217;s tweet and the closure notice on the Atheism Stack Exchange site makes me think that BioStar would be left out in the cold if we attempted this migration. Let&#8217;s look at how BioStar measures up to these numbers:</p>
<ul>
<li>Questions per day (SE 2.0 recommends &#8211; &#8220;15 questions per day on average is a healthy beta&#8221;)
<ul>
<li>Since 30th September 2009 BioStar has received 1,681 questions &#8211; that&#8217;s 3.13 questions per day</li>
</ul>
</li>
<li>Percentage answered (SE 2.0 &#8211; &#8220;90% answered is a healthy beta&#8221;)
<ul>
<li>BioStar does well here. There are currently 47 questions with no upvoted answers &#8211; about 2.8%</li>
</ul>
</li>
<li>User group (SE 2.0 &#8211; 150 users with 200+, 10 with 2,000+, 5 with 3,000+)
<ul>
<li>We have 14 users with 3,000+, 24 with 2,000+ and (by my count) 142 with 200+. But BioStar has been going for 18 months, the atheism SE site was shut down after 2 months in public beta</li>
</ul>
</li>
<li>Answer ratio (SE 2.0 &#8211; &#8220;2.5 answers per question is good&#8221;)
<ul>
<li>I don&#8217;t have easy access to precise numbers for this, but it&#8217;s around 3 answers per question on BioStar</li>
</ul>
</li>
<li>Visits per day (SE 2.0 &#8211; &#8220;1,500 visits per day is good, 500 visits per day is worrying.&#8221;)
<ul>
<li>I have no stats at all for this, but I&#8217;m willing to put good money on the fact that daily numbers are much closer to 500 than 1,500.</li>
</ul>
</li>
</ul>
<p>By these criteria, and judging by the Atheism Stack Exchange linked to by Spolsky, BioStar would fail to emerge from SE 2.0 beta, based on current numbers, and any effort the existing community put in to get it that far would be wasted. And I don&#8217;t think the audience of the site would be grown dramatically by it being a Stack Exchange 2.0 site. I think we have to accept that Bioinformatics is a niche subject with a relatively small potential audience, one that is not going to be especially interesting to a commercially driven exercise (such as Stack Exchange necessarily has to be).</p>
<p>So that leaves us with migration to an OSS alternative as the only remaining option. There are a number of platforms available, some of which offer an experience extremely close to &#8216;real&#8217; Stack Exchange. I would pick one of these that allows an existing SE XML dump to be imported, and migrate the site as soon as possible, certainly within the next 6 months. There is no question that the change over will be painful, and will probably cost the site a few users, and some traffic in the first instance (the biostar.stackexchange.com URL will have to go, for example), but I am confident in the community that has been built around the site &#8211; it will survive, and will be all the stronger for the change.</p>
<p>Besides, if we look at the facts in the cold, hard light of day, we really have no choice.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 509 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/509/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2011/03/Screen-shot-2011-03-21-at-20.46.47-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2011/03/Screen-shot-2011-03-21-at-20.46.47.png" medium="image">
			<media:title type="html">Failed Stack Exchange proposal</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2011/03/Screen-shot-2011-03-21-at-20.46.47-150x150.png" />
		</media:content>
	</item>
		<item>
		<title>5 Best Data Visualization Projects of the Year – 2009 &#124; FlowingData</title>
		<link>http://blog.fuzzierlogic.com/archives/317</link>
		<comments>http://blog.fuzzierlogic.com/archives/317#comments</comments>
		<pubDate>Wed, 16 Dec 2009 09:24:06 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[data-visualization]]></category>
		<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/317</guid>
		<description><![CDATA[<a href="http://flowingdata.com/2009/12/16/5-best-data-visualization-projects-of-the-year-2009/"></a><a href="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled1000.jpg"></a></p> </p> <p style="font-size: 10px;">via <a href="http://flowingdata.com/2009/12/16/5-best-data-visualization-projects-of-the-year-2009/">flowingdata.com</a></p> <p> <p>The top visualization project of the year, according to <a title="FlowingData" href="http://flowingdata.com" target="_blank">FlowingData</a>, is a project by Ben Fry, which shows changes to the theory of evolution over time. <a title="Ben Fry site" href="http://benfry.com/traces/ " target="_blank">The project </a>takes advantage of the publication of the <a [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="317">
<div class="posterous_bookmarklet_entry"><a href="http://flowingdata.com/2009/12/16/5-best-data-visualization-projects-of-the-year-2009/"></a><a href="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled500.jpg" alt="" width="500" height="267" /></a></p>
<div class="posterous_quote_citation"><span></p>
<p style="font-size: 10px;">via <a href="http://flowingdata.com/2009/12/16/5-best-data-visualization-projects-of-the-year-2009/">flowingdata.com</a></p>
<p></span></div>
<p>The top visualization project of the year, according to <a title="FlowingData" href="http://flowingdata.com" target="_blank">FlowingData</a>, is a project by Ben Fry, which shows changes to the theory of evolution over time. <a title="Ben Fry site" href="http://benfry.com/traces/ " target="_blank">The project </a>takes advantage of the publication of the <a title="Darwin Online" href="http://darwin-online.org.uk/" target="_blank">full works of Darwin</a> online to trace changes in the text of On the Origin of Species over time.<br />
A deserved winner, and very apt, considering the <a title="Darwin200" href="http://www.darwin200.org/ " target="_blank">batch</a> of <a title="Origin150" href="http://www.darwin150.com/" target="_blank">anniversaries</a> that have gone by this year.</div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://sjcockell.posterous.com/5-best-data-visualization-projects-of-the-yea-1">Simon&#8217;s posterous</a></p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 317 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/317/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled500.jpg" />
		<media:content url="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled500.jpg" medium="image" />
	</item>
		<item>
		<title>Google Acquires AppJet &#8211; are there any live, functional alternatives to Etherpad?</title>
		<link>http://blog.fuzzierlogic.com/archives/307</link>
		<comments>http://blog.fuzzierlogic.com/archives/307#comments</comments>
		<pubDate>Fri, 04 Dec 2009 22:40:50 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[posterous]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/307</guid>
		<description><![CDATA[We are happy to announce that AppJet Inc. has been acquired by Google. The EtherPad team will continue its work on realtime collaboration by joining the <a href="https://wave.google.com/wave/">Google Wave</a> team.</p> <p>[...]</p> <p>The EtherPad site will stay online through March 2010 with some restrictions.</p> <p>[...]</p> <p>No new free public pads may be created. Your pads will [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="307">
<div class="posterous_bookmarklet_entry">
<blockquote>
<div><img class="alignleft" src="http://etherpad.com/static/img/wavejet.jpg" alt="" width="200" height="142" />We are happy to announce that AppJet Inc. has been acquired by Google.  The EtherPad team will continue its work on realtime collaboration by  joining the <a href="https://wave.google.com/wave/">Google Wave</a> team.</p>
<p>[...]</p>
<p>The EtherPad site will stay online through March 2010 with some  restrictions.</p>
<p>[...]</p>
<p><strong>No new  free public pads may be created.</strong> Your pads will no longer be accessible  after March 31, 2010, at which time your pads and any associated personally  identifiable information will be deleted.</p>
<p>[...]</p></div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://etherpad.com/ep/blog/posts/google-acquires-appjet">etherpad.com</a></div>
<div class="posterous_quote_citation"></div>
<p>Etherpad was a nice little tool, very effective at what it offered, I&#8217;m sure the guys who developed it will bring a lot to the Wave party. But seriously, Wave is nowhere near functional yet, it&#8217;s confusing, and glacially slow. So is there a decent alternative to Etherpad that is usable &#8211; right now?</p></div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://sjcockell.posterous.com/google-acquires-appjet-are-there-any-live-fun">Simon&#8217;s posterous</a></p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 307 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/307/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://etherpad.com/static/img/wavejet.jpg" />
		<media:content url="http://etherpad.com/static/img/wavejet.jpg" medium="image" />
	</item>
		<item>
		<title>Now that&#8217;s what I call microblogging</title>
		<link>http://blog.fuzzierlogic.com/archives/267</link>
		<comments>http://blog.fuzzierlogic.com/archives/267#comments</comments>
		<pubDate>Mon, 29 Jun 2009 10:29:03 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[friendfeed]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=267</guid>
		<description><![CDATA[<p>As <a title="previous post" href="http://blog.fuzzierlogic.com/?p=258" target="_blank">noted previously</a>, ISMB is underway, and the FriendFeeders present are working hard to keep the rest of us updated on what&#8217;s going on.</p> <p>I just wanted to highlight the coverage of <a title="FriendFeed - ISMB coverage" href="http://friendfeed.com/ismbeccb2009/816b4aad/keynote-pierre-henri-gouyon-information-and" target="_blank">this morning&#8217;s keynote</a>, which was absolutely exemplary.</p> <p></p>]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="267">
<p>As <a title="previous post" href="http://blog.fuzzierlogic.com/?p=258" target="_blank">noted previously</a>, ISMB is underway, and the FriendFeeders present are working hard to keep the rest of us updated on what&#8217;s going on.</p>
<p>I just wanted to highlight the coverage of <a title="FriendFeed - ISMB coverage" href="http://friendfeed.com/ismbeccb2009/816b4aad/keynote-pierre-henri-gouyon-information-and" target="_blank">this morning&#8217;s keynote</a>, which was absolutely exemplary.</p>
<p><iframe src="http://friendfeed.com/ismbeccb2009/816b4aad/keynote-pierre-henri-gouyon-information-and?embed=1" frameborder="0" height="600" width="550" style="border:1px solid #aaa"></iframe></p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 267 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/267/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
		<item>
		<title>ISMB &#8211; attending without travelling</title>
		<link>http://blog.fuzzierlogic.com/archives/258</link>
		<comments>http://blog.fuzzierlogic.com/archives/258#comments</comments>
		<pubDate>Thu, 25 Jun 2009 20:52:23 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[ISMB]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=258</guid>
		<description><![CDATA[<p><a href="http://www.iscb.org/ismbeccb2009/index.php"></a>It&#8217;s ISMB time again, and as colleagues jet off to Stockholm, I can&#8217;t help but feel that twinge of envy. Lucky then, that the conference organisers have a fantastic attitude towards live- and micro-bloggers, and after the success of last year&#8217;s efforts (see the <a title="ISMB 08 - FriendFeed" href="http://friendfeed.com/ismb-2008" target="_blank">FriendFeed room</a>, and the [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="258">
<p><a href="http://www.iscb.org/ismbeccb2009/index.php"><img class="alignright size-full wp-image-260" title="ismb2009" src="http://blog.fuzzierlogic.com/wp-content/uploads/2009/06/ismb20091.jpg" alt="ismb2009" width="178" height="132" /></a>It&#8217;s ISMB time again, and as colleagues jet off to Stockholm, I can&#8217;t help but feel that twinge of envy. Lucky then, that the conference organisers have a fantastic attitude towards live- and micro-bloggers, and after the success of last year&#8217;s efforts (see the <a title="ISMB 08 - FriendFeed" href="http://friendfeed.com/ismb-2008" target="_blank">FriendFeed room</a>, and the <a title="Microblogging the ISMB - PLoS Comp Bio" href="http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1000263" target="_blank">paper</a>), they are <a title="ISMB blogging announcment" href="http://www.iscb.org/iscb-news-items/370-ismbeccb-blogging-announcment" target="_blank">positively encouraging</a> more of the same this year. There&#8217;s a <a title="ISMB 09 FF room" href="http://friendfeed.com/ismbeccb2009" target="_blank">FriendFeed room</a> again, where a new thread will be posted 10 minutes before each talk, and with a number of dedicated FFers present, there&#8217;s sure to be some fantastic live coverage. I&#8217;ll be following along.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 258 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/258/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/06/ismb20091-150x132.jpg" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/06/ismb20091.jpg" medium="image">
			<media:title type="html">ismb2009</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/06/ismb20091-150x132.jpg" />
		</media:content>
	</item>
		<item>
		<title>MMR scaremongerer sicks the legal dogs on Ben Goldacre</title>
		<link>http://blog.fuzzierlogic.com/archives/130</link>
		<comments>http://blog.fuzzierlogic.com/archives/130#comments</comments>
		<pubDate>Thu, 05 Feb 2009 22:48:34 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[badscience]]></category>
		<category><![CDATA[doom]]></category>
		<category><![CDATA[MMR]]></category>
		<category><![CDATA[weirdos]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=130</guid>
		<description><![CDATA[<p>Let the blogosphere and twittersphere spring to his defence!</p> <p><a title="Bad Science plea for help" href="http://www.badscience.net/2009/02/legal-chill-from-lbc-973-over-jeni-barnetts-mmr-scaremongering/" target="_blank">See here for full details</a>, but a <a title="Jeni Barnett - MMR loon" href="http://en.wikipedia.org/wiki/Jeni_Barnett" target="_blank">London broadcaster</a> had a half hour long rant on her show about the &#8216;dangers&#8217; of the MMR jab on 7th January. <a title="Twitter - Ben [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="130">
<p>Let the blogosphere and twittersphere spring to his defence!</p>
<p><a title="Bad Science plea for help" href="http://www.badscience.net/2009/02/legal-chill-from-lbc-973-over-jeni-barnetts-mmr-scaremongering/" target="_blank">See here for full details</a>, but a <a title="Jeni Barnett - MMR loon" href="http://en.wikipedia.org/wiki/Jeni_Barnett" target="_blank">London broadcaster</a> had a half hour long rant on her show about the &#8216;dangers&#8217; of the MMR jab on 7th January. <a title="Twitter - Ben Goldacre" href="http://twitter.com/bengoldacre" target="_blank">Ben Goldacre</a> subsequently posted the entire, repulsive, segment on his blog, to show this woman up for the scaremongerer she is. The <a title="LBC" href="http://www.lbc.co.uk/" target="_blank">radio station</a> she works for has now set the lawyers on him, insisting he cease and disist.</p>
<p>So I am reposting his plea for help, and posting links to the relevant content (<a title="Original Post" href="http://www.badscience.net/2009/02/bad-science-bingo/" target="_blank">original post here</a>, <a title="OFCOM" href="http://www.ofcom.org.uk/complain/" target="_blank">complain about the broadcast here</a>). If you have the know-how to help him out, please do so.</p>
<p>EDIT &#8211; You can get the audio of the original broacast from <a title="YouTube Audio" href="http://www.youtube.com/user/rachiesyd" target="_blank">YouTube</a> or <a title="WikiLeaks audio" href="http://wikileaks.org/wiki/Bad_Science:_Jeni_Barnett_MMR_and_vaccination_slot_on_LBC_radio,_2009" target="_blank">WikiLeaks</a>&#8230; if you want your head to explode with frustration&#8230; Also note <a title="Measles incidence" href="http://www.thatsfuckingstupid.com/index.php/2009/02/just-a-quickie-update/" target="_blank">this graph</a>, which illustrates the very real effect of irresponsible woo like this.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 130 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/130/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
		<item>
		<title>Twitter and Me</title>
		<link>http://blog.fuzzierlogic.com/archives/99</link>
		<comments>http://blog.fuzzierlogic.com/archives/99#comments</comments>
		<pubDate>Wed, 28 Jan 2009 17:47:10 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=99</guid>
		<description><![CDATA[<p>This is a bit of a follow-up to my <a title="FriendFeed and Me" href="http://blog.fuzzierlogic.com/?p=33" target="_blank">post about FriendFeed</a>. I registered for <a title="Twitter" href="http://www.twitter.com/" target="_blank">Twitter</a> at the same time as <a title="FriendFeed" href="http://www.friendfeed.com" target="_blank">FriendFeed</a>, and while I immediately saw the value of FF for a long time I only saw Twitter as a tool to broadcast [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="99">
<p>This is a bit of a follow-up to my <a title="FriendFeed and Me" href="http://blog.fuzzierlogic.com/?p=33" target="_blank">post about FriendFeed</a>. I registered for <a title="Twitter" href="http://www.twitter.com/" target="_blank">Twitter</a> at the same time as <a title="FriendFeed" href="http://www.friendfeed.com" target="_blank">FriendFeed</a>, and while I immediately saw the value of FF for a long time I only saw Twitter as a tool to broadcast work-related ideas and thoughts to FriendFeed. I saw it as having little utility in it&#8217;s own right.</p>
<p>My follower/following count slowly increased, driven by FF, I tended to reciprocally follow people, and the few people who were following me found me there. Then, early this year, <a title="Twitter - sciencebase" href="http://twitter.com/sciencebase" target="_blank">David Bradley</a> posted his <a title="100 scientific Twitter friends" href="http://www.sciencebase.com/science-blog/100-scientific-twitter-friends" target="_blank">list of 100+ Scientwists</a>, and I thought: &#8216;hey, I&#8217;m a scientist, and on Twitter&#8230; maybe I should be on that list&#8221;. So I got included, and then got a sudden upsurge in followers.</p>
<p><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2009/01/picture-21.png"><img class="alignleft size-medium wp-image-112" title="Twitter Counter" src="http://blog.fuzzierlogic.com/wp-content/uploads/2009/01/picture-21-300x195.png" alt="Twitter Counter" width="300" height="195" /></a></p>
<p>Not all these followers were on FF anymore, so I couldn&#8217;t follow my Twitter traffic on FF (without creating a whole bunch of imaginary friends, which I didn&#8217;t want to do). So I had to start following Twitter properly.</p>
<p>This has led to a more interesting conversation developing. I post more @replies, and am receiving a few more in return (though often from the <a title="Twitter - d_swan" href="http://twitter.com/d_swan" target="_self">desk next to me in the office</a>), and though I don&#8217;t have any specific examples like I did for FF, I feel I am gaining more value from Twitter as a tool in its own right.</p>
<p>I have tried a number of apps to monitor Twitter traffic, but none of them quite fit into my workflow properly (though <a title="TweetDeck" href="http://www.tweetdeck.com" target="_blank">TweetDeck</a> comes closest, and is much better than <a title="Twhirl" href="http://www.twhirl.org" target="_blank">Twhirl</a>). However, I got a 3G iPhone yesterday, the <a title="Twitterific" href="http://iconfactory.com/software/twitterrific/" target="_blank">Twitterific</a> App seems great, and in the future I suspect most of my Tweeting will be done on that platform.</p>
<p>Finally, there has been a <a title="BBC News" href="http://news.bbc.co.uk/1/hi/entertainment/7851383.stm" target="_blank">lot</a> <a title="The Sun" href="http://www.thesun.co.uk/sol/homepage/features/article2116931.ece" target="_blank">written</a> <a title="The Daily Sieg Heil" href="http://www.dailymail.co.uk/tvshowbiz/article-1104726/How-boring-Celebrities-sign-Twitter-reveal-mundane-aspect-lives.html" target="_blank">about</a> Twitter in the last couple of weeks, and in particular about the number of &#8216;celebrities&#8217; tweeting, both real and fake. For my part, I do follow a few, and get most value from <a title="Twitter - stephenfry" href="http://twitter.com/stephenfry" target="_blank">@stephenfry</a> (<a title="A Bit of Fry and Laurie" href="http://uk.youtube.com/watch?v=eEkjiF_UilE" target="_blank">bonus linky</a>), who really seems to &#8216;get it&#8217; (as he does most things, though how he keeps track following over 30k people, I&#8217;ll never know), and <a title="Twitter - dave_gorman" href="http://twitter.com/dave_gorman" target="_blank">@dave_gorman</a> (<a title="Googlewhack" href="http://uk.youtube.com/watch?v=h1-3zMZqN78" target="_blank">bonus linky</a>), who, like me, is just learning the value of the platform. But the real value of Twitter is again, like FF, in the quality of the science conversation on there, and how it makes me feel connected to a worldwide community of like-minded people.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 99 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/99/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/01/picture-21-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/01/picture-21.png" medium="image">
			<media:title type="html">Twitter Counter</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/01/picture-21-150x150.png" />
		</media:content>
	</item>
		<item>
		<title>Wordle</title>
		<link>http://blog.fuzzierlogic.com/archives/46</link>
		<comments>http://blog.fuzzierlogic.com/archives/46#comments</comments>
		<pubDate>Fri, 12 Dec 2008 09:54:53 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[citeulike]]></category>
		<category><![CDATA[tag cloud]]></category>
		<category><![CDATA[wordle]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=46</guid>
		<description><![CDATA[<p>I&#8217;m a bit behind the zeitgeist here, I know, but <a title="Wordle" href="http://www.wordle.net/" target="_blank">Wordle</a> is a pretty cool little tool. I think the cloud of my CiteULike tags fairly reflects my academic interests, and the fact that even after 5 years away from the lab, &#8216;wet&#8217; techniques dominate, I really should make more of the [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="46">
<p>I&#8217;m a bit behind the zeitgeist here, I know, but <a title="Wordle" href="http://www.wordle.net/" target="_blank">Wordle</a> is a pretty cool little tool. I think the cloud of my CiteULike tags fairly reflects my academic interests, and the fact that even after 5 years away from the lab, &#8216;wet&#8217; techniques dominate, I really should make more of the bioinformatics involved in the papers I bookmark.</p>
<div id="attachment_47" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/picture-1.png"><img class="size-medium wp-image-47" title="citeulike_wordle" src="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/picture-1-300x164.png" alt="Wordle Tag Cloud of my CiteULike Library" width="300" height="164" /></a><p class="wp-caption-text">Wordle Tag Cloud of my CiteULike Library</p></div>
<p>Find it on Wordle <a title="Wordle Tag Cloud" href="http://www.wordle.net/gallery/wrdl/380947/sjcockell_CiteULike_Tags" target="_blank">here</a>.</p>
<p>A few notes on technique. I extracted the tags from the RIS export of my CiteULike library using <a title="Python Snippet - MoinMoin" href="http://wiki.fuzzierlogic.com/Personal/CuLTagPythonSnippet" target="_blank">this Python script</a>, I had to limit the represntation of words to 25, otherwise &#8216;proteomics&#8217; would have dominated to such an extent that virtually none of the other tags would be visible (except maybe &#8216;protein-protein-interactions&#8217;). But then I am responsible for supporting proteomics researchers, and predicting and validating protein-protein interactions is my major personal research interest. So I guess this is fair enough.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 46 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/46/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/picture-1-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/picture-1.png" medium="image">
			<media:title type="html">citeulike_wordle</media:title>
			<media:description type="html">Wordle Tag Cloud of my CiteULike Library</media:description>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/picture-1-150x150.png" />
		</media:content>
	</item>
		<item>
		<title>FriendFeed and Me</title>
		<link>http://blog.fuzzierlogic.com/archives/33</link>
		<comments>http://blog.fuzzierlogic.com/archives/33#comments</comments>
		<pubDate>Fri, 05 Dec 2008 11:36:35 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[lifefeed]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=33</guid>
		<description><![CDATA[<p>Apparently its <a title="Tuned In?" href="http://www.marketingtechblog.com/tunedin.php?s=http%3A%2F%2Fblog.fuzzierlogic.com%2F%3Ffeed%3Drss2" target="_blank">bad for a blog to be introspective</a>, and always about the author. But I&#8217;m unrepentant. What do people write about if not themselves, even indirectly? So here&#8217;s another post about me, and about my participation in a small web revolution.</p> <p>Next week marks 6 months since I registered my [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="33">
<p>Apparently its <a title="Tuned In?" href="http://www.marketingtechblog.com/tunedin.php?s=http%3A%2F%2Fblog.fuzzierlogic.com%2F%3Ffeed%3Drss2" target="_blank">bad for a blog to be introspective</a>, and always about the author. But I&#8217;m unrepentant. What do people write about if not themselves, even indirectly? So here&#8217;s another post about me, and about my participation in a small web revolution.</p>
<p>Next week marks 6 months since I registered my account at <a title="FriendFeed" href="http://www.friendfeed.com" target="_blank">FriendFeed</a> (and simultaneously, <a title="Twitter" href="http://www.twitter.com/" target="_blank">Twitter</a>). Ally <a title="Ally's Blog" href="http://lurena.vox.com/library/post/citeulike-friendfeed-and-me-bff.html?_c=feed-atom" target="_self">posted yesterday</a> about her moment of epiphany with the &#8216;lifestreaming&#8217; site, and I know other <a title="Neil Saunders" href="http://nsaunders.wordpress.com/2008/04/15/two-great-open-science-resources/" target="_blank">people</a> have <a title="Deepak Singh" href="http://mndoci.com/blog/2008/04/14/a-bio-twitterverse-and-some-thoughts-on-aggregation/" target="_blank">blogged</a> about it&#8217;s <a title="Cameron Neylon" href="http://blog.openwetware.org/scienceintheopen/2008/04/06/friendfeed-lifestreaming-and-workstreaming/" target="_blank">impact</a> on their online lives, and I thought I&#8217;d do the same as a bit of a retrospective.</p>
<p>Briefly, FriendFeed is a site that aggregates information from other sites, and shares it with the world. I collate the feeds from this blog, Twitter, <a title="CiteULike" href="http://www.citeulike.org" target="_blank">CiteULike.org</a>, <a title="del.ico.us" href="http://del.icio.us" target="_blank">del.icio.us</a>, <a title="Flickr" href="http://www.flickr.com" target="_blank">Flickr</a>, <a title="Google Reader" href="http://reader.google.com" target="_blank">Google Reader</a> and a few others there. People can subscribe to this amalgamated feed, and get an idea of my interests and what I am upto.</p>
<p>I try to limit my activity on FF (and, consequently, Twitter) to stuff that&#8217;s purely work-related (although real life does occasionally creep in), and because of this &#8216;work-stream&#8217; approach, it has become an increasingly indispensable tool in the pipeline of information discovery and my scientific &#8216;social life&#8217;.</p>
<p>The following are a (direct or indirect) result of my participation at FF:</p>
<ul>
<li>I have finally learnt <a title="Python" href="http://www.python.org/" target="_blank">Python</a>, and made it my programming language of choice</li>
<li>I have adopted <a title="Git - Fast Version Control" href="http://git.or.cz/" target="_blank">Git</a> for version control, and have several repos on <a title="GitHub" href="http://www.github.com" target="_blank">GitHub</a></li>
<li>I bought this domain, and set up this blog</li>
<li>Found countless papers and blogs I may have missed</li>
</ul>
<p>As a more concrete example of the power of FF, I am currently involved in a project looking at co-evolution of bacterial proteins, and am employing Statistical Coupling Analysis to score multiple sequence alignments. This method produced thousands of scores across an alignment, and the best way of viewing them is by constructing a sort of heatmap. I was using Gnuplot to do this, and my maps looked something like this:</p>
<p><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/rainbow_plot.png"><img class="aligncenter size-medium wp-image-38" title="Rainbow Plot" src="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/rainbow_plot-300x225.png" alt="" width="300" height="225" /></a></p>
<p>This is not terribly useful, because you keep having to check the legend to see whether red is &#8216;hotter&#8217; or &#8216;colder&#8217; than yellow, etc. Then, one morning last week, I saw a link on FriendFeed to <a title="Rainbow color spectrum in 2dplots considered useless" href="http://boscoh.com/science/rainbow-color-spectrum-in-2dplots-considered-useless" target="_blank">this blog post</a>, and following the very wise suggestions in that post, I worked out how to redraw my plots so they now look like this:</p>
<p style="text-align: center;"><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/plot.png"><img class="size-medium wp-image-39 aligncenter" title="Red &amp; White Plot" src="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/plot-300x225.png" alt="" width="300" height="225" /></a></p>
<p>This makes it much easier to tell at a glance where the hotspots are to be found in the alignment. It is just one blog post, but I would never have found it without FF, and it is a useful illustration of how this new workflow has changed my productivity.</p>
<p>So, for the next six months, and on into the more distant future, what role do I see for FF in my work life? Well, for a start I need to participate more. I am constantly aware that I should comment more, and even just &#8216;like&#8217; more stuff. Contribution should also take the form of propogating things to FF for others to see. Most of my Feed consists of articles at CiteULike and Tweets. By posting more stuff to FF directly, and by sharing interesting articles on Google Reader, I&#8217;ll be providing more grist to the mill of conversation than I currently do. And I want to be an active member of this community, I like the people, I&#8217;ve got a lot out of the last 6 months of (relatively) passive interaction, and want that to continue, but I should no longer be a passenger.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 33 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/33/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/rainbow_plot-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/rainbow_plot.png" medium="image">
			<media:title type="html">Rainbow Plot</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/rainbow_plot-150x150.png" />
		</media:content>
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/plot.png" medium="image">
			<media:title type="html">Red &#038; White Plot</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2008/12/plot-150x150.png" />
		</media:content>
	</item>
	</channel>
</rss>

