<?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>nostuff.org</title>
	<atom:link href="http://www.nostuff.org/words/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nostuff.org/words</link>
	<description>living up to its name</description>
	<lastBuildDate>Tue, 31 Aug 2010 14:29:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Talis Aspire, checking if a course has a list</title>
		<link>http://www.nostuff.org/words/2010/talis-aspire-checking-if-a-course-has-a-list/</link>
		<comments>http://www.nostuff.org/words/2010/talis-aspire-checking-if-a-course-has-a-list/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 14:26:18 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[aspire]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[talis]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/2010/talis-aspire-checking-if-a-course-has-a-list/</guid>
		<description><![CDATA[Talis Aspire is a new-ish Reading List system used at the University of Sussex Library. On Aspire, a url for a Department looks like this: http://liblists.sussex.ac.uk/departments/anthropology.html A page for a course looks like this (for course l6061): http://liblists.sussex.ac.uk/courses/l6061.html The nice thing is that you can replace the ‘.html’ with .json or .rdf – while the [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/linked-data-rdf-draft-notes-for-comment/' rel='bookmark' title='Permanent Link: Linked data &#038; RDF : draft notes for comment'>Linked data &#038; RDF : draft notes for comment</a></li>
<li><a href='http://www.nostuff.org/words/2008/nostuff-library-catalogue-using-the-talis-platform/' rel='bookmark' title='Permanent Link: nostuff library catalogue using the Talis Platform'>nostuff library catalogue using the Talis Platform</a></li>
<li><a href='http://www.nostuff.org/words/2009/ircount-development/' rel='bookmark' title='Permanent Link: ircount development'>ircount development</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.talis.com/aspire/" target="_blank">Talis Aspire</a> is a new-ish Reading List system used at the University of Sussex Library.</p>
<p>On Aspire, a url for a <em>Department</em> looks like this:<br />
<a href="http://liblists.sussex.ac.uk/departments/anthropology.html">http://liblists.sussex.ac.uk/departments/anthropology.html</a></p>
<p>A page for a <em>course</em> looks like this (for course l6061):<br />
<a href="http://liblists.sussex.ac.uk/courses/l6061.html">http://liblists.sussex.ac.uk/courses/l6061.html</a></p>
<p>The nice thing is that you can replace the ‘.html’ with <a href="http://liblists.sussex.ac.uk/courses/l6061.json" target="_blank">.json</a> or <a href="http://liblists.sussex.ac.uk/courses/l6061.rdf" target="_blank">.rdf</a> – while the html only has a link to the related list, the json and rdf expose other links and relationships, such as the department.</p>
<p>For us, most (but not all) courses only have one list. URLs for lists are not predictable in the same way as the courses URL. E.g.<br />
<a href="http://liblists.sussex.ac.uk/lists/EEC1E2AA-C350-DAFC-BDE4-1E9EF5EC69E5.html">http://liblists.sussex.ac.uk/lists/EEC1E2AA-C350-DAFC-BDE4-1E9EF5EC69E5.html</a></p>
<p><span id="more-618"></span>So what if you want to link to a list from an external system.</p>
<p>The University has a portal which includes for students a list of their courses and provides a link to those that have a reading list. Two issues: it needs to know which courses have a reading list on Talis Aspire, and it needs a way to link to them.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/08/sussexdirect.png"><img style="display: inline; border: 0px;" title="Sussex Direct, links to reading lists" src="http://www.nostuff.org/words/wp-content//2010/08/sussexdirect_thumb.png" border="0" alt="Sussex Direct, links to reading lists" width="644" height="193" /></a></p>
<p>The easiest way to achieve the former is for the central admin/portal server to query (make a http request) for each course provided by the University, if it gets a 404, no list exists for that course. It can then flag each course that has a list (using a field in the database).</p>
<p>And what about linking to a list. We actually have three options. The first is to simply link to the course link above (second link from the top), this will show any lists for that course, but will normally require the user to click on the single reading list link to see the list items, which isn’t ideal. The second method is to process the json data in the step above (where we were checking for the existence of a course page), the data will include the URL for the list(s) which could then be stored in the portal DB.</p>
<p>But the third option is the easiest. Turns out there is a nice URL you can use, similar to the one above, which will take the user directly to a list for a course, if there is only one, if there is more than more it will show a list (of, ummm, lists) instead, and this URL is predictable for any given course code.</p>
<p>Here’s an example of both scenarios. Thanks for Chris Clarke at Talis for the information on this.</p>
<p><a href="http://liblists.sussex.ac.uk/courses/l6061/lists.html">http://liblists.sussex.ac.uk/courses/l6061/lists.html</a> [one list, norm]<br />
<a href="http://liblists.sussex.ac.uk/courses/v1367/lists.html">http://liblists.sussex.ac.uk/courses/v1367/lists.html</a> (<a href="http://liblists.sussex.ac.uk/courses/v1367/lists.json" target="_blank">json</a>) [two lists]</p>
<p>Finally, I knocked up some bad php to demonstrate this. It queries the url above, and returns either the urls of the list(s) or a message to say there is no course or lists for that course code.</p>
<p><a href="http://www.lib.sussex.ac.uk/coursechecker.php?course=v1367">http://www.lib.sussex.ac.uk/coursechecker.php?course=v1367</a><br />
<a href="http://www.lib.sussex.ac.uk/coursechecker.php?course=l6066">http://www.lib.sussex.ac.uk/coursechecker.php?course=l6066</a><br />
<a href="http://www.lib.sussex.ac.uk/coursechecker.php?course=abc">http://www.lib.sussex.ac.uk/coursechecker.php?course=abc</a> [doesn’t exist]</p>
<blockquote><p>&lt;?php</p>
<p># This script is past a course code<br />
# it returns any reading lists attached to that coursecode</p>
<p>$baseurl = &#8220;<a href="http://liblists.sussex.ac.uk&quot;;">http://liblists.sussex.ac.uk&#8221;;</a></p>
<p>$coursecode = $_GET["course"];<br />
if ($coursecode == &#8220;&#8221; OR $coursecode == null) {<br />
echo &#8220;no course&#8221;;<br />
exit;<br />
}</p>
<p># this url will exist if there are lists for this course,<br />
# and will not exist (404) if there are not<br />
$url = $baseurl . &#8220;/courses/&#8221; . $coursecode . &#8220;/lists.json&#8221;;<br />
# &#8230;also available in html and rdf</p>
<p># Get webpage using curl<br />
$ch      = curl_init( $url );<br />
# OPTION: don&#8217;t put it on screen<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$page = curl_exec($ch);<br />
$header  = curl_getinfo( $ch );<br />
curl_close($ch);<br />
$statuscode = $header['http_code'];</p>
<p># if status code 404 then no page<br />
if ($statuscode == &#8217;404&#8242;) {<br />
echo &#8216;NOREADINGLIST&#8217;;<br />
}</p>
<p># we have a page for this course<br />
elseif ($statuscode == &#8217;200&#8242;) {<br />
# use json to return url to list(s), though if only one the original url,<br />
# ending in html, will take you to it.<br />
get_list_url($page);<br />
}</p>
<p># or maybe we have another status code<br />
else {<br />
echo &#8216;NOTSURE&#8217;;<br />
}</p>
<p>function get_list_url ($page) {<br />
# JSON<br />
$data = json_decode($page, true); #true=array</p>
<p>foreach ($data as $listurl =&gt; $stuff) {<br />
# we only want lists. not courses or departments<br />
if (preg_match(&#8220;/\/lists\//&#8221;, $listurl)) {<br />
echo &#8220;$listurl&lt;br&gt;\n&#8221;;<br />
}<br />
}</p>
<p>}</p>
<p>?&gt;</p></blockquote>
<p>So once a week, the central portal will query Talis Aspire for each course to see if there is a reading list, and store the result. And it will link to lists using the URL <a href="http://liblists.sussex.ac.uk/courses/{coursecode}/lists.html">http://liblists.sussex.ac.uk/courses/{coursecode}/lists.html</a></p>
<div class='wp_likes' id='wp_likes_post-618'><a class='like' href="javascript:wp_likes.like(618);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(618);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Ftalis-aspire-checking-if-a-course-has-a-list%2F&amp;linkname=Talis%20Aspire%2C%20checking%20if%20a%20course%20has%20a%20list"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/linked-data-rdf-draft-notes-for-comment/' rel='bookmark' title='Permanent Link: Linked data &#038; RDF : draft notes for comment'>Linked data &#038; RDF : draft notes for comment</a></li>
<li><a href='http://www.nostuff.org/words/2008/nostuff-library-catalogue-using-the-talis-platform/' rel='bookmark' title='Permanent Link: nostuff library catalogue using the Talis Platform'>nostuff library catalogue using the Talis Platform</a></li>
<li><a href='http://www.nostuff.org/words/2009/ircount-development/' rel='bookmark' title='Permanent Link: ircount development'>ircount development</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/talis-aspire-checking-if-a-course-has-a-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Library Catalogues need to cater for light-weight discovery clients</title>
		<link>http://www.nostuff.org/words/2010/library-catalogues-need-to-cater-for-light-weight-discovery-clients/</link>
		<comments>http://www.nostuff.org/words/2010/library-catalogues-need-to-cater-for-light-weight-discovery-clients/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 13:11:26 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[aquabrowser]]></category>
		<category><![CDATA[catalogues]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[ngc]]></category>
		<category><![CDATA[opac]]></category>
		<category><![CDATA[resource discovery]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=610</guid>
		<description><![CDATA[Way back I wrote a piece about the changing model for library catalogues, you can see it here. The main premise was that trying to maintain records in a Library Management System (LMS/ILS) for all the items you want your users to discover is no longer feasible. This is especially true in this here digital [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/' rel='bookmark' title='Permanent Link: Library search/discovery apps : intro'>Library search/discovery apps : intro</a></li>
<li><a href='http://www.nostuff.org/words/2009/library_catalogues_changing_model/' rel='bookmark' title='Permanent Link: Library catalogues, search systems and data'>Library catalogues, search systems and data</a></li>
<li><a href='http://www.nostuff.org/words/2009/academic-discovery-and-library-catalogues/' rel='bookmark' title='Permanent Link: Academic discovery and library catalogues'>Academic discovery and library catalogues</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Way back I wrote a piece <a href="http://www.nostuff.org/words/2009/library_catalogues_changing_model/">about the changing model for library catalogues, you can see it here</a>. The main premise was that trying to maintain records in a Library Management System (LMS/ILS) for all the items you want your users to discover is no longer feasible. This is especially true in this here digital age, trying to maintain records for all the e-journals a University has access to is an almost impossible task, and LMS were not designed for thousands of MARC records to be dropped and then re-imported (i.e. sync&#8217;d) with another source. And what about all the free stuff, is an e-book not worth being discovered by users because it is free?</p>
<p>So let the LMS be a record of what your library physically holds, and your discovery service a place where users can find (and see how to access) resources that are of interest to their research and work. The former being just one element (albeit a major one) of the latter. Meanwhile your LMS physically holdings can be shared with other discovery systems (such as union catalogues) to show what your library physically contains.</p>
<p><span id="more-610"></span>The blog post included a diagram. Some said it was rather crude, badly drawn and basic. It&#8217;s critics weren&#8217;t so kind.</p>
<div id="attachment_287" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.nostuff.org/words/wp-content//new_cat_model.png"><img class="size-medium wp-image-287" title="New Library catalogue model" src="http://www.nostuff.org/words/wp-content//new_cat_model-300x190.png" alt="" width="300" height="190" /></a><p class="wp-caption-text">New Library catalogue model</p></div>
<p>But I want to focus on the bit near the bottom, a line and &#8216;Endnote search&#8217; with not even a box around it. And the point has nothing to do with Endnote. (well a little bit but who&#8217;s counting).</p>
<p><strong>Story 1</strong></p>
<p>I had a phone call from a trainer here at Sussex. Their problem went a bit like this: When showing postgrads Endnote and reference management, a common query arose, they wanted to import multiple records from the Library catalogue in to Endnote. This seemed reasonable. She had discovered a number of ways to import records: (a) from our discovery service &#8211; <a href="http://catalogue.sussex.ac.uk/ABL/">Aquabrowser</a> (b) from our traditional library catalogue that comes with our LMS &#8211; Talis Prism (c) from within Endnote.</p>
<p>Aquabrowser has a nice &#8216;export to Endnote&#8217; button on each record, we&#8217;d set that up. But there was no way to export multiple records. <a href="http://ustie1.lib.sussex.ac.uk/TalisPrism/">Talis Prism</a> was no better. Endnote has a feature for connecting directly to a database (in this case our catalogue) via <a href="http://en.wikipedia.org/wiki/Z39.50">Z39.50</a>. (This feature can be a real bane for libraries as it looks like a real time saver to researchers but often database vendors and &#8216;platform&#8217; middle men don&#8217;t support this type of connection for institutional subscribers.) This connects directly in to our catalogue and uses the stupidly complex and ageing Z39.50 to retrieve results. And from within Endnote you can then easily add them to your Endnote library.</p>
<p>But the problem was these search results in no way reflected the results they had when using our normal catalogue, in fact they just seemed  to be of no real order. So they had to either use the web catalogue to download one record at a time, or use Endnote but with a strange set of search results which does not reflect what they found (and what they wanted to save) on the catalogue</p>
<p><strong>Story 2</strong></p>
<p>Sussex is about to launch an iphone app using <a href="http://www.ombiel.com/campusm.html">CampusM</a>. Very exciting. One of the developers was chatting to me and asked if our catalogue had an API which they could perhaps use in the future to search the catalogue from within the app. Now we Library geeks love standards and apis but the only one I could think of was <em>Z39.50</em>.</p>
<p>Problem: aside from Z39.50 being the most difficult thing to get your head around and use &#8211; is that, like Endnote above, the results would be not ordered, with no relevance ranking.</p>
<p>The issues here are the same. Neither Endnote, nor a University iphone app is trying to be a fully fledged catalogue. Even if they did have the resources to develop search relevance and rank, it would be reinventing the wheel (which can only be bad) and ultimately would differ from the results seen within our main catalogue (Aquabrowser).</p>
<p>What&#8217;s more, in the model described at the top, the resource discovery layer (e.g. Aquabrowser) may hold records for items not on the catalogue (e.g. if we were starting again, our e-journal records would not be in our LMS, but indexed straight in to Aquabrowser).</p>
<p>So these &#8216;thin clients&#8217; really just want to connect to a catalogue and get back some results in XML or similar which they just have to transform in to HTML (or display in an iphone app). They don&#8217;t want to implement a full bodied search interface, and nor should they have to.</p>
<p>The answer is, of course, that these clients need to an API provided by the Resource Discovery system.</p>
<p>The good news is that I think this is already happening, a number provide XML interfaces which developers can use. Aquabrowser for example has a <a href="http://catalogue.sussex.ac.uk/ABL/sru.ashx?operation=searchRetrieve&amp;version=1.1&amp;query=dogs&amp;maximumRecords=100&amp;recordSchema=dc">SRU interface</a> (you may need to &#8216;browse source&#8217; to see this) and it&#8217;s own <a href="http://catalogue.sussex.ac.uk/ABL/result.ashx?q=cats&amp;output=xml">XML interface</a>, though this is not very well documented at all (thanks to Ed Chamberlain for the help in finding the url for it)</p>
<div class='wp_likes' id='wp_likes_post-610'><a class='like' href="javascript:wp_likes.like(610);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(610);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Flibrary-catalogues-need-to-cater-for-light-weight-discovery-clients%2F&amp;linkname=Library%20Catalogues%20need%20to%20cater%20for%20light-weight%20discovery%20clients"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/' rel='bookmark' title='Permanent Link: Library search/discovery apps : intro'>Library search/discovery apps : intro</a></li>
<li><a href='http://www.nostuff.org/words/2009/library_catalogues_changing_model/' rel='bookmark' title='Permanent Link: Library catalogues, search systems and data'>Library catalogues, search systems and data</a></li>
<li><a href='http://www.nostuff.org/words/2009/academic-discovery-and-library-catalogues/' rel='bookmark' title='Permanent Link: Academic discovery and library catalogues'>Academic discovery and library catalogues</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/library-catalogues-need-to-cater-for-light-weight-discovery-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>html5 and nostuff</title>
		<link>http://www.nostuff.org/words/2010/html5-and-nostuff/</link>
		<comments>http://www.nostuff.org/words/2010/html5-and-nostuff/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 00:17:07 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[web and blogs]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=600</guid>
		<description><![CDATA[It&#8217;s hard not to think of nostuff.org and not think of blazing web standards. So I had a go at updating the template for this here blog to make it all html5. Turns out this is quite simple. It seems you can probably just replace your doctype with &#60;!DOCTYPE html&#62; and you&#8217;ve got yourself a [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/wordpress-themes-and-plugins/' rel='bookmark' title='Permanent Link: WordPress themes and plugins'>WordPress themes and plugins</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s hard not to think of nostuff.org and not think of blazing web standards.</p>
<p>So I had a go at updating the template for this here blog to make it all html5. Turns out this is quite simple.</p>
<p>It seems you can probably just replace your doctype with</p>
<pre id="line1">&lt;!DOCTYPE html&gt;</pre>
<p>and you&#8217;ve got yourself a html5 webpage.</p>
<p>The <a href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F">W3C validator proves it so</a>. From there I added some of the new section elements such as header, footer, nav, aside and article. It seems that these can apply to the page (i.e. the page&#8217;s footer) or a section (the footer of a blog post, where it shows tags and date published  etc). I used various sources on the web, via Google, including a few <a href="http://www.alistapart.com/topics/topic/html5/">articles</a>, and <a href="http://html5gallery.com/">sample sites</a>.</p>
<p>So nostuff mostly validates as html5 and makes use of some of the elements above, though this doesn&#8217;t affect anything visually at the moment (I think, I really don&#8217;t have much of a clue as to what I&#8217;m doing).</p>
<p>I&#8217;ve created a <a href="http://words.nostuff.org/wp-content/2010/08/greening-nostuff.tar.gz">gzip</a> file of the theme here. You&#8217;re welcome to download and use it, though it&#8217;s not really designed to be shared (includes my analytics/adsense codes etc).</p>
<div class='wp_likes' id='wp_likes_post-600'><a class='like' href="javascript:wp_likes.like(600);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(600);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fhtml5-and-nostuff%2F&amp;linkname=html5%20and%20nostuff"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/wordpress-themes-and-plugins/' rel='bookmark' title='Permanent Link: WordPress themes and plugins'>WordPress themes and plugins</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/html5-and-nostuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adverts that follow you</title>
		<link>http://www.nostuff.org/words/2010/adverts-that-follow-you/</link>
		<comments>http://www.nostuff.org/words/2010/adverts-that-follow-you/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 21:49:15 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[web and blogs]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=586</guid>
		<description><![CDATA[Now one of these days I will finally get my &#8216;moving flat&#8217; epic published, in the mean time you can read my how to buy a property guide. It really is worth every penny. Part of this process involves buying a sofa which doesn&#8217;t suck as much as my current sofa. Of course, I&#8217;m doing [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Now one of these days I will finally get my &#8216;moving flat&#8217; epic published, in the mean time you can read my <a href="http://chriskeene.posterous.com/now-you-too-can-worry-about-house-prices">how to buy a property guide</a>. It really is worth every penny.</p>
<p>Part of this process involves buying a sofa which doesn&#8217;t suck as much as my current sofa.</p>
<p>Of course, I&#8217;m doing this the proper way of procrastinating and constantly looking at websites and not deciding anything (look out for my exciting new book of the same name, the ultimate manager&#8217;s guide).</p>
<p>One of the sofa&#8217;s which was luckly enough to make the final rounds (i.e. got to perform in front of Simon Cowell and co), <a href="http://www.furniturevillage.co.uk/Inventory/Bedroom/Oscar-Sofa-Bed/3-seater-standard-sofa.aspx">was this one, called &#8211; cutely &#8211; Oscar</a>. Simple lines, modern look, sofa bed. From Furniture Village, which seems to be DFS&#8217; more mature cousin, though this perhaps doesn&#8217;t say too much.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/08/fv-Screen-shot-2010-0fur8-07-at-10.44.18.png"><img class="aligncenter size-medium wp-image-588" title="Furniture Village Oscar" src="http://www.nostuff.org/words/wp-content//2010/08/fv-Screen-shot-2010-0fur8-07-at-10.44.18-300x203.png" alt="" width="300" height="203" /></a></p>
<p>All fine and good.</p>
<p>Then the other day I visited Engadget.com, not a site I normally visit but a link had caught my eye on Twitter.</p>
<p>﻿</p>
<div id="attachment_587" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.nostuff.org/words/wp-content//2010/08/screen.png"><img class="size-medium wp-image-587" title="Engadget screenshot, with interesting add" src="http://www.nostuff.org/words/wp-content//2010/08/screen-300x229.png" alt="" width="300" height="229" /></a><p class="wp-caption-text">Engadget screenshot, with interesting add</p></div>
<p>Notice that ad? A bit like travelling to furthest Siberia, walking in to the dodgyist bar and finding your nan there, distinctly out of place. Click on the image for a lager version.</p>
<p>At the top of an American website about gadgets is an advert for a UK middle-of-the-road furniture store, advertising the exact sofa I had been considering for some time.</p>
<p>This was no coincidence.</p>
<p>Nor had they been using Alien technology to read my mind. I had visited the furniture site using the same laptop (and presumably same browser), a cookie and advertising system was at play here.</p>
<p>In fact my mind was made up when this evening I saw this.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/08/Screen-shot-2010-08-11-at-21.50.42.png"><img class="aligncenter size-medium wp-image-589" title="Time Magazine Advert" src="http://www.nostuff.org/words/wp-content//2010/08/Screen-shot-2010-08-11-at-21.50.42-300x207.png" alt="" width="300" height="207" /></a></p>
<p>This was on Time Magazine&#8217;s website (again a US publication), on a Photo Gallery about Afghan Women (<a href="http://www.time.com/time/world/article/0,8599,2007269,00.html">see this for background</a>, wonderful world).</p>
<p>It&#8217;s that cheeky little sofa again, this time popping up next to a repressive regime. You Guys!</p>
<p>Finally, notice on the red border of the ad, bottom right there is a little bulge, clicking on it&#8230;</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/08/Screen-shot-2010-08-11-at-21.51.23.png"><img class="aligncenter size-medium wp-image-590" title="Struq: Screen shot 2010-08-11 at 21.51.23" src="http://www.nostuff.org/words/wp-content//2010/08/Screen-shot-2010-08-11-at-21.51.23-300x177.png" alt="" width="300" height="177" /></a><a href="http://www.struq.com/consumer-opt-out/">http://www.struq.com/consumer-opt-out</a>/ &#8220;Totally personalised display ads&#8221;.</p>
<p>Does this freak me out. Probably should do, but at the moment it borders on fun, like most people my tastes and wants are diverse enough to create stupid juxtapositions (Serious News and Girls Aloud, Global Warming and fast cars). It becomes an issue when it goes beyond, &#8216;person x has looked at product y from company z so show advert to it&#8217;,and becomes one entity building a database of everything you view and do online.</p>
<p>What a scary vision. Think I&#8217;ll stick with what I know and just use Google and Facebook.</p>
<div class='wp_likes' id='wp_likes_post-586'><a class='like' href="javascript:wp_likes.like(586);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(586);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fadverts-that-follow-you%2F&amp;linkname=Adverts%20that%20follow%20you"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/adverts-that-follow-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ircount : update</title>
		<link>http://www.nostuff.org/words/2010/ircount-update/</link>
		<comments>http://www.nostuff.org/words/2010/ircount-update/#comments</comments>
		<pubDate>Sun, 30 May 2010 17:45:42 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[ircount]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[roar]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=584</guid>
		<description><![CDATA[One Sunday morning in January this year I got an email sent automatically from the webhosting company. It contained the output of the script that ran weekly, when all ran fine the script produced no output. When something went wrong the error messages were emailed to me. Judging by the length of the email something big had gone wrong. [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/ircount-new-location-new-functionality/' rel='bookmark' title='Permanent Link: ircount : new location, new functionality'>ircount : new location, new functionality</a></li>
<li><a href='http://www.nostuff.org/words/2009/ircount-repository-record-statistics/' rel='bookmark' title='Permanent Link: ircount : Repository Record Statistics'>ircount : Repository Record Statistics</a></li>
<li><a href='http://www.nostuff.org/words/2009/ircount-development/' rel='bookmark' title='Permanent Link: ircount development'>ircount development</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One Sunday morning in January this year I got an email sent automatically from the webhosting company. It contained the output of the script that ran weekly, when all ran fine the script produced no output. When something went wrong the error messages were emailed to me. Judging by the length of the email something big had gone wrong.</p>
<p>The script collected data from http://roar.eprints.org/ &#8211; to be used as this weeks &#8216;number of records&#8217; for each repository.</p>
<p>The reason became clear quickly. A major revamp to ROAR had just been launch, showing off a new interface, which used the Eprints software as a platform (essential a repository or repositories). This was a great leap forward but unfortunately removed the simple text file I used to collect the data, and what was more, the IDs for each IR had changed.</p>
<p>I finally got around to fixing this in May. The most fiddly bit was linking the data I collected now with the data I already had. This involved matching URLs and repository names.</p>
<p>Anyways. Things should be more or less as they were. A few little tweaks have been added. A few bugs still remain.</p>
<p>As ever you can view the code and changes here: <a href="http://trac.nostuff.org/ircount/browser/trunk">http://trac.nostuff.org/ircount/browser/trunk</a></p>
<p>And checkout the svn here: <a href="http://svn.nostuff.org/ircount/">http://svn.nostuff.org/ircount/</a></p>
<p>ircount can be found here: <a href="http://www.nostuff.org/ircount/">http://www.nostuff.org/ircount/</a></p>
<div class='wp_likes' id='wp_likes_post-584'><a class='like' href="javascript:wp_likes.like(584);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(584);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fircount-update%2F&amp;linkname=ircount%20%3A%20update"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/ircount-new-location-new-functionality/' rel='bookmark' title='Permanent Link: ircount : new location, new functionality'>ircount : new location, new functionality</a></li>
<li><a href='http://www.nostuff.org/words/2009/ircount-repository-record-statistics/' rel='bookmark' title='Permanent Link: ircount : Repository Record Statistics'>ircount : Repository Record Statistics</a></li>
<li><a href='http://www.nostuff.org/words/2009/ircount-development/' rel='bookmark' title='Permanent Link: ircount development'>ircount development</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/ircount-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summon @ Huddersfield</title>
		<link>http://www.nostuff.org/words/2010/summon-huddersfield/</link>
		<comments>http://www.nostuff.org/words/2010/summon-huddersfield/#comments</comments>
		<pubDate>Tue, 25 May 2010 21:38:05 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[catalogue]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[jisclms]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[resource discovery]]></category>
		<category><![CDATA[summon]]></category>
		<category><![CDATA[summon4hn]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=562</guid>
		<description><![CDATA[I attended an event at Huddersfield looking at their and Northumberland&#8217;s experience of Summon. http://library.hud.ac.uk/blogs/summon4hn/?p=22 These are my rough notes. Take all with a pinch of salt. The day reaffirmed my view of Summon, it is ground breaking in the Library market, and with no major stumbling blocks. They are very aware that coverage is key [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/' rel='bookmark' title='Permanent Link: Library search/discovery apps : intro'>Library search/discovery apps : intro</a></li>
<li><a href='http://www.nostuff.org/words/2010/library-catalogues-need-to-cater-for-light-weight-discovery-clients/' rel='bookmark' title='Permanent Link: Library Catalogues need to cater for light-weight discovery clients'>Library Catalogues need to cater for light-weight discovery clients</a></li>
<li><a href='http://www.nostuff.org/words/2009/library_catalogues_changing_model/' rel='bookmark' title='Permanent Link: Library catalogues, search systems and data'>Library catalogues, search systems and data</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I attended an event at Huddersfield looking at their and Northumberland&#8217;s experience of Summon. <a href="http://library.hud.ac.uk/blogs/summon4hn/?p=22">http://library.hud.ac.uk/blogs/summon4hn/?p=22</a> These are my rough notes. Take all with a pinch of salt.</p>
<p>The day reaffirmed my view of Summon, it is ground breaking in the Library market, and with no major stumbling blocks. They are very aware that coverage is key and seem to be adding items and publishers. It searches items that a organisation has access to (though users can tick a option to search all items in the kb, not just those they can access). They have good metadata, merging records from a number of sources, and making use of subject headings (to refine or exclude from the search).</p>
<p>There was general consensus that it made sense to maintain only one Knowledge-base, and therefore in this case, using 360 Link if implementing Summon. There was also general dissatisfaction for federated search tools.</p>
<p>To me, and I must stress this is a personal view, there are two products that I have seen which are worth future consideration: Summon and Primo. Summon&#8217;s strength is in the e-resources realm and as a resource discovery service. Primo&#8217;s strength, while offering these features/services, is as a OPAC (with My account features etc) and personalisation (tags, lists). Both products are in a stage of rapid development.</p>
<p>In my view, one decision to implement one of these products &#8211; which ever it is &#8211;  will have a chain reaction. And I think this is an important point. Using Sussex as an example, it currently has Aquabrowser (as a Library Catalogue), Talis Prism 2 (for Borrower Account, reservations, renewals), SFX (Link Resolver) and Metalib (Federated Search).</p>
<p>Two example scenarios (and I stress there are other products on the market and this is just my personal immediate thoughts):</p>
<p><strong>One:</strong> Let&#8217;s say Sussex first decide to replace Metalib with Summon. They would probably cancel Metalib (Summon replaces it). Probably move from SFX to 360 Linker (one Knowledge base). May then wish to review our Library Catalogue in a years time: Primo is no longer on the cards (too much cross over with Summon, which we now already have), so they either stick with Aquabrowser (but the new SaaS v3 release) or perhaps move to Prism 3 (Talis&#8217; new-ish SaaS Catalogue). Sussex would end up with no Ex Libris products, but would potentially subscribe to several Serial Solutions products.</p>
<p><strong>Two:</strong> Let&#8217;s say Sussex decide to replace Aquabrowser with Primo (which acts more like a Catalogue than AB). They cancel Aquabrowser. Primo would (in addition to being the primary OPAC) have Summon-like functionality, allowing users to search a large database of items instantly, with relevance and facets. So Summon would not be an option. Stick with SFX (Metalib would be a side feature of Primo, with a Primo-like interface). With a number of Ex Libris products they would want to keep an eye on the Ex Libris URM (next genration LMS), they would have no Serials Solutions products.</p>
<p>The following are some notes from the day:</p>
<p><strong>Sue White</strong> from Huddersfield Library started the day, saying it is probably the best decision they have ever made.</p>
<div><strong>Helle Lauridsen</strong> from Serials Solutions Europe started with a basic introduction of what it is and what their key aims were (i.e. be like google).</div>
<div>She emphasised that all content (different types and publishers) is treated equally.</div>
<div>
<p>&#8220;better metadata for better findability&#8221;. merge metadata elements. Use SerialSolutions, urichs, Medline, crossref to create the best record. &#8216;record becomes incredibly rich&#8217;.</p>
<p>She went through all the new features added in the last 12 months, including a notable size in the knowledge base. &#8216;dials&#8217; to play with relevancy of different fields. Recommender service coming.</p>
<p>Shows a list of example publishers, included many familiar names, have just signed with Jstor. She showed increase in &#8216;click throughs&#8217; for particular publishers, the biggest were for jstor and ScienceDirect. Newspapers have proved to be very popular.</p>
<p>There is an advanced search. There has been negative feedback &#8216;please bring back title/author search&#8217;.</p>
<p><strong>Eileen Hiller</strong> from Huddersfield talked about product selection. She mentioned having people from across the Library and campus on the selection/implementation group, getting student feedback and talking to academics. They used good feedback in their communications (e.g. in the student newspaper and their blog). Student feedback questionnaire has been useful.</p>
<p><strong>Dave Pattern</strong> talks about the history of e-resource access at Huddersfield, started with a online word document and then a onenote version. Metalib was slow, and they found more students using Google Scholar than metalib.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/05/IMG_0220.jpg"><img class="alignright size-medium wp-image-564" title="Huddersfield Summon Timeline" src="http://www.nostuff.org/words/wp-content//2010/05/IMG_0220-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>They started with a blank sheet of paper and as a group thrashed out their ideal product, without knowing about Summon. First class search engine, &#8216;one stop shop&#8217;, improved systems management, etc. Invited a number of suppliers in, showed them the vision and asked them to present their product against it, Huddersfield rated each one against The Vision. Report to Library Management Group. Summon was the clear fit.</p>
<p>Implementation: Starts off with a US conference call. MARC21 mapping spreadsheet, they went with defaults. they add a unique id to the 999|a field.</p>
<p>Be relistic with early implementation, e.g. lib cat and repository are only two local databases. Be aware of when you LMS deletes things flagged for deletion. Huddersfield had early issues with this.</p>
<p>Do you want your whole catalogue on Summon? ebook/ejournal records etc.</p>
<p>Summon originally screenscraped for holdings/availability (aquabrowser does this for Sussex) could bring the traditional catalogue to its knees.</p>
<p>Moving to 360 Link makes you life much easier if moving to Summon, only one Knowledgebase to maintain.</p>
<p>They asked Elsevier to create a custom file for their sciencedirect holdings to upload to 360.</p>
<p>Huddersfield found activating journals in 360 a quick process.</p>
<p>360 API more open than Summon API. for customers only. You can basically build your own interface. Virginia using it to produce a mobile friendly version of their catalogue. Hud used it to identify problem MARC records.</p>
<p>94% of Huddersfield subscribed journals are on Summon (No agreement with the following: BSP 80%, Sciencedirect, Jstor&#8230; Westlaw/LexisNexis 55%). They now have a agreement with LexisNexis and Jstor. In discussion with Elsevier. They manage to have this level of coverage for these reources by using other sources for the data (e.g. publishers for Business source premier and A&amp;I databases for ScienceDirect).</p>
<p>Dummy journal records for journal titles (print and e) so that they are easily found on Summon. <a href="http://hud.summon.serialssolutions.com/search?s.q=journal+of+clinical+nursing">See this example</a>.</p>
<p>Can recommend specific resources (&#8216;you might be interested in ACM Digital Library&#8217;), can be useful for subjects like Law.</p>
<p>Summon at Hudderfield now has 60 million items (see <a href="http://hud.summon.serialssolutions.com/search?s.q=">left hand side</a> for breakdown),  indexed. Judging by <a href="http://hud.summon.serialssolutions.com/search?s.cmd=setHoldingsOnly(false)">this</a> Summon seems to have 575 million items indexed in total.</p>
<p>Survey results: Users found screens easy to understand. many (43%) refined their results. Dave thinks that now Google has facets on the left may increase facet usage. 82% for results were relevant to their research topics.</p>
<p>They will go live in July. Currently working on training materials and staff training. Considering adding archives and Special Collections in the future.</p>
<p><strong>Annette Coates</strong>, Digital Services Manager, Northumbria Uni.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/05/IMG_0221.jpg"><img class="alignright size-medium wp-image-565" title="Anette" src="http://www.nostuff.org/words/wp-content//2010/05/IMG_0221-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>She gave a history of e-resource provision, 2005 onwards: webfeat (they brand it nora, which they are keeping for Summon). &#8216;We have the same issues with federated search that everyone else has&#8217;. Both Northumbria and Huddersfield are keeping a seperate A-Z list for e-resources (N are using libguides, like Sussex).</p>
<p>User Evaluation: is it improving the user&#8217;s search experience? how can we improve it futher? NORA user survey. Timing important, Getting people involved, Incentives, Capturing the session. They will use all the user feedback in a number of ways, &#8216;triangulate to ensure depth&#8217;, use good quotes as a marketing tool (including to lib staff), feedback good/bad to Serials Solutions, use it to improve the way they show it to others&#8230;</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/05/IMG_0222.jpg"><img class="alignright size-medium wp-image-566" title="Northumbria Summon implementation timeline" src="http://www.nostuff.org/words/wp-content//2010/05/IMG_0222-300x225.jpg" alt="Northumbria Summon implementation timeline" width="300" height="225" /></a></p>
<p><strong>Q&amp;A</strong></p>
<p>Focus groups, guidance?<br />
very little guidance in focus group, and let them play with it</p>
<p>What is the position regarding authentication?</p>
<p>N use citrix. Will be Shibolising their 360link.</p>
<p>H channeling as much as possible through ezproxy. don&#8217;t have shib. promote usage though usage portal, which authenticates them.</p>
<p>No shibboleth integration at the moment.</p>
<p>(discussion about how summon may mean you can stop trying to add journal records, and can raise lots of questions&#8230; should summon be the interface on your catalogue kiosks).</p>
<p>You can send list of ISSNs to Serial Solutions to see matches, to find out what your coverage would be.</p>
<p>There was a very vague indication that OPAC integration may be on the cards for Summon. This is an important thing IMO.</p>
<p>Number of comments about Library staff being far more critical than users.</p>
<p>Summon ingesting stuff (MARC) from LMS 4 times a day. Using DLF standard for getting holdings data from LMS. (this is a good thing). Huddersfield wrote the DLF protocol code.</p>
<p>Q: Are SerialSolutions (proquest) struggling to get metadata from their direct competitors?</p>
<p>A: SS: Ebsco the main one, but we go direct to publishers. And for Elsevier, able to index it from elsewhere (and in talks with them).</p>
<p>Q: lexis and westlaw, where only 50% coverage, how do students know to go elsewhere (i.e. direct to the resource)?</p>
<p>A: for law students point them to e-resource pages (wiki) as well as summon to promote direct access to them. also (and perhaps more importantly) will have recommender which can recommend lexis/westlaw for law searches.</p>
<p>Q: can you search the whole summon kb, not just those things we subscribe to?<br />
yes</p>
<p>Q: Are there personalisation options? (saving lists, items, marking records)<br />
May come in the future, summon are thinking about it.</p>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fsummon-huddersfield%2F&amp;linkname=Summon%20%40%20Huddersfield"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/' rel='bookmark' title='Permanent Link: Library search/discovery apps : intro'>Library search/discovery apps : intro</a></li>
<li><a href='http://www.nostuff.org/words/2010/library-catalogues-need-to-cater-for-light-weight-discovery-clients/' rel='bookmark' title='Permanent Link: Library Catalogues need to cater for light-weight discovery clients'>Library Catalogues need to cater for light-weight discovery clients</a></li>
<li><a href='http://www.nostuff.org/words/2009/library_catalogues_changing_model/' rel='bookmark' title='Permanent Link: Library catalogues, search systems and data'>Library catalogues, search systems and data</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/summon-huddersfield/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Political reform : some quick thoughts</title>
		<link>http://www.nostuff.org/words/2010/political-reform-some-quick-thoughts/</link>
		<comments>http://www.nostuff.org/words/2010/political-reform-some-quick-thoughts/#comments</comments>
		<pubDate>Sat, 15 May 2010 17:57:24 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[politics and current affairs]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[pr]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=556</guid>
		<description><![CDATA[Suddenly PR is in the limelight and seems to be getting support from those disaffected by politics in the UK. I&#8217;ve long been pondering about how it is best to govern this country. Mainly about where power lies: The UK, nations, regions, counties, local councils, etc. Some thoughts: We need a Constitution. No &#8220;we&#8217;ve already [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2005/davis-and-keene-wants-england-only-voting/' rel='bookmark' title='Permanent Link: Davis (and Keene) wants England-only voting'>Davis (and Keene) wants England-only voting</a></li>
<li><a href='http://www.nostuff.org/words/2010/voting-time/' rel='bookmark' title='Permanent Link: Voting time'>Voting time</a></li>
<li><a href='http://www.nostuff.org/words/2005/weve-got-a-what/' rel='bookmark' title='Permanent Link: We&#8217;ve got a what?'>We&#8217;ve got a what?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div>
<p>Suddenly PR is in the limelight and seems to be getting support from those disaffected by politics in the UK. I&#8217;ve long been pondering about how it is best to govern this country. Mainly about where power lies: The UK, nations, regions, counties, local councils, etc.</p>
<div>Some thoughts:</div>
<ul>
<li>We need a Constitution. No &#8220;we&#8217;ve already got the Magna Carta&#8221; is not a valid answer.</li>
<li>The Lords needs thinking about. Almost removing hereditary piers has been a massive step. An elected upper chamber is the obvious solution. Though I&#8217;m not 100% behind it. Voting brings in a whole range of cons, pandering to popular opinion, short term-ism, and attracting those who want to be &#8216;politicians&#8217;. The current setup, for all it&#8217;s faults, avoids some of this. Appointing &#8216;good people&#8217; to a upper house has merits and when it works it ensures a group of generally wise people with varied experience and skills can debate and pass legislation. The problem with elected members is that only a small set of people want to stand for election, canvas for votes, etc&#8230; and they generally are not the best for the job.</li>
<li>However, &#8216;who selects who sits in the Lords&#8217;, and &#8216;how do they ensure a balanced upper house&#8217; are questions that are hard to answer, and maybe an elected upper house is the only workable solution. If so, I would want long terms (10 years for example) to avoid short term thinking, and measures to avoid whips and parties dictating free thinking.</li>
<li>While all those Westminster traditions are cute (the &#8216;other house&#8217;, &#8216;my Honorable friend&#8217;, divisions rather than instant votes), they actually stop the important process of good law making. They need reforming. The Digital Economy bill was a good example of this. While those (there was only 40 or so) in the house were almost universally (and across party lines) against various points and the bill in general, when it went to a vote (division), hundreds emerged from the bars etc to vote as the whips told them to. They had no idea what had been discussed. They may not have even read the bill, but vote as they were told they did. An instant vote taken in the house would have avoided this.</li>
<li>We need clear and simple rules about how the nations are given power. Westminster being responsible for the UK and England is stupid and broken. For example when the Treasury was faced with an urgent need to cut spending they looked at what they could cut. This included<em> UK spending</em> (Defence, International Development, national policing, etc) and <em>English services</em> (Education, NHS England, etc). Defence couldn&#8217;t be cut, we are still fighting a Blair war, and we have promised to ring fence International Development. But&#8230; what about the English Higher Education budget. That could be cut. And few would notice. Scottish HE funding is decided by the Scottish Parliament, whose budget is set by formula, so wasn&#8217;t an option to be included in the cuts (this is not a Scottish dig, another time it will be their formula &#8216;tweaked&#8217; for the worse, the point is this happen at different times in different ways for the two nations). To me this highlights the problem well of our mixed up way of running the UK. Each nation should have the same local powers&#8230;.</li>
<li>Yes that means a English Parliament. Yes that would come with costs.</li>
<li>Fixed term elections are an interesting idea. It would avoid the advantage a ruling party has of choosing the best time for them to call an election, and bring about an element of certainty of when election will take place.</li>
<li>Voting is difficult at the moment as we are effectively voting on so many things. Who will make a good Prime Minister, Which party has the best policies, which party is best placed to run the country, which local candidate is best to serve your local needs, which local candidate has the best policies. I&#8217;m not sure what the answer is&#8230;</li>
<li>&#8230;Maybe we need to elect those to run the executive separately from electing those to sit in the House of Commons. Would be a very big change but worth a ponder.</li>
<li>Obviously PR is on the cards. It has pros and cons but I think now the Pros massively out weigh the cons. The current system is simple &#8211; in a good way. Who ever gets the most votes in my area gets the seat. Party with most seats runs the country. However, it seems the country is moving away from a two party system (the two main parties now receive far less of the over all vote than they used to), and therefore this system is representing the voting habits of the nation less and less. Other countries have moved to PR quite successful in the last few years. Scandinavia, New Zealand and Germany seem to do it well. We  can learn from Israel and Italy&#8217;s mistakes.</li>
<li>For me, the current system has another flaw. The party that has the most MPs (who mainly vote as the whips tell them to) runs the executive (which creates the Bills and controls the whips), Makes the whole parliamentary process somewhat pointless (rubber stamping).</li>
<li>I&#8217;m actually quite optimistic about this coalition government. While no tory fan, the two parties have compromised mainly on giving up their most extreme ideas, the Lib Dems make Tories more socially responsible, the Tories ensure the Lib Dems do not follow some of their more wacky ideas. It does actually make democracy work very well. By definition, the policy areas they agree on (e.g. scraping ID cards and the associated databases) are those which most people voted for (anyone voting LD/Tory voted for a party with that policy), are the things that got through the negotiations with ease. Surely a good thing.</li>
</ul>
</div>
<div class='wp_likes' id='wp_likes_post-556'><a class='like' href="javascript:wp_likes.like(556);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(556);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fpolitical-reform-some-quick-thoughts%2F&amp;linkname=Political%20reform%20%3A%20some%20quick%20thoughts"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2005/davis-and-keene-wants-england-only-voting/' rel='bookmark' title='Permanent Link: Davis (and Keene) wants England-only voting'>Davis (and Keene) wants England-only voting</a></li>
<li><a href='http://www.nostuff.org/words/2010/voting-time/' rel='bookmark' title='Permanent Link: Voting time'>Voting time</a></li>
<li><a href='http://www.nostuff.org/words/2005/weve-got-a-what/' rel='bookmark' title='Permanent Link: We&#8217;ve got a what?'>We&#8217;ve got a what?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/political-reform-some-quick-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Voting time</title>
		<link>http://www.nostuff.org/words/2010/voting-time/</link>
		<comments>http://www.nostuff.org/words/2010/voting-time/#comments</comments>
		<pubDate>Sat, 08 May 2010 19:04:43 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[politics and current affairs]]></category>
		<category><![CDATA[ge2010]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=551</guid>
		<description><![CDATA[I was hoping to write something insightful for the election. Time (well, laziness) has meant I shall spew some random thoughts instead&#8230; After the election has happened. Things that are important to me: Civil Liberties, privacy, and certain fundamentals of justice not being messed with on a whim. Reforming politics and government, in a slow and discussed [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2010/political-reform-some-quick-thoughts/' rel='bookmark' title='Permanent Link: Political reform : some quick thoughts'>Political reform : some quick thoughts</a></li>
<li><a href='http://www.nostuff.org/words/2005/davis-and-keene-wants-england-only-voting/' rel='bookmark' title='Permanent Link: Davis (and Keene) wants England-only voting'>Davis (and Keene) wants England-only voting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I was hoping to write something insightful for the election. Time (well, laziness) has meant I shall spew some random thoughts instead&#8230; After the election has happened.</p>
<p>Things that are important to me:</p>
<ul>
<li><strong>Civil Liberties</strong>, privacy, and certain fundamentals of justice not being messed with on a whim.</li>
<li><strong>Reforming politics</strong> and government, in a slow and discussed manner (not Blair-boy&#8217;s &#8216;hey I&#8217;m so bored of a Lord Chancellor, lets scrape it&#8230;. who&#8217;s turn is it on the Playstation?&#8217;). I&#8217;m actually not convinced that an elected upper house is the answer, but if it is, it needs to avoid the mistakes of whips, parties, and short term thinking. <strong>PR</strong> must surely be a better system than first past the post.</li>
<li>This includes a discussion on where we want discussions to be made, nationally or locally, etc. But this requires a public which understands that &#8216;local decisions by local people&#8217; and &#8216;post code lottery&#8217; are one and the same (which is used depends if the newspaper agrees with it or not).</li>
<li>A <strong>Strong economy</strong>, which encourages small businesses (but with fair rules to protect and give employees rights&#8230; they are not all &#8216;pointless red tape&#8217;)</li>
<li>A strong economy includes a strong financial sector. But <em><strong>carefully</strong></em> regulated to protect citizens from their mistakes and excess.</li>
<li>A strong safety net for those (and there are many) who need it, whether it be age, ill health, disability, hard times or bad luck.</li>
<li>Review of <strong>copyright and libel</strong> so they are fit for the 21st century.</li>
<li>Strong planning laws to ensure we have a quality built-environment. but with progressive and new ideas (such as shared space streets, like the excellent New Street in Brighton). Quality public buildings and spaces (such as St Pancras Station and Wembley Stadium) are important.</li>
<li><strong>Education</strong>. I don&#8217;t have any answers but it needs to get better. Teachers need to be given space to teach, but in return they need to be good (not all are fit for the job). Endless government schemes don&#8217;t help, but nor do unions which seem to be simply against change.</li>
<li>Ideas along the lines of &#8216;some people misuse X, therefore lets stop &#8211; and stigmatise X&#8217; are generally a bad idea. Examples of X are &#8216;benefits&#8217; and &#8216;not being married (and have kids)&#8217;.</li>
<li><strong>High speed trains</strong> are needed, to discourage air/car use, and to let people travel with ease, and to help move away from a economy focused around London.While Air/Road use should not be promoted, and in the long run other ways of living/working should be nurtured to avoid the need for travel, there is a need for some road improvements and probably (I regret) an extra runway in the South East England in the decade or so.</li>
<li>We need an <strong>enlightened immigration policy</strong>. Though we all acknowledge open borders are not suitable for this small country (I am genuinely at a loss why people manage to illegally enter the <a href="http://en.wikipedia.org/wiki/Schengen_Agreement">Schengen Zone</a> &#8211; in say Italy or Eastern Europe &#8211; and then rather head for prosperous Germany or beautiful France risk their lives on the bottom of a train trying to get in to the grey UK!), we do not want to be a place where others can not come to work, or escape from prosecution. Students and educated workers bring so much benefit to this country.</li>
<li>&#8216;Heath and Safety gone mad&#8217; is the refrain from the right of politics, and those who dislike the state interfering with their lives. This is easy to dismiss as the usual vile of a Daily Mail reader. Though there is argument that some things need to be rolled back. If people do really stupid things then that is their fault (obvious exceptions for children and those with learning difficulties). Vicarious responsibility can be a problem. Of course much Health and Safety law and practice is there for good reason but there are areas that need to be reviewed.</li>
<li>Working together with other <strong>European</strong> countries makes sense, we have a lot in common, shared values, and common standards benefit us all. But there are areas of the EU which seem wasteful, undemocratic, unaccountable, etc. And these need to be addressed. There needs to be clear lines of what and where the EU can legislate on.</li>
<li><strong>Universities</strong> can be great for bringing in high tech companies, knowledge workers, and driving a SciTech, Medical, Creative industries economy. I&#8217;m not saying the tax payer should foot 100% of their bill, but cut backs have long term negative effects on a country.</li>
</ul>
<p>This is not a full list, but just some of the ideas that came to mind. Feel free to comment.</p>
<div class='wp_likes' id='wp_likes_post-551'><a class='like' href="javascript:wp_likes.like(551);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(551);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fvoting-time%2F&amp;linkname=Voting%20time"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2010/political-reform-some-quick-thoughts/' rel='bookmark' title='Permanent Link: Political reform : some quick thoughts'>Political reform : some quick thoughts</a></li>
<li><a href='http://www.nostuff.org/words/2005/davis-and-keene-wants-england-only-voting/' rel='bookmark' title='Permanent Link: Davis (and Keene) wants England-only voting'>Davis (and Keene) wants England-only voting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/voting-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nick Clegg&#8217;s Fault. Beware the REAL Nasty.</title>
		<link>http://www.nostuff.org/words/2010/nick-cleggs-fault-beware-the-real-nasty/</link>
		<comments>http://www.nostuff.org/words/2010/nick-cleggs-fault-beware-the-real-nasty/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 13:03:19 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[politics and current affairs]]></category>
		<category><![CDATA[ge2010]]></category>
		<category><![CDATA[nickcleggsfault]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/2010/nick-cleggs-fault-beware-the-real-nasty/</guid>
		<description><![CDATA[Tonight is the second party leaders debate. As most in the UK know, Nick Clegg came out of the last one well, using a underhand tactic of using intelligence and good sense to answer the questions. #iagreewithnick immediately became a twitter trending topic. The upshot of this is that the Lib Dems now have the [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/naughty-boys-and-lots-of-sheep/' rel='bookmark' title='Permanent Link: naughty boys and lots of sheep'>naughty boys and lots of sheep</a></li>
<li><a href='http://www.nostuff.org/words/2009/people-power/' rel='bookmark' title='Permanent Link: People power : twitter is highlighting &#038; affecting important issues.'>People power : twitter is highlighting &#038; affecting important issues.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Tonight is the second party leaders debate. As most in the UK know, Nick Clegg came out of the last one well, using a underhand tactic of using intelligence and good sense to answer the questions. <a href="http://www.twapperkeeper.com/hashtag/iagreewithnick" target="_blank">#iagreewithnick</a> immediately became a twitter trending topic.</p>
<p>The upshot of this is that the Lib Dems now have the slight chance that they will come a respectable third in the forthcoming election, instead of just a distant third. Obviously this is a matter of national emergency.</p>
<p>Luckily we have the great British press here to give an impartial view from the side. Especially so close to a general election. They speak the voice of the people. And act as the fourth pillar of democracy.</p>
<p>So on this important day, as the leaders take to the TV studio once again, with the sure knowledge the leaders of the two main parties are well primed in to stop this ‘Nick thing’, the papers are taking a reflective approach…</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb.png" border="0" alt="image" width="728" height="740" /></a></p>
<p>We start with the Express. They tackle the emergency by having the lead story, and the two main News stories dedicated to the serious issue at hand.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image1.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb1.png" border="0" alt="image" width="624" height="606" /></a></p>
<p>The Sun too decides the Nick of Doom is worth the lead story. They also manage to fit in the time of the debate, a welcome bit of advertising for which ever TV channel is doing it tonight (some company called Sky maybe, they’ll love the free advertising from these editorially independent chaps!).</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image2.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb2.png" border="0" alt="image" width="587" height="484" /></a></p>
<p>The Telegraph goes for a modest ‘only the lead story’ approach. No. hang on, what’s that on the bottom right there, I see Andrew Gilligan, everyone’s favourite Liberal-left columnist does some important research. And who could have foreseen the timing!</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image3.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb3.png" border="0" alt="image" width="363" height="794" /></a></p>
<p>Finally we have the Mail. Actually it looks quite tame for them. Just four articles, well, actually the FIRST four articles on their site, 222 comments and some video. They avoided any sort of emotionally charged piece by bringing up the Nazis and Hitler (but remember he wasn’t <em><a href="http://www.telegraph.co.uk/news/uknews/1484647/When-Rothermere-urged-Hitler-to-invade-Romania.html" target="_blank">all bad</a></em>).</p>
<p>But then I found a few more, in a novel idea of having more articles further down the page (who’d thought).</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image4.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb4.png" border="0" alt="image" width="652" height="488" /></a></p>
<p><a href="http://www.dailymail.co.uk/news/election/article-1267921/GENERAL-ELECTION-2010-Nick-Clegg-Nazi-slur-Britain.html">http://www.dailymail.co.uk/news/election/article-1267921/GENERAL-ELECTION-2010-Nick-Clegg-Nazi-slur-Britain.html</a></p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image5.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb5.png" border="0" alt="image" width="644" height="420" /></a></p>
<p><a href="http://www.dailymail.co.uk/debate/article-1267912/General-Election-2010-Liberal-Democrats-dirty-tricks-real-nasty-party.html">http://www.dailymail.co.uk/debate/article-1267912/General-Election-2010-Liberal-Democrats-dirty-tricks-real-nasty-party.html</a></p>
<p>Lib Dems were the evil ones all along. Who Knew????</p>
<p>It’s like the fairground manager from Scooby-Doo all over again.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image6.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb6.png" border="0" alt="image" width="644" height="449" /></a></p>
<p><a href="http://www.dailymail.co.uk/news/election/article-1267873/GENERAL-ELECTION-2010-Nick-Clegg-received-donations-directly-bank-account.html">http://www.dailymail.co.uk/news/election/article-1267873/GENERAL-ELECTION-2010-Nick-Clegg-received-donations-directly-bank-account.html</a></p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image7.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb7.png" border="0" alt="image" width="578" height="484" /></a></p>
<p><a href="http://www.dailymail.co.uk/news/election/article-1267835/General-Election-2010-Lib-Dem-MPs-told-milk-expenses-leaks-reveal.html">http://www.dailymail.co.uk/news/election/article-1267835/General-Election-2010-Lib-Dem-MPs-told-milk-expenses-leaks-reveal.html</a></p>
<p>That man on the right looks dodgy (and by dodgy I mean Working Class, <em>obviously</em>). God, can you imagine if the whole of parliament was fiddling their expenses.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image8.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb8.png" border="0" alt="image" width="344" height="484" /></a></p>
<p><a href="http://hitchensblog.mailonsunday.co.uk/2010/04/how-to-hang-a-parliament.html">http://hitchensblog.mailonsunday.co.uk/2010/04/how-to-hang-a-parliament.html</a></p>
<p>In fairness (members of the press, <a href="http://www.google.co.uk/dictionary?aq=f&amp;langpair=en|en&amp;hl=en&amp;q=fairness" target="_blank">click here</a> to help sort out your confusion), this is just about a Hung Parliament rather than how evil Nick is.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/04/image9.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nostuff.org/words/wp-content//2010/04/image_thumb9.png" border="0" alt="image" width="471" height="484" /></a></p>
<p><a href="http://www.dailymail.co.uk/news/election/article-1267839/How-Nick-Clegg-prepared-TV-debate-Sky-presenter-tells-talk-public-like-year-olds.html">http://www.dailymail.co.uk/news/election/article-1267839/How-Nick-Clegg-prepared-TV-debate-Sky-presenter-tells-talk-public-like-year-olds.html</a></p>
<p>No wonder the public like him. He talks to them like they are idiots. Which of course they are!</p>
<p>So that’s six articles from the Mail, all published today, 22nd (except the blog post, posted yesterday).</p>
<p>It’s not just the press who are alerted to his evils. Twitter too has done its bit: <a href="http://www.twapperkeeper.com/hashtag/nickcleggsfault">http://www.twapperkeeper.com/hashtag/nickcleggsfault</a></p>
<p>Finally. Serious bit… If you want decent news about the UK (or, for you crazy liberals, the rest of the world). Subscribe to <a href="http://www.economist.com/" target="_blank">The Economist</a>, and also read the <a href="http://www.nytimes.com/pages/world/europe/index.html" target="_blank">New York Times Europe sectio</a>n. Maybe we could have papers like that.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fnick-cleggs-fault-beware-the-real-nasty%2F&amp;linkname=Nick%20Clegg%26rsquo%3Bs%20Fault.%20Beware%20the%20REAL%20Nasty."><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/naughty-boys-and-lots-of-sheep/' rel='bookmark' title='Permanent Link: naughty boys and lots of sheep'>naughty boys and lots of sheep</a></li>
<li><a href='http://www.nostuff.org/words/2009/people-power/' rel='bookmark' title='Permanent Link: People power : twitter is highlighting &#038; affecting important issues.'>People power : twitter is highlighting &#038; affecting important issues.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/nick-cleggs-fault-beware-the-real-nasty/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mystery Solved</title>
		<link>http://www.nostuff.org/words/2010/mystery-solved/</link>
		<comments>http://www.nostuff.org/words/2010/mystery-solved/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 11:51:19 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[web and blogs]]></category>
		<category><![CDATA[aquabrowser]]></category>
		<category><![CDATA[catalogue]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[you need this website]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/2010/mystery-solved/</guid>
		<description><![CDATA[We recently (well, last summer) launched Aquabrowser as our main library catalogue. We provided a feedback link for people to comment on the new interface, as we were keen to pick up on functionality it lacked or issues we may not have thought off. You can see the feedback link on the green bar on [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>We recently (well, last summer) launched <a href="http://www.medialab.nl/" target="_blank">Aquabrowser</a> as our main library catalogue. We provided a feedback link for people to comment on the new interface, as we were keen to pick up on functionality it lacked or issues we may not have thought off. You can see the feedback link on the green bar on the right, it asks the user to login, and then provides a feedback form to leave a message. <span id="more-518"></span></p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/03/libcatfeedback1.jpg"><img style="display: inline; border-width: 0px;" title="libcatfeedback1" src="http://www.nostuff.org/words/wp-content//2010/03/libcatfeedback1_thumb.jpg" border="0" alt="libcatfeedback1" width="644" height="278" /></a></p>
<p>We started to get a lot of feedback. We have feedback links on most web services we run and normally would get no more than one a year. What’s more many left one word responses, sometimes gibberish.</p>
<p>This was strange. The link was quite discrete. Why would people follow the link, sign-in and then just leave a few words, if any? why click the link in the first place. Even stranger, some left short cryptic messages along the lines that they were asked/forced to do it. Why? And by Whom?!</p>
<p>Still they came in, not huge amount but one or two a day. We even ask a few people why they left a message of random characters but got no answer.</p>
<p>Perhaps there was a link elsewhere on the web? We added something to the feedback form so that it tried to include the email it sent us the Referring page URL. This only semi worked as the authentication page (outside of our control) was in the middle, but didn’t throw up any clues.</p>
<p>It was frustrating, clearly something was making people follow this link, and continue to complete the page. Why?</p>
<p>It was during another batch of emails coming though in in January that again I tried asking people out of interest why they provided us with feedback. At last someone answered; they were just trying to renew their books and it came up.</p>
<p>This didn’t make sense. The few links to ‘My Account’ were clearly labelled and they were no where near to the feedback link. These were normal static links, no special code of javascript. They are on different servers and systems. How could a large number of people end up at our feedback page?</p>
<p>I thanked the user for her response, and then asked if they could explain a bit more. They confirmed they just clicked on the My Account link on the top left of the screen. Impossible!</p>
<p>I can’t quite explain the next line of thought, but it was something to do with the links being far away from each other. I tried resizing my browser. This happened:</p>
<p><a href="http://www.nostuff.org/words/wp-content//2010/03/feedbacklibcat.jpg"><img style="display: inline; border-width: 0px;" title="feedbacklibcat" src="http://www.nostuff.org/words/wp-content//2010/03/feedbacklibcat_thumb.jpg" border="0" alt="feedbacklibcat" width="480" height="413" /></a></p>
<p>It’s hard to spot. The two links on the far right have wrapped around on the green bar, they are almost unseen.</p>
<p>Just underneath the ‘My Account’ link you can see the tops of the tall letters for the Feedback link. The penny drops! It seems so obvious now. It quickly became clear that due to the html/css (imperfect) design of the page clicking on parts of the word ‘My Account’ would actually use the feedback link, and so take users to the Feedback page. They quite reasonably thought that they had to fill out the form before they could renew their books.</p>
<p>I can now sleep soundly at night. Mystery Solved.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2010%2Fmystery-solved%2F&amp;linkname=Mystery%20Solved"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/mystery-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dev8D</title>
		<link>http://www.nostuff.org/words/2010/dev8d/</link>
		<comments>http://www.nostuff.org/words/2010/dev8d/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 20:07:22 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[universities]]></category>
		<category><![CDATA[dev8d]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=500</guid>
		<description><![CDATA[This isn't a comprehensive review of dev8d, checkout the twitter stream (that link uses twapperkeeper by the way, the guy who created it was there and it was great talking to him), and wiki for and much else on the web for what went on.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t a comprehensive review of dev8d, checkout the <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://twapperkeeper.com/dev8d/">twitter stream</a> (that link uses twapperkeeper by the way, the guy who created it was there and it was great talking to him), and <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://wiki.2010.dev8d.org/w/Main_Page">wiki</a> for and much else on the web for what went on.</p>
<p><span id="more-500"></span></p>
<p>Things I saw that I liked:</p>
<ul>
<li>An iphone app developed which allowed you to point your iphone in different directions (think <a href="http://www.youtube.com/watch?v=U2uH-jrsSxs">augmented reality</a>) and show what was currently on in the room your iphone was pointing in.</li>
<li>This was possible because the wiki and programme exposed data in a machine readable way, using RDF &amp; ical for each event, geo co-ordinates for rooms. With out this the above would not have been more difficult to produce. It proves the saying: <em>the coolest thing to be done with your data will be thought of by someone else</em>. And likewise, set your data free.</li>
<li>Another app, little more than a simple iphone switch, allowed you to <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://dev8d.jiscinvolve.org/2010/02/26/world-first-at-dev8d-open-source-iphone-app-for-home-automation/?utm_source=twitterfeed&amp;utm_medium=twitter">turn a light on and off</a>. Of course the iphone could have been anywhere in the world when it turns the light on and off, the app calls a REST web interface on a notebook running a webserver which was connected to the light. Simple implementation of a nice idea, which much potential (someone was discussing how they want to be able to control their heating from their phone if they are out for the night, or if they are coming home early).</li>
<li>RFID tags connected to the door of each room, each attendee had a small RFID tag so they could record if they entered or passed a room. A web interface was built to display this data and lots of ideas of how we could build on this. The RFID readers where a simple <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.touchatag.com/e-store">consumer model</a> (from Touchatag), connected to netbooks and similar near by, and a mac mini acting as a central place to collect all the data. It was coded in ruby and used <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://code.google.com/p/redis/">Redis</a> as a quick and neat way to collect the data.</li>
<li>A Developer Happiness <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://twitpic.com/15fx3b">iphone app</a> which shows a number out of 10 representing on average how happy those at Dev8d are. It builds on the <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://samscam.co.uk/happier/">Happiness Pipe</a> site built last year.</li>
<li>I&#8217;m not sure how far they got, but some explored an open source OCR code library. They had the idea they could use these to try and OCR a frames from a videos on the web. This would have massive potential. indexing words from videos (say on youtube) whether super implanted on the screen, or signs and general wording in the image, would help improve searching for videos no end for starters. (of interest to us whose work includes resource discovery).</li>
<li>A cheap 3D printer, which can almost replicate (print) itself. Clearly a device that can build a huge array of items (from wine glasses to children&#8217;s shoes, though made out of a plastic like substance) has potential to change the world we live in. Was very impressive to see it.</li>
<li>Lots of hardware hacking going on and clever genetics stuff too, in fact loads not covered here.</li>
</ul>
<p><img title="IMG_0130.jpg" src="http://www.nostuff.org/words/wp-content//2010/02/IMG_0130.jpg" alt="IMG_0130.jpg" width="360" height="480" /></p>
<p>I created a twitter account which posts the latest blogs, videos and photos. You can <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://chriskeene.posterous.com/dev8d-google-reader-and-dipity-streams">read about it here</a> (this is more for info, sounds stupid when coming after the amazing things above). I also started to learn Ruby on Rails and python.</p>
<p>I was somewhat envious of those who by the end of the few days were able to say &#8216;look what I&#8217;ve built&#8217;, but then I&#8217;m no a developer as such, and certainly not as clever or geeky as some at the event. That is not to say I wasn&#8217;t busy, trying out lots of little things, discussing things with others, meeting lots of new people, attending expert talks and a couple of coding labs and trying out lots of things.</p>
<p>An example of 45 minutes: On seeing a tweet saying <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://inkdroid.org/journal/about/">Ed Summers</a> (LCSH Linked Data fame) was starting his expert talk for 15 minutes I went running in to that room to catch it (with power cable tailing behind me), great talk and was followed by a couple of guys from <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.mendeley.com/">Mendeley</a> &#8211; a great app and like last.fm they are collecting a lots of data which we should be able to do some interesting things with using the new API. This was followed by a great talk from Kate Pekacar from the MLA explaining their efforts to open the data of various collections and their keenness that the likes of Dev8D create useful new ways for people to discover these collections. Three different talks yet all interesting stuff <em>and</em> related to the day job.</p>
<p>I was lucky enough to attend the awards ceremony on the Friday night. One of those receiving an award was Garry Bulmer, who had run the popular Arduino workshops, who said teaching and working with those who were so enthusiastic and smart was a joy. This seemed to sum up the event well. It works because those attending want to challenge themselves, try something new, work with new people and move sightly outside their comfort zone. It would be easy to not do much at barcamp style events, but the reverse actually happens as people try and squeeze so much in to the few days, often working on tasks late in to the night.</p>
<p>If I had to sum up what I got out of this &#8211; a difficult task not due to lack of quantity but the sheer broadness and soft qualities of what has been gained &#8211; I&#8217;d add to what I&#8217;ve already out above:</p>
<ul>
<li>There were 15 minute expert lightening talks that have informed and got me thinking more than entire one day workshops and conferences.</li>
<li>In terms of hard facts, getting started with two programming languages both very useful when working and developing for the web. Learning these would have taken days in themselves, it&#8217;s hard to stress how much you can pack in to an afternoon when you have an excellent expert leading the session working with bright people in the room (my brain hurt a lot throughout).</li>
<li>Motivation is hard to identity, quantify and where exactly it originates, but I come away from this even with a higher opinion of the industry I work in, the Tech/dev community around Higher Education and our ability to break through old ways of working and needless bureaucracy. I think it helps those attend see a bigger picture to what they are doing. Tired yet with a fresh urge to build new things and Get Things Done.</li>
<li>I ended up talking to lots of people I wouldn&#8217;t do normally, neither personally or socially. This is useful in itself, but I think the experience itself is useful (especially for the socially inept like me). I found myself a few times suddenly talking to people (often from the States) who have created high profile web apps, including those which have nothing to do with HE or libraries.</li>
</ul>
<p>All in all. Tired. Good event. Good food. Metropolitan line crap. Well organised. Nice people. Brain hurts. Learnt lots. Shambrarian meeting a success . Chatted Lots. Drank a moderate amount while adhering to medical daily recommended limits. Obviously.</p>
<div class='wp_likes' id='wp_likes_post-500'><a class='like' href="javascript:wp_likes.like(500);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(500);">Unlike</a></div>
</div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2010/dev8d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ircount development</title>
		<link>http://www.nostuff.org/words/2009/ircount-development/</link>
		<comments>http://www.nostuff.org/words/2009/ircount-development/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 20:59:18 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[me me me]]></category>
		<category><![CDATA[ircount]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=483</guid>
		<description><![CDATA[I've finally got around to spending a bit of time on the ircount code.

This post goes through some of the techy stuff behind it. If you're just interested in features, I'm afraid there's none yet, but you can now compare more than 4 repositories, but that's as far as you'll want to read.


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/ircount-repository-record-statistics/' rel='bookmark' title='Permanent Link: ircount : Repository Record Statistics'>ircount : Repository Record Statistics</a></li>
<li><a href='http://www.nostuff.org/words/2008/ircount-new-location-new-functionality/' rel='bookmark' title='Permanent Link: ircount : new location, new functionality'>ircount : new location, new functionality</a></li>
<li><a href='http://www.nostuff.org/words/2010/ircount-update/' rel='bookmark' title='Permanent Link: ircount : update'>ircount : update</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally got around to spending a bit of time on the<em> <a href="http://www.nostuff.org/ircount/">ircount</a></em> code.</p>
<p>This post goes through some of the techy stuff behind it. If you&#8217;re just interested in features, I&#8217;m afraid there&#8217;s none yet, but you can now compare more than 4 repositories, but that&#8217;s as far as you&#8217;ll want to read.<span id="more-483"></span></p>
<p><strong>Subversion and Track</strong></p>
<p>The first thing I did a few months a go was create a Subversion repository. I seemed to time this quite well in learning how to use subversion just as every man and his dog gets excited by GIT.</p>
<p>I also installed <a href="http://trac.edgewall.org/">Trac</a> (using <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.nostuff.org/words/dreamhost-hosting/">Dreamhost</a>&#8216;s useful one-click install), which I haven&#8217;t really used other than to browse the code and view changes (time-line).</p>
<p>The repository is publicly available from here: <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://svn.nostuff.org/ircount/">http://svn.nostuff.org/ircount/</a></p>
<p>The trac site (which can be used to browse the code) is found at: <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://trac.nostuff.org/ircount/">http://trac.nostuff.org/ircount/</a></p>
<p>It took me a while to get svn working well. Originally I would edit the files in a local working copy of my Macbook, and then use subversion to load these to the server to test. Of course, this meant every little change had to be manually checked in to test it. I got apache and php working on the Macbook, and setup the Mysql db (on the Dreamhost server) to allow connections remotely which allowed me to test/use files located in my local copy. This seems to work well.</p>
<p>I use <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://code.google.com/p/svnx/">svnx</a> as a GUI Mac client. It&#8217;s free and is easy to use.</p>
<p><strong>The code. The rewrite</strong></p>
<p>I don&#8217;t do much code writing or developing. Anyone glancing at my work will take that as plain obvious.</p>
<p>I&#8217;ve realised when writing code I have a tendency to be very linear and unconsciously put efficiency before good design. Anything more than one database call per page was unthinkable, loading in other pages a sin, which often led to large unwieldy while loops processing the results from a massive database call. Database calls are mixed with html output mixed with logic.</p>
<p>This is just about ok when showing information about one Institutional Repository. But when comparing a number, it becomes unreadable, and not in any state to be reused. The key aspect of comparing a number of IRs is that you need to ascertain a number of facts for the page as a whole (the earliest data collection date for the page, the higher record count for the page &#8211; for the chart for example &#8211; which could be from any of the IRs).</p>
<p>My  aim was that the page files should be little more than calls to a few discrete functions.</p>
<p>I&#8217;m not quite there yet, but it&#8217;s a start. <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://trac.nostuff.org/ircount/browser/trunk/archive.php">archive.php</a> is mainly a set of function calls, but there is still too much in there, and random bits of html code dotted around. There&#8217;s also too many arrays holding information the repository (php) objects can provide. <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://trac.nostuff.org/ircount/browser/trunk/include.php">include.php</a> holds the functions, but is now a little bit unwieldy itself, with functions ordered randomly. The third file of note is <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://trac.nostuff.org/ircount/browser/trunk/class.archive.php">class.archive.php</a>. This is a repository object, which can grab data from the db for the repository, and return it to the calling page in various ways.</p>
<p>My original plan was to merge the code for showing one repository, with the code to show more than one, to make it easier to implement changes (not having to update two files). By the end of it, I&#8217;m now wondering if it would be easier to have two files again, for the little changes, which both call the same core functions.</p>
<p><strong>Google Chart</strong></p>
<p><a href="http://code.google.com/apis/chart/">Google Chart </a>is a great API and I recommend anyone to play with it.</p>
<p>However one of the problems of the last version of ircount is that the URLs for the chart images often became too long (more than 2,000 characters) resulting in no chart being shown. The Chart URL includes each data point separated by a comma, so four repositories multiplied by 100 weeks (for example), multiplied by 4 or 5 digits per datapoint (4 digit number plus a comma), it soon adds up.</p>
<p>One solution was to only pass data per month rather than per week (roughly reducing the number of data points to a quarter of the original). Another would have been (and probably will do in the future) to make use of Google Chart&#8217;s encoding function, made easy using<a href="http://bendodson.com/2008/02/28/google-extended-encoding-made-easy/"> these helpful functions</a>.</p>
<p>Overcoming this in an efficient way was a challenge. Originally I had a Google Chart PHP object. IR data would be passed to it in one method, and another method would return the URL.</p>
<p>This seemed sensible at the time, but deciding which php object did what became confusing. For example, the first thing the chart object needed to do was decide if the URL would be too long for the Repositories in question, taking in to account the data we had for each repository. Should the chart object loop around each data point for each repository to first decide how many there are? or should the repository object be handling this by telling the chart object how much data it has? How to avoid the need to loop through the same data several times. Does it matter which object does the work? It&#8217;s for the chart, so the chart object should do it, yet other parts of the page may want this info about the repositories, so the repository objects should provide it for all.</p>
<p>In the end, I did away with the chart object and used a function instead, which is passed an array of repository objects, which in turn handle a lot of work.</p>
<p><strong>Future</strong></p>
<p>The foundations are about there. For any page I (or anyone else) wishes to create. A couple of lines are all that are needed to take one or more repository IDs passed in the URL and load in all the data for them, ready to be used as needed. We can then easily call a table or chart to display for these repositories (or a subset of them).</p>
<p>As I mentioned above, the only real improvements are the ability to show more than 4 repositories at once (the chart stops showing once you get to about nine repositories), and the chart is more robust and will now show when it would have failed to do so in the past.</p>
<p>Google Chart does have an encoding which allows far more to be passed in a condensed way, and <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://bendodson.com/2008/02/28/google-extended-encoding-made-easy/">this php function</a> looks very useful for using it.</p>
<p>If I was starting again today I would look to use a framework such as <a href="http://framework.zend.com/">Zend Framework</a> or <a href="http://cakephp.org/">CakePHP</a>, or maybe even have a go at <a href="http://rubyonrails.org/">Ruby on Rails</a>. But perhaps a third rewrite is a little over the top for now.</p>
<p>I need to tidy up the <a href="http://www.nostuff.org/ircount/table.php?country=uk">table view</a> a bit (some <a href="http://trac.nostuff.org/ircount/browser/tags/09nov/table.php">nasty code there</a>) and then look to a few new features, may be collecting more data, and exposing it in some computer friendly formats such as atom.</p>
<p>So<a href="http://www.nostuff.org/ircount/"> ircount</a> is really no more than a play thing for a bad coder to make mistakes and learn a little bit along the way. slowly. but if you have any ideas or thoughts I would love to hear them.</p>
<div class='wp_likes' id='wp_likes_post-483'><a class='like' href="javascript:wp_likes.like(483);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(483);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fircount-development%2F&amp;linkname=ircount%20development"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/ircount-repository-record-statistics/' rel='bookmark' title='Permanent Link: ircount : Repository Record Statistics'>ircount : Repository Record Statistics</a></li>
<li><a href='http://www.nostuff.org/words/2008/ircount-new-location-new-functionality/' rel='bookmark' title='Permanent Link: ircount : new location, new functionality'>ircount : new location, new functionality</a></li>
<li><a href='http://www.nostuff.org/words/2010/ircount-update/' rel='bookmark' title='Permanent Link: ircount : update'>ircount : update</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/ircount-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter clients</title>
		<link>http://www.nostuff.org/words/2009/twitter-clients/</link>
		<comments>http://www.nostuff.org/words/2009/twitter-clients/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 23:30:50 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web and blogs]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[socialmedia]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/2009/twitter-clients/</guid>
		<description><![CDATA[From about an hour after signing up to Twitter until very recently I used Twirl on both PC and Mac as my Twitter client. I was happy with it, and still am, but had noticed people using other clients and wanted to see if I was missing anything. I round up my findings here...


No related posts.]]></description>
			<content:encoded><![CDATA[<p>From about an hour after signing up to Twitter until very recently I used <a href="http://www.twhirl.org/">Twirl</a> on both PC and Mac as my Twitter client. I was happy with it, and still am, but had noticed people using other clients and wanted to see if I was missing anything.</p>
<p>I round up my findings here:</p>
<div class="wp-caption alignnone" style="width: 490px"><a href="http://www.nostuff.org/words/wp-content//2009/11/Picture-11.png"><img title="Three twitter clients" src="http://www.nostuff.org/words/wp-content//2009/11/Picture-11.png" alt="Picture 1.png" width="480" height="332" /></a><p class="wp-caption-text">Three twitter clients</p></div>
<p><span id="more-471"></span><strong>Twirl</strong></p>
<p>Adobe Air based, with a simple, effective and attractive interface. It just works and has some nice features. You can activate searches so that their results appear in your main feed. updates can appear on screen in small popup notifications. In many ways I see it as the baseline of what a client should be.</p>
<p>Very occasionally it&#8217;s non native Air roots would show through with quirks with widgets and UI controls (e.g. a scroll bar not behaving like it should). It could be easy to miss replies and mentions that come in when you are not looking, once off the screen there is no indication that they are there. Some of the newer clients go further than Twirl with integrating with third party apps and displaying conversations. Clicking on a hashtag will open a web browser twitter search, it would be neater if it opened it&#8217;s own search tab instead.</p>
<p><strong>Seesmic Desktop</strong></p>
<p>Seesmic bought twirl a while back, and their website now implies Seesmic Desktop is the main client. It&#8217;s currently my twitter client at work.</p>
<p>The good: (often) auto completes on usernames. Handles multiple accounts well (they all seem to handle more than one account). Two (or more) column layout works well, but seems to require less screen space than TweetDeck. A good all around client, similar to Twirl</p>
<p>The not so good. Interface could be better, and perhaps too cluttered. On my work PC the interface stutters a little when new tweets come in, a slight delay while new avatar images load which for someone reason is noticeable and a little distracting.</p>
<p>A mention must also go to <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.seesmic.com/web/">Seesmic web client</a>. An excellent choice if away from your normal computer. Acts like a desktop client in a web browser.</p>
<p><strong>Echofon</strong></p>
<p>This is the client I have stuck with on the Mac.</p>
<p>The Good: Nice simple interface. One of it&#8217;s best features is it&#8217;s pop out draw which shows conversations, this is useful, click on the conversation button next to any tweet to see the whole thread, including those you do not follow.</p>
<p>Another nice feature, clicking on a link to an image (on twitpick, yfrog, flickr etc) opens a window showing just the image, no need to load a webpage to have a quick look at an image.</p>
<p>When replying/mentioning someone you can undo the twitter &#8216;reply&#8217; functionality (i.e. so it&#8217;s just a tweet that mentions their username, rather than a tweet which replies to a specific tweet), useful because twitter will only show your reply to those who also follow the person you are replying to (i.e. probably most your followers will not see what you are saying).</p>
<p>Not so good: no auto complete on usernames. when I&#8217;m in the middle of composing a tweet and click on &#8216;reply&#8217; next to a person&#8217;s tweet, I want their name to appear where the cursor is, not at the start of the tweet, this is quite annoying. It has a search tab, but no way to auto-update search results (e.g. when following conference tweets), or for them to appear in your main stream.</p>
<p><strong>TweetDeck</strong></p>
<p>Seems to be the most popular client in use at the moment. Like Twirl and Seesmic Desktop it is Adobe Air based.</p>
<p>The Good: Allows for users to be put in to groups and different columns for different groups, e.g. a group of core friends you don&#8217;t want to miss anything from. Seems to be the choice of power users. Auto completes usernames.</p>
<p>The not so good: interface isn&#8217;t great, and seems to take up a lot of space, with each tweet taking up more room, and the need of multiple columns. Personally, I know it&#8217;s very popular, but the interface has never worked for me. Partly because I prefer my twitter client to tick away on one side of the screen while I work in another app which uses the rest of the screen. Tweetdeck doesn&#8217;t seem to be designed with this in mind.</p>
<p><strong>Tweetie</strong></p>
<p>I haven&#8217;t tried but some people I follow on twitter highly rate it. Not free but sounds like it is worth checking out.</p>
<p><strong>Twitt</strong></p>
<p>Seems quite a new twitter client for the Mac, see their <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://twittapp.com/">homepage here</a>.</p>
<p>I haven&#8217;t really looked at it other than start it up quickly, so can&#8217;t really comment. UI seems simple, uncluttered and nice, but there seems a lot of space around each tweet, so less tweets on screen at anyone time. One slight annoying thing, on first start up, rather than asking for a username, it just stated there was an error getting tweets, not a huge problem but not very welcoming. One to watch.</p>
<p><strong>To Conclude&#8230;</strong></p>
<p>Having tried a few clients, here are some of the features I like (or would like to see) and will keep an eye open for when looking at any new client.</p>
<ul>
<li>Seeing conversations with one click without needing to go to the browser (echofon does a great job here)</li>
<li>Autocomplete usernames. (Tweetdeck/Seesmic Desktop), so I don&#8217;t have to remember the exact spelling of a username when I want to mention someone.</li>
<li>A simple way to browse all the people I follow (sorted alphabetically and any other useful way), for when I want to mention someone but have no idea of their name but will recognise it when i see it, or recognise their avatar.</li>
<li>A way to workaround Twitter&#8217;s broken replies (i.e. if you reply to someone only those who follow the person you are replying to will see your tweet, even if it is of general interest). When you reply to someone, some clients allow you to click a small button so that your tweet is a normal tweet (which so happens to mention another user) rather than a reply. Useful, but wonder if there is more clients could do to work around this.</li>
</ul>
<p>There&#8217;s not much between them. I&#8217;m currently using Seesmic on my work PC and echofon on my home macbook, but would happily be using Twirl or Tweetdeck as well. All have useful features that others do not have, but none seem to have a killer feature which puts them above the rest. We should of course be thankful so many people and organisations have developed clients for free!</p>
<p>I&#8217;d be interested to here what features others find useful, and which clients they prefer. Why is TweetDeck so popular?</p>
<p><strong>Update (2nd Dec)</strong> : A few days after I posted this I tried using TweetDeck again at work. I still don&#8217;t think the UI is as good as others, but it does have some nice features and gets most things right. Of note is the username auto completion. But perhaps its biggest selling point is that other clients tend to each miss one or two bits of useful functionality, where as Tweetdeck has most of the features you might find useful. For example, you can mark a user as spam and their tweets and replies are removed from view. Another example, from any tweet, you can do just about any action for the user of the specific tweet (see user profile, add user, email tweet etc). Seeing conversations, profiles and pictures within tweetdeck is also useful.</p>
<p>It&#8217;s weaker points (apart from UI): I have the window wide enough to see &#8216;All friends&#8217; and &#8216;mentions&#8217; and it&#8217;s easy to miss direct messages. Also, I&#8217;m not keen on how it handles multiple accounts. I had set-up Seesmic Desktop so that the main tweets column showed tweets for my main account. But the mentions column shows mentions for either my main account or a work related account (where it was important to respond to any reply that occasionally came in). It doesn&#8217;t seem possible to do this with Tweetdeck, and so far it seems that basically all settings are for all twitter accounts, i.e. can&#8217;t use different settings for different accounts.</p>
<p><strong>Update Feb 2010:</strong></p>
<ul>
<li><a href="https://destroytwitter.com/overview">DestroyTwitter</a> is a nice Adobe Air app, it uses less resources and screenspace than others. Smaller and a nicer UI than Tweetdeck, but with less features. Available for Windows and OS X. The developer is currently taking a break from developing it.</li>
<li><a href="http://seesmic.com/seesmic_desktop/windows/">Seesmic for Windows</a> is a Windows native app,  not to be confused with Seesmic Desktop, an Adobe Air app. This is nice and you can expect updates and new features in the future. With its left hand bar it does take up a bit of screen space (and it doesn&#8217;t highlight when a new reply/mention/dm has come in). No auto-complete when writing usernames in tweets yet. But one to watch and one of the very few Windows native applications.</li>
<li><a href="http://seesmic.com/seesmic_desktop/look/">Seesmic Look </a>had an impressive launch event, and takes a different approach. Almost a &#8216;twitter for those who don&#8217;t tweet&#8217;, it focuses on browsing and navigating through tweets, and grouping them in to topics.</li>
<li>Finally, with the advent of the new Retweet system and lists, it brings me sadness to say that <em>Twirl</em> must now be considered obsolete. I now recommend to those who use it to try something else: Echofon for OS X, DestroyTwitter or Seesmic Windows for PC and TweetDeck for power users .</li>
<li>Finally a quick heads up to the new <a href="http://feathersapp.com/">Feathers</a> iphone app from fellow (but much smarter) Brightonian <a href="http://aralbalkan.com/">Aral Balkan</a>, not a main stream twitter client, but one which allows you to tweet using unusual characters and unicode.</li>
</ul>
<div class='wp_likes' id='wp_likes_post-471'><a class='like' href="javascript:wp_likes.like(471);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(471);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Ftwitter-clients%2F&amp;linkname=Twitter%20clients"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/people-power/' rel='bookmark' title='Permanent Link: People power : twitter is highlighting &#038; affecting important issues.'>People power : twitter is highlighting &#038; affecting important issues.</a></li>
<li><a href='http://www.nostuff.org/words/2008/ecto-first-impressions/' rel='bookmark' title='Permanent Link: ecto : first impressions'>ecto : first impressions</a></li>
<li><a href='http://www.nostuff.org/words/2009/pubsubhubbub-instant-rss-and-atom/' rel='bookmark' title='Permanent Link: PubSubHubbub instant RSS and Atom'>PubSubHubbub instant RSS and Atom</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/twitter-clients/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apple Automator</title>
		<link>http://www.nostuff.org/words/2009/apple-automator/</link>
		<comments>http://www.nostuff.org/words/2009/apple-automator/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 19:32:18 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/2009/apple-automator/</guid>
		<description><![CDATA[Automator on OS X is one of those things I use about once a year, but it always impresses. Many attempts to use drap and drop to replace programming lead to confusing design. Examples are yahoo pipes, Business Objects, and most of all MS Access. What&#8217;s impressive with Automator is that it always seems it [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Automator on OS X is one of those things I use about once a year, but it always impresses.</p>
<p>Many attempts to use drap and drop to replace programming lead to confusing design. Examples are yahoo pipes, Business Objects, and most of all MS Access.</p>
<p>What&#8217;s impressive with Automator is that it always seems it was designed with the very problem you want to solve in mind.</p>
<p><strong>My Problem</strong> (apart from the drink)</p>
<p>I use command+shift+4 to get screen grabs a lot. For twitter, for blogs (in fact for this very post), for documents, etc. However I end up with lots of images on my desktop called Picture 1, Picture 2, etc.</p>
<p>I want to keep these, for future use, but want a clutter free desktop.</p>
<p>The problem is, if I try and drag these in to a folder, there will already be a Picture 1, Picture 2 from previous occasions. Leading to annoyingly having to rename every file, or create a sub-directory for each time it runs.</p>
<p>Now I have a simple Automator script.</p>
<p><img src="http://www.nostuff.org/words/wp-content//2009/11/Picture-1.png" alt="Picture 1.png" width="480" height="382" /></p>
<p>Each time I run it, it moves everything in to a folder, with the create date in front of the name. It was easy to search for &#8216;actions&#8217; (&#8216;move&#8217;, &#8216;rename&#8217;) and browse (&#8216;Files&#8217; -&gt; &#8216;Find Files&#8217;).</p>
<div class='wp_likes' id='wp_likes_post-467'><a class='like' href="javascript:wp_likes.like(467);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' />Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(467);">Unlike</a></div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fapple-automator%2F&amp;linkname=Apple%20Automator"><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2005/mulberry-dead-woohoo/' rel='bookmark' title='Permanent Link: Mulberry Dead&#8230; woohoo'>Mulberry Dead&#8230; woohoo</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/apple-automator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>People power : twitter is highlighting &amp; affecting important issues.</title>
		<link>http://www.nostuff.org/words/2009/people-power/</link>
		<comments>http://www.nostuff.org/words/2009/people-power/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 19:33:50 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[politics and current affairs]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[disruptive_technology]]></category>
		<category><![CDATA[socialmedia]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/2009/people-power/</guid>
		<description><![CDATA[It is instantaneous, not just the web, but on computer twitter clients and phones, and messages are public by default (unlike many other social networking sites where they are restricted to a specific groups or trusted circle of friends). ...  Promised a lot, but was little more than muddy fields and a few fun fair (pay to use) rides, two santas (queue for hours, not allowed to take photos) and the odd tree with fairly lights, with staff who were untrained and the worst possible people to be interact with kids.  


No related posts.]]></description>
			<content:encoded><![CDATA[<p>A few weeks a go (why, the 12th Oct in fact) I was sitting at my laptop during the evening, doing this and that with Twitter ticking away on the right. I glanced at the newest tweets to pop in and noticed <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://twitter.com/secretlondon/status/4817808287">one from secretlondon</a>.</p>
<p><img src="http://www.nostuff.org/words/wp-content//2009/11/200911121603.jpg" alt="200911121603.jpg" width="480" height="223" /></p>
<p>Curious, I read the <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.guardian.co.uk/media/2009/oct/12/guardian-gagged-from-reporting-parliament">Guardian article</a> it linked to. A gagging order to stop a paper report the proceedings of parliament. This is not very good. I muttered and got back on with the this and that. A few minutes later <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://twitter.com/secretlondon/status/4817874485">another tweet from secretlondon</a> came in:</p>
<p><img src="http://www.nostuff.org/words/wp-content//2009/11/200911121605.jpg" alt="200911121605.jpg" width="480" height="217" /></p>
<p>Now we have seeds of information! To Hansard, To Wikipedia, To Google. Who were Trafigura, who were Carter-Ruck?</p>
<p>Soon other tweets were coming along about this, and I was adding my two pence too, re-tweeting the news and<a href="http://www.nostuff.org/words/wp-content//2009/11/tmp-my-trafigura-tweets.txt" target="_blank"> adding my own little links to what I was finding</a>.</p>
<p>Hansard provided the details the Guardian couldn&#8217;t report, and it quickly became clear what they were trying to hide.</p>
<p>By now twitter was alight. Hashtags came in to usage. Following these produced more information, once someone found something, they didn&#8217;t just share with their followers, but with everyone now following those tags. Previous Guardian articles (amongst others) were brought to our collective attention.</p>
<p>Before this I had not heard of Trafigura or Carter-Ruck. I suspect many were the same, yet now we were angry about what we read about their questionable activities (one apparently dumps nasty stuff in Africa, the other boasts about suppressing the press, regardless of truth). A storm was brewing and I felt it had yet to peek. But it was late and sleep beckoned.</p>
<p>The next morning I was curious if there had been any developments over night.</p>
<p>First thing I came across was a <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.spectator.co.uk/alexmassie/5417651/british-press-banned-from-reporting-parliament-seriously.thtml">Spectator online article</a> (a publication on the other side of the political spectrum to the Guardian). It quoted the Guardian article heavily, but then went on to quote the part of Hansard that contained the question (and company name) that the Guardian could not and provided links. I tip my hat to them. #Trafigura was now trending, celebrity twitterers (including our Lord Steven Fry) were highlighting it and more.</p>
<p>It felt like it was everywhere, on the news, and over in coffee room colleagues were talking about it. The <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://en.wikipedia.org/wiki/Streisand_effect">Streisand effect</a> had truly kicked in. Before noon on the 13th the case had been dropped. The Guardian was no longer prevented on reporting on the story.</p>
<p><strong>Five Days later</strong></p>
<p>Five days later a Daily Mail columnist Jan Moir wrote <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.dailymail.co.uk/femail/article-1220756/A-strange-lonely-troubling-death--.html">a homophobic piece</a> (since edited) about the very recent death of singer Stephen Gately. A similar thing happens. A storm brews up. Not organised. But distributed little efforts or raising attention, mainly through twitter, which leads to coverage in main stream media and changes to the article and headline.</p>
<p><strong>Black Out and Breaking News</strong></p>
<p>And back in February there was a <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.guardian.co.uk/technology/2009/feb/17/internet-newzealand">&#8216;black out&#8217; campaign</a> because of a proposed repressive internet law in New Zealand. Again, partly due to the coverage on sites like twitter, the <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.nbr.co.nz/article/section-92a-be-scrapped-89121">section in question was scrapped</a>.</p>
<p>It&#8217;s not just campaigns and activism. Breaking news is spread rapidly via twitter, such as the <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://www.telegraph.co.uk/technology/twitter/4269765/New-York-plane-crash-Twitter-breaks-the-news-again.html">plane crash in New York</a> (Twitter broke the story, and first images of the plane in the water came from Twitter), and Michael Jackson&#8217;s death.</p>
<p>But twitter doesn&#8217;t always have it&#8217;s own way. There was a <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://helpiranelection.com/">Green avatar campaign</a> for democracy in Iran, which sadly never saw success.</p>
<p><strong>We&#8217;re seeing two things here&#8230;</strong></p>
<p>1 &#8211; That information is now able to spread much faster than it ever has before. This has always been the case with the Internet, and has increased each year with new technologies (blogs, social networking), but especially with twitter.</p>
<p>2 &#8211; That people spreading this information leads to the main stream press reporting on it, and those under pressure back tracking. (I wonder how essential that middle step is?)</p>
<p>Twitter is such a good tool for the first point. It is instantaneous, not just the web, but on computer twitter clients and phones, and messages are public by default (unlike many other social networking sites where they are restricted to a specific groups or trusted circle of friends). Having an Open technical platform (which allows any other website or application to access tweets) also helps.</p>
<p><strong>So&#8230;</strong></p>
<p>My instant reaction is that this must be a good thing. When something bad is happening in the world (sorry, that sounds very simplistic) twitter, and other websites, can spread the information quickly and widely, even to those who don&#8217;t follow the news each day. This can lead to positive change.</p>
<p>The Trafigura/Carter-Ruck case is a good example of this. Imagine if it had happened 10 years a go. People (well, only Guardian readers) would have read the Guardian front page but not had a clue what it was about. In fact The Guardian may well not have run it as a front page story (or at all) as it would have simply confused/frustrated their readership. The Guardian took a gamble by putting this on to the front page, knowing (hoping) it would then become a story in its own right. It did, probably more than they ever hoped.</p>
<p><strong><em>Noteworthy information is a virus, once it is in the wild it is unstoppable.</em></strong></p>
<p>But all is not rosy. It will be slippery slope. I&#8217;m reminded of the 1995 film <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://en.wikipedia.org/wiki/The_Last_Supper_%281995_film%29">&#8216;the Last Supper</a>&#8216;. In the film they start off killing of the worst people in society, but as time goes on, things become more complex and grey and less clear cut. The Trafigura case was clear cut. Those trying to stop the BBC putting Nick Griffin on to Question Time, less so. There&#8217;s a thin line between the people power righting wrongs and mob rule.</p>
<p><strong>One final example &#8211; baby and bump</strong></p>
<p>Last Christmas I came across a <a class="libx-autolink" style="border-bottom: 1px dotted;" href="http://news.bbc.co.uk/1/hi/england/dorset/7758112.stm">news story</a> about a &#8216;Lapland in the New Forest&#8217;. Long story short it was a con. Promised a lot, but was little more than muddy fields and a few fun fair (pay to use) rides, two santas (queue for hours, not allowed to take photos) and the odd tree with fairly lights, with staff who were untrained and the worst possible people to be interacting with kids.</p>
<p>For some reason I looked up to find out more. And I came across a <a href="http://www.babyandbump.com/santas-grotto/60499-lapland-new-forest-lapland-west-midlands-reviews-discussion.html">thread on a web based forum called baby and bump</a> (you can guess what it&#8217;s for). The thread was the top result on Google so became one of the main exchanges on the web for those affected by this.</p>
<p>The thread starts off with a few excited people discussing going to the Lapland attraction and how excited the kids are, and how much they have splashed out (money they couldn&#8217;t afford to throw away). Then those who visited the first few days after opening reported back, while others are in denial that it can be that bad. Then it really starts, more report back, and others start to join the forum simply to add their experience.</p>
<p>Then the fact finding starts: the owners name and address, other business addresses, legal rights, who in the council to complain to, who in the press to contact, how to file a small claims, the owner is related to the leader of Brighton (my) Council!</p>
<p>I like this example. It isn&#8217;t the twitterati or tech-savy web2.0 types, but just families on a simple web forum. No one organised anything, but many added bits of info, supported others, or shared their experiences. I would say it very much played it&#8217;s part in the early closure of this cruel con. After returning from a horrible day, cold, upset kids, after paying quite a sum upfront, it must feel frustrating and helpless, I think even finding others who have been through the same must be of some help. The Internet can really help in such situations. But it&#8217;s not the power of the internet, it&#8217;s the power of people. The Internet just acts as a enabling tool.</p>
<p>So Twitter is allowing us to share information and become aware of facts/situations in a way not thinkable until now, and at a very quick speed.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fpeople-power%2F&amp;linkname=People%20power%20%3A%20twitter%20is%20highlighting%20%26%23038%3B%20affecting%20important%20issues."><img src="http://www.nostuff.org/words/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/twitter-clients/' rel='bookmark' title='Permanent Link: Twitter clients'>Twitter clients</a></li>
<li><a href='http://www.nostuff.org/words/2007/ucu-guardian-article/' rel='bookmark' title='Permanent Link: UCU: Guardian article'>UCU: Guardian article</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/people-power/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.378 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-08-31 14:34:05 -->
<!-- Compression = gzip -->