<?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, 05 Jan 2010 11:37:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<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>
</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.</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>&#8217;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='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(483);">Unlike</a></div>
</div>
<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>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>
</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[twitter]]></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...


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/apple-automator/' rel='bookmark' title='Permanent Link: Apple Automator'>Apple Automator</a></li>
</ol>]]></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><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>
<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='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(471);">Unlike</a></div>
</div>
<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>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/apple-automator/' rel='bookmark' title='Permanent Link: Apple Automator'>Apple Automator</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 was designed [...]


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>]]></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='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(467);">Unlike</a></div>
</div>
<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>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.  


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>]]></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>
<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>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>
		<item>
		<title>Google Reader &#8211; shared stuff</title>
		<link>http://www.nostuff.org/words/2009/google-reader-shared-stuff/</link>
		<comments>http://www.nostuff.org/words/2009/google-reader-shared-stuff/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 10:49:12 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[me me me]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google reader]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=449</guid>
		<description><![CDATA[I&#8217;ve been using Google Reader for a while having jumped ship from Bloglines. One of its features is to share stuff. This is potentially a good thing as it avoids me bombarding my twitter followers with endless links to stuff i find interesting.
At the moment it is useless as I don&#8217;t really follow anyone on [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2005/google-reader/' rel='bookmark' title='Permanent Link: Google Reader'>Google Reader</a></li>
<li><a href='http://www.nostuff.org/words/2005/google-my-master/' rel='bookmark' title='Permanent Link: Google my master'>Google my master</a></li>
<li><a href='http://www.nostuff.org/words/2008/google-books-api/' rel='bookmark' title='Permanent Link: Google Books API'>Google Books API</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Google Reader for a while having jumped ship from Bloglines. One of its features is to share stuff. This is potentially a good thing as it avoids me bombarding my twitter followers with endless links to stuff i find interesting.</p>
<p>At the moment it is useless as I don&#8217;t really follow anyone on Google Reader, and they (probably good sense, and a firm value of their own time) don&#8217;t follow me.</p>
<p>So, people, here is a link to my shared stuff.</p>
<p><a href="http://www.google.com/reader/shared/chriskeene">http:<label>//www.google.com/reader/shared/chriskeene</label></a></p>
<p>So feel free to add me as a contact in Google Reader, and I&#8217;ll do the same. And read interesting stuff. Because twitter, failblog, blogs and the web don&#8217;t already waste enough of my time.</p>
<div class='wp_likes' id='wp_likes_post-449'><a class='like' href="javascript:wp_likes.like(449);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(449);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fgoogle-reader-shared-stuff%2F&amp;linkname=Google%20Reader%20%26%238211%3B%20shared%20stuff"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2005/google-reader/' rel='bookmark' title='Permanent Link: Google Reader'>Google Reader</a></li>
<li><a href='http://www.nostuff.org/words/2005/google-my-master/' rel='bookmark' title='Permanent Link: Google my master'>Google my master</a></li>
<li><a href='http://www.nostuff.org/words/2008/google-books-api/' rel='bookmark' title='Permanent Link: Google Books API'>Google Books API</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/google-reader-shared-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>University league tables combined data</title>
		<link>http://www.nostuff.org/words/2009/university-league-tables-combined-data/</link>
		<comments>http://www.nostuff.org/words/2009/university-league-tables-combined-data/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 12:52:30 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[universities]]></category>
		<category><![CDATA[rankings]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=444</guid>
		<description><![CDATA[Last year I collected the University League tables published from various sources and combined them in to one spreadsheet.
I&#8217;ve been updating this for this year, i.e. tables published in early/mid 2009 aimed at those starting in 2010.
You can see the UK Combined University league table data Google spreadsheet here and re-order as you please. I&#8217;ve [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/top-20-uk-universities/' rel='bookmark' title='Permanent Link: Top 20 UK Universities'>Top 20 UK Universities</a></li>
<li><a href='http://www.nostuff.org/words/2008/combined-uk-university-rankings/' rel='bookmark' title='Permanent Link: Top UK Universities : Combined Rankings'>Top UK Universities : Combined Rankings</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Last year <a href="http://www.nostuff.org/words/2008/combined-uk-university-rankings/">I collected</a> the University League tables published from various sources and combined them in to one spreadsheet.</p>
<p>I&#8217;ve been updating this for this year, i.e. tables published in early/mid 2009 aimed at those starting in 2010.</p>
<p>You can see the <strong><a href="http://spreadsheets.google.com/ccc?key=0ArMgMmZXXCgPcm9qVHllc2loV3V4UEx2TlJiZHdxSXc&amp;hl=en_GB" target="_blank">UK Combined University league table data Google spreadsheet</a></strong><a href="http://spreadsheets.google.com/ccc?key=0ArMgMmZXXCgPcm9qVHllc2loV3V4UEx2TlJiZHdxSXc&amp;hl=en_GB"> here</a> and re-order as you please. I&#8217;ve updated the three &#8216;UK only&#8217; lists, and will update the international lists in the near future.</p>
<p>Notes:</p>
<ul>
<li>This is a bit of fun, for my own interest. Don&#8217;t take it too seriously.</li>
<li>There are plenty of good guides to UK Higher Education including <a href="http://www.guardian.co.uk/education/universityguide">The Guardian</a>, <a href="http://www.timesonline.co.uk/tol/life_and_style/education/good_university_guide/">The Times</a> and <a href="http://www.google.co.uk/search?hl=en&amp;q=uk+university+guide">plenty more</a>. Use them, not this site, if you are thinking of studying in the UK!</li>
<li>A quick glance will reveal that I have never studied statistics. In particular my made up scoring system is laughable.</li>
</ul>
<p>You&#8217;ll find last years data in a seperate sheet, accessible via a tab at the bottom of the document. Are you able to produce anything interesting with this data?</p>
<div class='wp_likes' id='wp_likes_post-444'><a class='like' href="javascript:wp_likes.like(444);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(444);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Funiversity-league-tables-combined-data%2F&amp;linkname=University%20league%20tables%20combined%20data"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/top-20-uk-universities/' rel='bookmark' title='Permanent Link: Top 20 UK Universities'>Top 20 UK Universities</a></li>
<li><a href='http://www.nostuff.org/words/2008/combined-uk-university-rankings/' rel='bookmark' title='Permanent Link: Top UK Universities : Combined Rankings'>Top UK Universities : Combined Rankings</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/university-league-tables-combined-data/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Brighton New England Quarter Photos</title>
		<link>http://www.nostuff.org/words/2009/brighton-new-england-quarter-photos/</link>
		<comments>http://www.nostuff.org/words/2009/brighton-new-england-quarter-photos/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 20:53:17 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[brighton]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[new england quarter]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=433</guid>
		<description><![CDATA[I don&#8217;t think we&#8217;re that good at recording the world we live in (photographs, sound) for future reference.
The first question that can arise from that is: is it important? I like to think yes without being able to provide particularly good reasons why.
In any case, I used to &#8211; and still &#8211; love to look [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/brighton-new-england-quarter/' rel='bookmark' title='Permanent Link: Brighton New England Quarter'>Brighton New England Quarter</a></li>
<li><a href='http://www.nostuff.org/words/2007/brighton-local-council-elections-may-2007/' rel='bookmark' title='Permanent Link: Brighton local council elections : May 2007'>Brighton local council elections : May 2007</a></li>
<li><a href='http://www.nostuff.org/words/2007/brighton-and-hove-local-elections/' rel='bookmark' title='Permanent Link: Brighton and Hove local elections'>Brighton and Hove local elections</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t think we&#8217;re that good at recording the world we live in (photographs, sound) for future reference.</p>
<p>The first question that can arise from that is: is it important? I like to think yes without being able to provide particularly good reasons why.</p>
<p>In any case, I used to &#8211; and still &#8211; love to look at old photographs of the places I&#8217;ve lived and grew up in, found in local shops. museums and pubs.<br />
<a href="http://www.nostuff.org/words/wp-content//2009/08/small1.jpg"><img class="alignright size-medium wp-image-439" title="Building which use to stand on New England Street" src="http://www.nostuff.org/words/wp-content//2009/08/small1-300x141.jpg" alt="Building which use to stand on New England Street" width="300" height="141" /></a><br />
In was perhaps this that was the inspiration back in 2004 to take some photos of an area of Brighton that was about to the redeveloped. The area in question was next to the main station and contained various crumbling buildings from the last 150 years sticking out of the undergrowth.</p>
<p>It&#8217;s not just a bunch of buildings, both being knocked down and built, but a whole area where the characteristics are changing completely. For example, on the edge of the area is a Primary school, it used to be next to a busy main road and now &#8211; not be coincidence &#8211; next to a pedestrian area. They didn&#8217;t just pave the road, the whole area is different. Plus they would have had views of the Seven Dials area high up on a hill the other side of the station, now behind several different buildings. How can we show how this has changed for those who arrive in the future.</p>
<p>I&#8217;ve updated the &#8216;<strong>Brighton New England Quarter</strong>&#8216; pages, and added a new batch of photos.</p>
<p>It also has a new address (well two):</p>
<p><a href="http://brightonnewengland.nostuff.org/">http://brightonnewengland.nostuff.org/</a></p>
<p>Nice and short: <a href="http://d.nostuff.org/">http://d.nostuff.org/</a></p>
<p>There&#8217;s now a <a href="http://d.nostuff.org/maps">Google map</a> with some of the key buildings on it (something I can&#8217;t believe it lacked until now), and the latest files have been uploaded to <strong>flickr</strong> (now pro!) and a local &#8216;<strong>Gallery 2</strong>&#8216; installation. Gallery 2 ensures I have a duplicate copy on the web which I have full control of, though the Gallery software and Dreamhost webservers are not the quickest in the world (I note that Gallery 3, in beta, is a complete rewrite). I added descriptive metadata to both but need to try and find a way to reduce double keying (perhaps by adding some in to Iphoto 09, just purchased).</p>
<p>The pages are now in<strong> <a href="http://drupal.org/">Drupal</a></strong>. I&#8217;ve been looking for something to run in Drupal for a while, and these are some of the last static text file html pages which were an ideal candidate. My reservation about moving anything in to a CMS is that it may restrict what I can do on a page, e.g. adding embedded media, javascript or php. So far this hasn&#8217;t been a problem.</p>
<p>Dreamhost offer two kinds of &#8216;One Click Install&#8217;. Advanced, the most common, where the software/db is installed in to your area, so your free to amend/add themes/break/etc as you please. Drupal is only offered as a &#8216;Easy&#8217; One Click Install. It&#8217;s hosted for you, you have admin access but can&#8217;t access the physical install. This means no worry for upgrades, but means I can&#8217;t add modules or themes. Which may be frustrating in the future. I could of course install it myself on my own site (I have full shell access) though that sounds like effort.</p>
<p>So now I&#8217;ve got some photos from before they started (well, annoyingly some buildings had already been knocked down before), to being built, to current day. Some plots are still waiting to be built on, including the plot next to the station for a 5 star hotel (original plans were for a massive &#8211; ugly &#8211; skyscraper). I was never organised enough to ensure I was taking photos from the exact same locations over time, but have taken so many that there should be a good number where there will be good before/during/after shots.</p>
<p>So, if interested, do take a look at the <a href="http://d.nostuff.org/">site and photos</a>. Hopefully nostuff.org will be around long enough to of use to show our the area used to be.</p>
<div class='wp_likes' id='wp_likes_post-433'><a class='like' href="javascript:wp_likes.like(433);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(433);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fbrighton-new-england-quarter-photos%2F&amp;linkname=Brighton%20New%20England%20Quarter%20Photos"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/brighton-new-england-quarter/' rel='bookmark' title='Permanent Link: Brighton New England Quarter'>Brighton New England Quarter</a></li>
<li><a href='http://www.nostuff.org/words/2007/brighton-local-council-elections-may-2007/' rel='bookmark' title='Permanent Link: Brighton local council elections : May 2007'>Brighton local council elections : May 2007</a></li>
<li><a href='http://www.nostuff.org/words/2007/brighton-and-hove-local-elections/' rel='bookmark' title='Permanent Link: Brighton and Hove local elections'>Brighton and Hove local elections</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/brighton-new-england-quarter-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PubSubHubbub instant RSS and Atom</title>
		<link>http://www.nostuff.org/words/2009/pubsubhubbub-instant-rss-and-atom/</link>
		<comments>http://www.nostuff.org/words/2009/pubsubhubbub-instant-rss-and-atom/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 16:51:37 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web and blogs]]></category>
		<category><![CDATA[atom]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[pubsubhubbub]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=426</guid>
		<description><![CDATA[I have just come across PubSubHubbub via Joss Winn&#8217;s Learning Lab blog at the University of Lincoln.
It&#8217;s a way for RSS/Atom feed consumers (feed readers etc) to be instantly updated and notified when an RSS is updated.
In a nutshell, the RSS publisher notifies a specific hub when it has a new item. The hub then [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2007/rss-and-php/' rel='bookmark' title='Permanent Link: Rss and PHP'>Rss and PHP</a></li>
<li><a href='http://www.nostuff.org/words/2008/navel-gazing/' rel='bookmark' title='Permanent Link: Navel gazing'>Navel gazing</a></li>
<li><a href='http://www.nostuff.org/words/2009/google-reader-shared-stuff/' rel='bookmark' title='Permanent Link: Google Reader &#8211; shared stuff'>Google Reader &#8211; shared stuff</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have just come across <a href="http://code.google.com/p/pubsubhubbub/">PubSubHubbub</a> via <a href="http://joss.blogs.lincoln.ac.uk/2009/07/11/pubsubhubbub-realtime-rss-and-atom-feeds/">Joss Winn&#8217;s Learning Lab blog</a> at the University of Lincoln.</p>
<p>It&#8217;s a way for RSS/Atom feed consumers (feed readers etc) to be instantly updated and notified when an RSS is updated.</p>
<p>In a nutshell, the RSS publisher notifies a specific hub when it has a new item. The hub then notifies &#8211; instantly &#8211; any subscribers who have requested the hub to contact them when there is an update.</p>
<p>This is all automatic and requires no special setup by users. Once the feed producer has set up PubSubHubbub, and specified a particular, the RSS feed has an extra entry in the feed itself telling subscribing client systems that they can use a specific hub for this feed. Clients which do not understand this line will just ignore and carry on as normal.Those that are compatible with PubSubHubbub can then contact the hub and ask to be notified when there are updates.</p>
<p>It has been developed by Google, and they&#8217;ve implemented it in to various Google services such as Google Reader and Blogger. This should help give it momentum (which is also crucial for this sorts of things). In a video on Joss&#8217; post (linked to above) the developers demonstrate posting an article and showing Google Reader instantly update the article count for that feed (in fact, before the blog software has even finished loading the page after the user has hit &#8216;publish&#8217;). It reminds be of the speed of Friendfeed, I will often see by friendfeed stream webpage update with my latest tweet before I see it sent from twirl.</p>
<p><iframe src='http://docs.google.com/present/embed?id=ajd8t6gk4mh2_34dvbpchfs&#038;size=m' frameborder='0' width='555' height='451'></iframe></p>
<p>I&#8217;ve installed a <a href="http://wordpress.org/extend/plugins/pubsubhubbub/">PubSubHubbub Wordpress plugin</a> for this blog. Let&#8217;s hope it takes off</p>
<p>UPDATE: I&#8217;ve just looked at the source of my feed ( http://www.nostuff.org/words/feed/ ) and saw the following line:</p>
<p><code>&lt;atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/&gt;</code></p>
<div class='wp_likes' id='wp_likes_post-426'><a class='like' href="javascript:wp_likes.like(426);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(426);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fpubsubhubbub-instant-rss-and-atom%2F&amp;linkname=PubSubHubbub%20instant%20RSS%20and%20Atom"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2007/rss-and-php/' rel='bookmark' title='Permanent Link: Rss and PHP'>Rss and PHP</a></li>
<li><a href='http://www.nostuff.org/words/2008/navel-gazing/' rel='bookmark' title='Permanent Link: Navel gazing'>Navel gazing</a></li>
<li><a href='http://www.nostuff.org/words/2009/google-reader-shared-stuff/' rel='bookmark' title='Permanent Link: Google Reader &#8211; shared stuff'>Google Reader &#8211; shared stuff</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/pubsubhubbub-instant-rss-and-atom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Amazon AWS EC2 and vufind</title>
		<link>http://www.nostuff.org/words/2009/amazon-aws-ec2-and-vufind/</link>
		<comments>http://www.nostuff.org/words/2009/amazon-aws-ec2-and-vufind/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 21:53:36 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[vufind]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=419</guid>
		<description><![CDATA[Today I saw a tweet from juliancheal, which mentioned he was setting up his virtual server on slicehost. I hadn&#8217;t heard of this company but their offering looks interesting. This got me thinking about cloud hosting and I decided it was time to actually try out Amazon&#8217;s AWS EC2.This allows you to run a virtual [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/webpad-a-web-based-text-editor-and-file-manager/' rel='bookmark' title='Permanent Link: webpad : a web based text editor'>webpad : a web based text editor</a></li>
<li><a href='http://www.nostuff.org/words/2007/amazon-censor-reviews-of-the-high-arts/' rel='bookmark' title='Permanent Link: Amazon : censor reviews of the high arts'>Amazon : censor reviews of the high arts</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I saw a tweet from <a href="http://twitter.com/juliancheal">juliancheal</a>, which mentioned he was setting up his virtual server on <a href="http://www.slicehost.com/">slicehost</a>. I hadn&#8217;t heard of this company but their offering looks interesting. This got me thinking about cloud hosting and I decided it was time to actually try out <a href="http://aws.amazon.com/ec2/">Amazon&#8217;s AWS EC2</a>.This allows you to run a virtual server (or multiple servers) in the Amazon cloud, servers can be created and destroyed by a click of a button.</p>
<p>First thing is to get a server &#8216;image&#8217; to run in the cloud. Thankfully many have already been created. I went for a recent <a href="http://alestic.com/">ubuntu server by Eric Hammond</a>. This is basically a ubuntu server vanilla install, but with a few tweaks to work nicely as a EC2 virtual server. Perfect!</p>
<p>Signing up is quick and easy, it just uses your Amazon (the shop) credentials. Once created, you are taken back to the main control panel where you can see your new instance, including details like the all important public DNS name.  Just save a private key to your computer and use it to ssh in to your new server.</p>
<p>e.g.: ssh -i key1.pem root@ec2-174-129-145-xx.compute.amazonaws.com</p>
<p>(you may need to chmod 400 the key file, but all this is documented)</p>
<p>Once in, well it&#8217;s a new server, what do you want to do with it?</p>
<p>I installed a LAMP stack (very easy in ubuntu: <em>apt-get update</em> and then <em>tasksel install lamp-server</em>). I initally couldn&#8217;t connect to apache (but could from the server itself using &#8216;telent localhost 80&#8242;). I presumed it was a ubuntu firewall issue, but it turned out you also control these things from the AWS control panel. The solution was to go to &#8217;security groups&#8217; and modify the group I had created when setting things up and adding HTTP to &#8216;Allowed Connections&#8217;. This couldn&#8217;t of been easier. And then success, I could point my browser at the DNS name of the host and saw my test index page from the web server.</p>
<p><a href="http://www.nostuff.org/words/wp-content//2009/07/Picture-8.png"><img class="aligncenter size-medium wp-image-420" title="Amazon aws control panel, modify to allow http connections" src="http://www.nostuff.org/words/wp-content//2009/07/Picture-8-300x131.png" alt="Amazon aws control panel, modify to allow http connections" width="300" height="131" /></a></p>
<p>So now what? I pondered this out loud via Twitter, and got this reply:</p>
<p><a href="http://www.nostuff.org/words/wp-content//2009/07/Picture-9.png"><img class="aligncenter size-medium wp-image-421" title="vufind-twitter" src="http://www.nostuff.org/words/wp-content//2009/07/Picture-9-300x179.png" alt="vufind-twitter" width="300" height="179" /></a></p>
<p>Excellent idea!</p>
<p>Good news:<a href="http://vufind.org/"> vufind</a> has some good &#8211; and simple &#8211; documentation for installing on ubuntu;</p>
<p><a href="http://vufind.org/wiki/installation_ubuntu">http://vufind.org/wiki/installation_ubuntu</a></p>
<p>Following the instructions (and editing them as well, they specified an earlier release and lacked a couple of steps if you weren&#8217;t also reading the more general install instructions) I quickly had a vufind installation up and running. Took around 20-25 minutes in all.</p>
<p>Now to add some catalogue data to the installation. I grabbed a MARC file with some journal records from one of our servers at work and copied it across as a test (I copied it just by using a scp command logged in to my ec2 server). After running the import script I had the following:</p>
<p><a href="http://www.nostuff.org/words/wp-content//2009/07/Picture-7.png"><img class="aligncenter size-medium wp-image-422" title="vufind results." src="http://www.nostuff.org/words/wp-content//2009/07/Picture-7-300x218.png" alt="vufind results." width="300" height="218" /></a>If the server is still running when you read this then you can access it here:</p>
<p><a href="http://ec2-174-129-145-75.compute-1.amazonaws.com/vufind/">http://ec2-174-129-145-75.compute-1.amazonaws.com/vufind/</a></p>
<p>EC2 is charged by the hour, and while cheap, I can&#8217;t afford to leave it running for ever. <img src='http://www.nostuff.org/words/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, a successful evening. Mainly due to the ease of both Amazon EC2 and Vufind.</p>
<p>A final note that if you are interested in EC2 you may want to look at some notes made by Joss Winn as part of the jiscpress project: <a href="http://code.google.com/p/jiscpress/wiki/AmazonWebServices">http://code.google.com/p/jiscpress/wiki/AmazonWebServices</a></p>
<p>Both Ec2 and vufind are worth further investigation.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Famazon-aws-ec2-and-vufind%2F&amp;linkname=Amazon%20AWS%20EC2%20and%20vufind"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/webpad-a-web-based-text-editor-and-file-manager/' rel='bookmark' title='Permanent Link: webpad : a web based text editor'>webpad : a web based text editor</a></li>
<li><a href='http://www.nostuff.org/words/2007/amazon-censor-reviews-of-the-high-arts/' rel='bookmark' title='Permanent Link: Amazon : censor reviews of the high arts'>Amazon : censor reviews of the high arts</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/amazon-aws-ec2-and-vufind/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Data Imperative: Libraries and Research Data : comment</title>
		<link>http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/</link>
		<comments>http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 20:20:08 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[me me me]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[open access]]></category>
		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=401</guid>
		<description><![CDATA[I put this in to a seperate post. It continues on from my previous post, but didn&#8217;t want my notes of the day to be taken over by my ill thought views.
Personal Thoughts
Reluctant to give some thoughts as I know so little about the service. However&#8230; (!)
There seems to be two clear areas here: Data [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/' rel='bookmark' title='Permanent Link: Event: The Data Imperative: Libraries and Research Data'>Event: The Data Imperative: Libraries and Research Data</a></li>
<li><a href='http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/' rel='bookmark' title='Permanent Link: Research in the Open: How Mandates Work in Practice'>Research in the Open: How Mandates Work in Practice</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I put this in to a seperate post. It continues on from my previous post, but didn&#8217;t want my notes of the day to be taken over by my ill thought views.</p>
<p><strong>Personal Thoughts</strong></p>
<p>Reluctant to give some thoughts as I know so little about the service. However&#8230; (!)</p>
<p>There seems to be two clear areas here: Data formatting and Data storing. There is some linkage (Preserving surely covers both, formats can become obsolete, Servers die), yet the two seem to be somewhat seperate.</p>
<p>Both require IT skills, but IT is a broad church, the former is technical metadata (and is very much IT and library) and in the general area that I sees covered in the Eduserv <a href="http://efoundations.typepad.com/">efoundations</a> blog.</p>
<p>The latter in its simplest form is hard core infrastructure. Disks, sans, servers, security, but also has elements at the application level (how do we access it, using what software, repositories? CRIS? Fedora?).</p>
<p>On another issue, while it is easy to say that libraries should take the lead, I think we need to be cautious. With the current climate of frozen or decreasing budgets nationally, and journal subscription pressure, how wise is it to go to the University&#8217;s executive and demand funding for resources/staff for data management. We know it&#8217;s important and could make the process of research more efficient, but there are other things higher up a Universities list of priorities (NSS/atracting good students, REF, research funding). Even at a library level, journals help researchers do research (which brings funding), and keep students happy because we have the stuff they need (NSS). How many journals should we cancel to focus on Research Data? Why? The recent JISC call will help with providing a business case.</p>
<p>The problem at the moment is that there are not enough clear benefits for most Universities to steam ahead with this. Let&#8217;s clarify this: not enough benefits for the institution itself. The benefits are for the UK as a while (actually, the while world). It&#8217;s the UK-wide economy and research that will benefit. So maybe it needs UK-wide funding. It&#8217;s easier to convince someone (or something) to spend money when the benefits for them are clear. In this case the benefits are for UK so it should the UK which sets aside explicit cash (via HEFCE, JISC, and so on).</p>
<p>And this is happening, with the JISC call (talked about today), amongst other things it will help build examples.</p>
<p>But I&#8217;m not sure if the institutional level is the best one. Australia has been successful with a centralised approach. We have a number of small Universities, and those which only have one or two departments which are research active. Yet the resources/knowledge required of them will be similar to that of a large institution. Will this leave them at a disadvantage?</p>
<p>On another note, it seems the range of data is vast. When dicussing this, I always &#8211; incorrectly &#8211; picture text based data, of vearying size, perhaps using XML. Of course this is blinkered. For auido, images and similar should a data service just provide a method to download, or a method to browse and view/listen? When it comes to storage and delivery, should we just treat all data as &#8216;blobs&#8217; &#8211; things to be downloaded as a file, and we no nothing more with it? This makes it easy and repository softwareapplications (eprints/dspace/fedora) are well placed to cater to this need. But I get the impression that this is somewhat simplistic. Perhaps this means a data service needs a clear scope, otherwise we could end up building front end applications which mimic flickr, youtube and last.fm all in one. A costly path to go down.</p>
<p>[all views are my own. are wrong, badly worded, ill thought, why are you reading this?, just think the opposite and it will be right, etc]</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fthe-data-imperative-libraries-and-research-data-commet%2F&amp;linkname=The%20Data%20Imperative%3A%20Libraries%20and%20Research%20Data%20%3A%20comment"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/' rel='bookmark' title='Permanent Link: Event: The Data Imperative: Libraries and Research Data'>Event: The Data Imperative: Libraries and Research Data</a></li>
<li><a href='http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/' rel='bookmark' title='Permanent Link: Research in the Open: How Mandates Work in Practice'>Research in the Open: How Mandates Work in Practice</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Event: The Data Imperative: Libraries and Research Data</title>
		<link>http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/</link>
		<comments>http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 17:26:06 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[or08]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=393</guid>
		<description><![CDATA[Today I&#8217;m at the one day event &#8216;The Data Imperative:  Libraries and Research Data&#8217; at the Oxford e-research Centre. As usual, these are my own rough notes. There are mistakes, gaps and my own interpretation of what was said.
Paul Jeffreys : Director of IT, Oxford University.
Started off giving an overview of where this has [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/' rel='bookmark' title='Permanent Link: The Data Imperative: Libraries and Research Data : comment'>The Data Imperative: Libraries and Research Data : comment</a></li>
<li><a href='http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/' rel='bookmark' title='Permanent Link: Research in the Open: How Mandates Work in Practice'>Research in the Open: How Mandates Work in Practice</a></li>
<li><a href='http://www.nostuff.org/words/2008/or08-session-2b-sustainability-issues/' rel='bookmark' title='Permanent Link: or08: session 2b: Sustainability Issues'>or08: session 2b: Sustainability Issues</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="documentFirstHeading">Today I&#8217;m at the one day event &#8216;<span id="parent-fieldname-title">The <span class="highlightedSearchTerm">Data</span> <span class="highlightedSearchTerm">Imperative</span>:  Libraries and Research <span class="highlightedSearchTerm">Data&#8217; at the Oxford e-research Centre. As usual, these are my own rough notes. There are mistakes, gaps and my own interpretation of what was said.</span></span></p>
<h3 class="documentFirstHeading"><span><span class="highlightedSearchTerm">Paul Jeffreys : Director of IT, Oxford University.</span></span></h3>
<p class="documentFirstHeading"><span><span class="highlightedSearchTerm">Started off giving an overview of where this has come from. e-Research is more than just e-Infrastructure. e-Research is not just about outputs, but outputs (articles/data) are a part of this, and an discreet area to work on. </span></span></p>
<p class="documentFirstHeading"><span><span class="highlightedSearchTerm">This is a cross-discipline area, it needs academics, University executive, research office, IT and Library. Libraries have skills that have to be fed in to this.</span></span></p>
<p class="documentFirstHeading"><span><span class="highlightedSearchTerm">EIDCSR : &#8216;Enough talking,  let&#8217;s try and do it&#8217;, selected two research groups to work with, but not a pilot, a long term commitment. He talks about Oxford&#8217;s commitment to a data repository, it stresses cross agencies, mentions business models and feeds in to a senior research committee (the quote is far too long to add here!).</span></span></p>
<p class="documentFirstHeading"><span><span class="highlightedSearchTerm">As each HEI is facing the same issue, it makes sense for national activity. but how much is done locally and how much is done nationally.<br />
</span></span>
</p>
<p class="documentFirstHeading"><span><span class="highlightedSearchTerm">What is the vision of research management data? To what extent is managing research data the role of the Library/librarians? Is data management and data repositories a new kind of activity? Is it Librarians or Information Professionals who are charged to take this forward? [cjk: i thought they were one and the same]</span></span></p>
<p class="documentFirstHeading">
<h3>John K Milner : Project Manager UKRDS</h3>
<p class="documentFirstHeading">Can&#8217;t just use existing subject specific data centres. Need for cross-discipline (eg climate change) and therefore universal standards and methods so one subject can use another subject&#8217;s data with ease.</p>
<p class="documentFirstHeading">Feasibility study:</p>
<p class="documentFirstHeading">Understand what is happening today? where are the gaps. Avoid re-inventing the wheel.</p>
<p class="documentFirstHeading">Four Case studies (Bristol, Leeds, Leicester, Oxford), views of ~700 researchers over all disciplines (inc the arts).</p>
<p class="documentFirstHeading">What did they learn?</p>
<p class="documentFirstHeading">About half of the data has a useful life of 10 years? 26% has &#8216;indefinite&#8217; value, ie keep for ever&#8217; Nearly all kept locally (memory stick, departmental server, [cjk: not good!]).</p>
<p class="documentFirstHeading">21% use a national/international data centre. 18% share with them.</p>
<p class="documentFirstHeading">UK has rich landscape of facilities, skills and infrastructure.</p>
<p class="documentFirstHeading">The management of data from a research project are now starting to be directly funded, which is important.</p>
<p class="documentFirstHeading">What are others doing? Are we in step with other countries? Yes. US spending $100 million on 5 large data centres. Australians are leading in this area, and have a central approach to it. Canada and Germany also have similar developments.</p>
<p class="documentFirstHeading">Aim: to set up a framework for research data.</p>
<p class="documentFirstHeading">Why Pathfinder: not a pilot but the start of a long term commitment.</p>
<p class="documentFirstHeading">[my notes miss a bit here, had to deal with a urgent work issue]</p>
<p class="documentFirstHeading">Service must be useful and accessible. Need a framework for stakeholder engagement.</p>
<p class="documentFirstHeading">This is non-trivial. Lots of parties involved, a lot of effort needed.</p>
<p class="documentFirstHeading">Citation of datasets is of growing interest to some researchers, this may help engage the research community.</p>
<p class="documentFirstHeading">Showing a diagram of UKRDS Basic processes. Split between &#8216;Research Project process&#8217;, Research data sharing process and UKRDS Services and Administration</p>
<p class="documentFirstHeading">Diagram doesn&#8217;t focus on curation but on accessibility (inc discovery, stable storage, identity) as this seems like the most important part. Discovery:Google, Identity(auth):Shibboleth.</p>
<p class="documentFirstHeading">Making it happen.</p>
<p class="documentFirstHeading">Need clearly defined service elements, will involve DCC, RIN and data centres.</p>
<p class="documentFirstHeading">HEIs need a reliable back-office service to handle working with data.</p>
<p class="documentFirstHeading">UKRDS is extremely challenging, nothing is easy and it is expensive. Needs support of funders and HEIs, need the right bodies to show leadership and shape policy. It will take time.</p>
<p class="documentFirstHeading">Q: Is it limited to HEI or public sector (museums etc). A: a more complicated issue, but they are working with the liked of Connecting for Health and DEFRA.</p>
<p class="documentFirstHeading">Q: Copyright. A: HEI often don&#8217;t own copyright. Data Management Plan (Wellcome are funding Data planning as part of funding)</p>
<p class="documentFirstHeading">Q: Is it retrospective? A: Could be. [he did say more]</p>
<p class="documentFirstHeading">Q: Could UKRDS influence &#8216;reputational kick back&#8217; [nice phase!] e.g. for the REF. A: Yes, in discussion with HEFCE.</p>
<p class="documentFirstHeading">Q: Research Councils A: they are in discussion with RCs but Wellcome very much taking the lead (leap of faith) in the area. The whole key is a &#8216;value proposition&#8217; which makes a case for funding this.</p>
<p class="documentFirstHeading">Q/point: Engage government/politicians.</p>
<p class="documentFirstHeading">Q: Challenge in explaining what it is, especially for subjects which are already doing something with data. How can we tap in to those already doing it? A: there is sometimes a missing link between researchers and subject national data centres. No real relationship between the two. Which is a problem in cross-subject research.</p>
<h3 class="documentFirstHeading">Research <span class="highlightedSearchTerm">data</span> management at the University of <span class="highlightedSearchTerm">Oxford</span>:  a case study for institutional engagement &#8211; Luis Martinez, OeRC, Sally Rumsey, <span class="highlightedSearchTerm">Oxford</span> University <span class="highlightedSearchTerm">Library</span> Service</h3>
<p class="documentFirstHeading">More of a &#8216;in practice&#8217; talk, rather than high level.</p>
<p class="documentFirstHeading"><strong>Luis Martinez</strong></p>
<p class="documentFirstHeading">Scoping study: &#8216;<a href="http://www.disc-uk.org/datashare.html">DataShare project</a>&#8216;. Talking to researchers they found some couldn&#8217;t understand they own old data, some wanted to publish their own data, some found data was lost when academics moved on.</p>
<p class="documentFirstHeading">Requirements: Advice/support across research cycle (where to store it, how, etc), Secure Storage for large dataset. Sustainably infrastructure.</p>
<p class="documentFirstHeading">Lots of different Oxford units need to be consulted (library, it, research technology, academics, legal, repository etc).</p>
<p class="documentFirstHeading">Findings after consultation: there is actually widespread expertise in data management and curation amongst service units, and other findings. DataShare: new models, tools, workflows for academic data sharing.</p>
<p class="documentFirstHeading"><a href="http://www.data-audit.eu/">Data Audit Framework</a>: (DAF) adapted this to Oxford needs and used it to document practices in research groups.</p>
<p class="documentFirstHeading">&#8216;<a href="http://www.google.co.uk/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.disc-uk.org%2Fdocs%2Fguide.pdf&amp;ei=_VQmStD6HsLMjAey9vHdBw&amp;usg=AFQjCNGevMHDV9M5yUYsL2981q0o2lxGmw&amp;sig2=ktq8WNDkPkA2E2vxqXmYgw">Policy-making for Research Data in Repositories : a guide</a>&#8216; [pdf]</p>
<p class="documentFirstHeading">The EIDCSR challenge: two units that both research around the human heart. The two groups share the data between them and agree to produce 3d models using the combined data. They are helping this groups do this, using a &#8216;life cycle approach&#8217;.</p>
<p class="documentFirstHeading">Using the DAF to capture the requirements. Participating in the UKRDS Pathfinder (as above).</p>
<p class="documentFirstHeading">They have a blog <a href="http://eidcsr.blogspot.com/">http://eidcsr.blogspot.com/</a></p>
<p class="documentFirstHeading"><strong>Sally Rumsey</strong></p>
<p class="documentFirstHeading">Starts of by talking about the roles required regarding the library. They have Repository staff, librarians, curators, but not so sure about &#8216;data librarians&#8217;.</p>
<p class="documentFirstHeading">What should of data should they be responsible for? Some stuff can go to a national service. There are vast datasets (eg Oxford Supercomputing centre), who has the expertise to make these specialised datasets available. Some departments already have provision in place, fine, why rock the boat.</p>
<p class="documentFirstHeading">Long tail. Every thing else (not above). No other home, lots of it, Academics asking for it, highly individual (ie unique), hums and sciences.</p>
<p class="documentFirstHeading">Things to consider: live or changing data Freely available or restricted? Long term post project?</p>
<p class="documentFirstHeading">Showing what looks like a list of random words/letters/strings of chars, an example of some data they were asked to look after from the English department.</p>
<p class="documentFirstHeading">Showing a diagram showing that Fedora (a repository system which is strong on metadata/structure but lacks an out of the box UI) is key to the setup. many applications can sit on top of it. Institutional Repository is just one application which runs on top of Fedora.</p>
<p class="documentFirstHeading">ORA (IR) for DATA: actual data can be held anywhere in University but ORA is a place of discovery. Allows for referencing of data. Might want to link to &#8216;<a href="http://databank.ouls.ox.ac.uk/">DataBank</a>&#8216; (a proof of concept to show what is possible).</p>
<p class="documentFirstHeading">Databank: how do you search/discover? First things added were audio files, perhaps then photos, how do you find them?</p>
<p class="documentFirstHeading">Showing Databank. Explaining that everything has a uid so we have cool URLs, and hence you can link to it [yes!]. Explaining how you can group an audio object, a related photo object and a related text object (perhaps explaining it).</p>
<p class="documentFirstHeading">End of morning discussion (I&#8217;ll just note some points I picked up):</p>
<p class="documentFirstHeading">This seems to raise such huge resource implications.</p>
<p class="documentFirstHeading">DAF is flexible, you can pick elements of it to use.</p>
<p class="documentFirstHeading">Non academic repositories, such as flickr, preservation issues, if they go down. [unlike the AHDS then!]</p>
<p class="documentFirstHeading"><strong>The Research <span class="highlightedSearchTerm">Data</span> Management Workforce &#8211; Alma Swan, Key Perspectives </strong></p>
<p class="documentFirstHeading">Study commissioned by JISC, looking at the &#8217;supply of DS [data scientists] skills&#8217;.</p>
<p class="documentFirstHeading">NSF Roles:</p>
<ul>
<li>Data Authors &#8211; produce data</li>
<li>Data Managers &#8211; more technical people &#8211; often work in partnership with data authors</li>
<li>Data Users</li>
<li>Data Scientists &#8211; expert data handlers and managers (perhaps &#8216;Data Manager&#8217; was a confusing name).</li>
</ul>
<p class="documentFirstHeading">Our Definitions (but in practice the roles and names are fuzzy):</p>
<ul>
<li>Data creators or authors</li>
<li>Data Scientists</li>
<li>Data Managers</li>
<li>Data Librarians</li>
</ul>
<p><strong>Data Creators</strong></p>
<p>Using <a href="http://www.dcc.ac.uk/docs/publications/DCCLifecycle.pdf">DCC Curation lifecycle model</a>, these are the out ring. But not all of it, and do things not on the ring, such as throw data away.</p>
<p>Shows picture of an academics office. Data is stored in random envelops.</p>
<p><strong>Data Scientists &#8211; the focus of this study</strong></p>
<p>Work with the researchers, in the same lab. Do most things in the DCC model. Are computer scientists (or can be one), experts in database technologies, ensure systems are in place, format migration. A &#8216;translation service&#8217; between Researchers and computer experts.</p>
<p>Lots of facts about this, based on the research. Often fallen in to the role by accident, often started out as a researcher. Domain (maths, chemistry) related or Computer training. Informatics Skills: well advanced in biology and chemistry. Majority have a further degree. Need People skills. Rapidly involving area.</p>
<p><strong>Data Librarians</strong></p>
<p>Only a handful in the UK. specific skills in data care, curation. Bottom half (or bottom two thirds) of DCC model.</p>
<p>Library schools have not yet geared up for training. Demand is low, no established career path. Good subject-based first degree is required.</p>
<p>Things are changing, eg library schools are creating courses/modules around this.</p>
<p>Future Roles of the library</p>
<p>train researchers to be more data aware</p>
<p>Pressing issue inform researchers on data principles, eg ownership.</p>
<p>Open Data : datasets</p>
<p>A growing recognition across all disciplines that articles aren&#8217;t enough, datasets are what are needed to be in the open.</p>
<p>Datasets are a resource in their own right.</p>
<p>Publishers do not normally claim ownership of datasets. Some are (usual suspects)</p>
<p>Funder may own Data, Employers may own data. No one seems sure. Several entities may own the data.</p>
<p>In some areas of research journals play role in enforcement.</p>
<p>Some journals are just data.</p>
<p>Using PDF for data is very very not good.</p>
<p>Do we leave preservation of data to publishers [cjk: no! they should have nothing to do with this, the actors are Universities, their employees and their funders]</p>
<h3><strong>Simon Hodson &#8211; JISC Data Management Infrastructure Programme<br />
</strong></h3>
<p>Something problem, not easy to tackle. Would be a mistake for institutions to wait. The Call is designed to better understand how its data management facility can be taken forward.</p>
<p>Detailed business cases are needed.</p>
<p>Needs everyone (HEI, funders, data centres, RIN, etc) to be on board.</p>
<p>the Call will have an Advisory Group.</p>
<p>&#8216;Exemplar projects and studies designed to help establish partnership between researchers, institutions, research councils.</p>
<p>See DCC as playing a major role in developing capacity and skills in the sector.</p>
<p>Tools and technologies: tools to help managers make business case internally, institutional planning tools (building on DAT, DRAMBORA, and costing tools). Workshop 1oth June DCC to review progress/outcomes of DAT project.</p>
<p>Two calls planned for the early Autumn.</p>
<p>2 June Call: Infrastructure. To build examples within the sector. Requirements analysis -&gt; Implementation plan -&gt; Execution thereof -&gt; business models.</p>
<p>Bids encouraged from consortia.</p>
<p>Briefing day 6 July. DCC will provide support for bids, including a specific helpdesk.</p>
<p>There may be a Digital Curation course in the next few weeks.</p>
<h3>Libraries and Research <span class="highlightedSearchTerm">Data</span> Management; conclusions &#8211; Martin Lewis, Director of <span class="highlightedSearchTerm">Library</span> Services and University Librarian, University of Sheffield.</h3>
<p>Martin had been chairing all day and here he sums up and bring the various threads together.</p>
<p>The library research data pyramid. Things at the bottom need to be in place before things higher up. At the bottom, training in library (confidence), Library schools. Then develop local data curation capacity, teach data literacy. Higher up: research data awareness, research data advice, Lead on local policy. At the very top &#8216;influence national data agenda&#8217;.</p>
<p><strong>Summary</strong></p>
<p>An excellent day and excellent knowledgeable speakers. Nice venue, and most importantly, I found the only plug socket in the room!</p>
<p>This is clearly an emerging area. Many are in the same posistion, they are aware of the (Opene) Research Data developments, but nothing has yet happened at their university, nor academics queuing up to demand such a service. This is a good thing and it needs to happen, and Universities need to start acting now. But there are many preasures on University resources at the moment. How high on the institutional priority list will this come?</p>
<p>[Very finally, I did another audioboo experiment. On the fly, with no pre-planning, I recorded about 2 minutes of talk during the lunch. It's random, with no thought, many umms, a pointless 'one more thing' and basically wrong. <a href="http://audioboo.fm/boos/27212-data-imperative-libraries-and-research-data">laugh at it here</a>]</p>
<div class='wp_likes' id='wp_likes_post-393'><a class='like' href="javascript:wp_likes.like(393);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(393);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fevent-the-data-imperative-libraries-and-research-data%2F&amp;linkname=Event%3A%20The%20Data%20Imperative%3A%20Libraries%20and%20Research%20Data"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/' rel='bookmark' title='Permanent Link: The Data Imperative: Libraries and Research Data : comment'>The Data Imperative: Libraries and Research Data : comment</a></li>
<li><a href='http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/' rel='bookmark' title='Permanent Link: Research in the Open: How Mandates Work in Practice'>Research in the Open: How Mandates Work in Practice</a></li>
<li><a href='http://www.nostuff.org/words/2008/or08-session-2b-sustainability-issues/' rel='bookmark' title='Permanent Link: or08: session 2b: Sustainability Issues'>or08: session 2b: Sustainability Issues</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>European Elections : June 4th</title>
		<link>http://www.nostuff.org/words/2009/european-elections-june-4th/</link>
		<comments>http://www.nostuff.org/words/2009/european-elections-june-4th/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 22:02:12 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[politics and current affairs]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[europe]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=386</guid>
		<description><![CDATA[A quick post (my reader rejoices).
European Elections are this Thursday. I wont bore you with my long winded thoughts on the EU, but it basically sums up as: conceptually a good idea, fundamentally broken.
The world is changing, the big players include the likes of the US, China, India, Russia and Brazil. These all dwarf us [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2007/brighton-local-council-elections-may-2007/' rel='bookmark' title='Permanent Link: Brighton local council elections : May 2007'>Brighton local council elections : May 2007</a></li>
<li><a href='http://www.nostuff.org/words/2007/brighton-and-hove-local-elections/' rel='bookmark' title='Permanent Link: Brighton and Hove local elections'>Brighton and Hove local elections</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A quick post (my reader rejoices).</p>
<p>European Elections are this Thursday. I wont bore you with my long winded thoughts on the EU, but it basically sums up as: conceptually a good idea, fundamentally broken.</p>
<p>The world is changing, the big players include the likes of the US, China, India, Russia and Brazil. These all dwarf us little European countries, the EU can make us a voice on the international stage. Just as importantly, working together can be very good for us (and good for the economy). But at the same time, it wastes huge amounts of money, seems unaccountable and lacks a clear remit. Worst of all, the one thing that should be more important  than just about anything else &#8211; safe guarding energy natural resources &#8211; the EU failed massively on (the one pipe line which bypasses Russia which was up from grabs was bought not by the EU&#8230; but by Russia).</p>
<p>So who to vote for? I used a website aimed at matching your views with those of the closest mathcing parties. The closest match to me? Libertas. Liber<em>who</em>? A new pan-European party who seem to basically think along the same lines: Not against the EU, but it needs a lot of fixing, limits and it needs to know it&#8217;s place.</p>
<p>I can&#8217;t say too much more as at the time of writing their website seems to be down <a href="http://www.libertas.eu/uk">http://www.libertas.eu/uk</a>. Small parties can be a bit of a joke, but my brief glance of the site when it was up did not give the impression they are a bunch of nutters.</p>
<p>I like the <a href="http://www.libdemmeps.org.uk/">Liberal Democrats</a> overall positive approach to Europe, though would like to see a &#8216;we must spend carefully and make the EU more accountable&#8217; element to their position. If the EU is to win the respect of its citizens then it needs to be able to abide by its own rules and treat each pound/euro as if it is its last. They also had the worst leaflet ever. Both visually (argh the colours) and content.</p>
<p>And while talking about leaflets (you weren&#8217;t?). The labour one had a cover like this:</p>
<p><a href="http://www.nostuff.org/words/wp-content//2009/06/img_1589a.jpg"><img class="aligncenter size-medium wp-image-389" title="labour leaflet" src="http://www.nostuff.org/words/wp-content//2009/06/img_1589a-300x286.jpg" alt="labour leaflet" width="300" height="286" /></a>A stock quote, using a stock photo with some (nice English sounding) made up names. To prove this obvious point I googled for &#8216;Karen Barford Brighton&#8217;, and would you adam and eve it, she exists! See her <a href="http://www.facebook.com/profile.php?id=622190355&amp;v=info&amp;viewas=636765879">Facebook profile </a>(which at the time of writing is public accessible). Not sure if I would want to be splashed over the front page of an election leaflet, even if I was a support of one party. Still, leaflet crap, much of telling us that Gordan Brown is the man we want. a: bad call, if anything try to seperate the european labour meps from Brown and co to avoid negative associated &#8211; and  b: what has Brown got to do with Europe. There wasn&#8217;t a single photo of the candidates in question, just pictures of Brown. Stalin would be proud.</p>
<div class='wp_likes' id='wp_likes_post-386'><a class='like' href="javascript:wp_likes.like(386);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(386);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Feuropean-elections-june-4th%2F&amp;linkname=European%20Elections%20%3A%20June%204th"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2007/brighton-local-council-elections-may-2007/' rel='bookmark' title='Permanent Link: Brighton local council elections : May 2007'>Brighton local council elections : May 2007</a></li>
<li><a href='http://www.nostuff.org/words/2007/brighton-and-hove-local-elections/' rel='bookmark' title='Permanent Link: Brighton and Hove local elections'>Brighton and Hove local elections</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/european-elections-june-4th/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Research in the Open: How Mandates Work in Practice</title>
		<link>http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/</link>
		<comments>http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/#comments</comments>
		<pubDate>Fri, 29 May 2009 09:28:35 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[open access]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[rsp]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=370</guid>
		<description><![CDATA[Today I&#8217;m at the RSP/RIN Research in the Open: How Mandates Work in Practice at the impressive RIBA 66 Portland Place.
Slides can be found here (not available when I made this post, as semi excuse as to why my notes miss so much). These are rough notes, which I&#8217;m making available in case others are [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/' rel='bookmark' title='Permanent Link: Event: The Data Imperative: Libraries and Research Data'>Event: The Data Imperative: Libraries and Research Data</a></li>
<li><a href='http://www.nostuff.org/words/2008/or08-open-repositories-2008/' rel='bookmark' title='Permanent Link: or08: Open Repositories 2008'>or08: Open Repositories 2008</a></li>
<li><a href='http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/' rel='bookmark' title='Permanent Link: The Data Imperative: Libraries and Research Data : comment'>The Data Imperative: Libraries and Research Data : comment</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;m at the RSP/RIN <a href="http://www.rsp.ac.uk/events/index.php?page=MandatesDay2009/index.php">Research in the Open: How Mandates Work in Practice</a> at the impressive <a href="http://www.architecture.com/RIBAVenues/About66PP.aspx">RIBA 66 Portland Place</a>.</p>
<p>Slides can be found <a href="http://www.rsp.ac.uk/events/index.php?page=MandatesDay2009/index.php">here</a> (not available when I made this post, as semi excuse as to why my notes miss so much). These are rough notes, which I&#8217;m making available in case others are interested, apologies for mistakes and don&#8217;t take it as gospel!</p>
<p>After an introduction by <em>Stéphane Goldstein, kicking off with </em><strong><em>Robert Kiley from the Wellcome Trust.</em></strong></p>
<p><strong><em><a href="http://farm4.static.flickr.com/3658/3574952609_442086aa40.jpg?v=0"><img class="alignright" title="rsp1" src="http://farm4.static.flickr.com/3658/3574952609_442086aa40.jpg?v=0" alt="" width="259" height="300" /></a></em></strong></p>
<p>Wellcome trust mandate since 2006, anyone receiving funding from <a href="http://www.wellcome.ac.uk/">Wellcome Trust</a> must deposit in to pubmed, now <a href="http://ukpmc.ac.uk/">uk pubmed central</a>. <em><a href="http://www.sherpa.ac.uk/juliet/">SHERPA Juliet</a> lists 48 funder policies/mandates.</em></p>
<p>Two routes to complying to their mandate: (route 1) publisher in open access / hybrid journal (preferred), Wellcome will normally pay any associated fees. However when paying the publisher, they expect a certain level of service in return (deposited on behalf of author, final version available at time of publication, certain level of re-use. Route 2 Author self-archives author&#8217;s final version within 6 months of publication. It was stressed that the first option is very much preferred.<em> </em></p>
<p>&#8220;Publication costs are legitimate research costs&#8221;. To fund Open Access fees for ALL research they fund would, they estimate. take up 1-2% of their budget.</p>
<p>Risk of &#8216;Double payment&#8217; (author fees and subscriptions). <a href="http://www.oxfordjournals.org/">OUP</a> have a good model here.</p>
<p>Still to do:</p>
<ul>
<li>Improve compliance (roughly 33%, significant increase after letters to VCs),</li>
<li>improve mechanisms (Elsevier introduced OA workflow which resulted in significant increase in deposits, but funders/institutions/publishers all need to play a part here),</li>
<li>Clarifying Publishers OA Policies  (and re-use rights, didn&#8217;t catch this).</li>
</ul>
<h3>Research Councils UK &#8211; <em>Astrid Wissenburg, ESRC</em></h3>
<p>Starts of by talking about drivers for OA in the RC. Value for money, ensuring research is used, infrastructure and more.</p>
<p>Principles: Accessible, Quality (peer review), preservation (she&#8217;s moving through the slides fast)</p>
<p>April 2009 study in to OA impact, provides options for RC to consider.Findings</p>
<ul>
<li>Significant shift in favour of OA over last decade</li>
<li>Knowledge/awareness still limited. Confusion</li>
<li>Engagement with OA varies by subject area.</li>
<li>Too early to access impact of RCs policies.</li>
<li>Drivers
<ul>
<li>Not speed of dissemination</li>
<li>principles of free access</li>
<li>co-authors views are a big influence (mandates less so!)</li>
<li>some evidence that OA increases citation just after publication</li>
<li>limited compliance monitoring by finders</li>
<li>concern about impact of learned societies (but no evidence of libraries cancelling journals)</li>
<li>little evidence of use by non-researchers (CJK comment: interesting, I would imagine this may grow, wish newspapers would link/cite journal articles)</li>
</ul>
</li>
</ul>
<p>Both models (oa journals/repositories) supported by RCs, level playing field.</p>
<p>Pay to publish findings: limited use, barriers, costs, awareness, not RAE. would lead to redistribution of costs from non-academic to academic areas.</p>
<p>OA Deposit (repositories): from grant application from 1 Oct 2006, so a three year project starting then will only be finished in Autumn 2009. Acknowledges embargos but &#8216;at earliest opportunity&#8217;.</p>
<p>75% researchers were not aware of the mandate. diversity across subjects. &#8216;In general, no active deposit&#8217;.</p>
<p>A slide showing % of awareness broken down by RC, interesting.</p>
<p>From the highest level RCs are committed to supporting OA (this will increase). But change takes time.</p>
<p>Some issues: what do to with embargo periods, difficult for funders to manage (are there incentives we could use), depends on existence of repositories, multiple deposit options confusing to researchers, awareness/understanding.</p>
<h3>UKPubMed Central &#8211; <em>Paul Davey, Engagement Manager, UKPubMed Central</em></h3>
<p>Aims to become the information resource of choice for biomedical sector.</p>
<p>Principles: freely available, added to UK pubmed central, freely copied and reused.</p>
<p>Departmental of Health have clear policy to make research freely available.</p>
<p>95% of papers submitted are taken care of (deposited?) by the authors. only 0.5% submitted by academics (PIs/colleagues)</p>
<p>1.6 milion papers in uk pubmed central. 366 thousand downloads last month.</p>
<p>Core benefits: transparency, cutting down duplication, greater visibility.</p>
<p>Text mining, grabbing key terms from an article  (a little like  OpenCalais does)</p>
<p>Mentions EBI&#8217;s CiteXplore, encouraging academics to ink to other research.</p>
<p>Pubmed UK includes funding/grant facilities search. Can link articles to funding grants.</p>
<p>In short, backing from key funders, will make researchers more efficient, researcher&#8217;s visibility will increase.</p>
<p>Beta out in the Autumn, new site in Jan 2012.</p>
<p><em>Questions:</em></p>
<p>Worried about text mining, need for humans to moderate this.<em> response: Limited finding in this area so human intervention also limited. really need specialist to answer this fully. </em></p>
<p>Question about increasing visibility of UK pubmed central, referring to Google, response: getting indexed by Google very much part of increasing visibility.</p>
<p>Question about Canadian &#8216;pubmed central&#8217;, response confirms this and mentions talk of a European pubmed central. Potential of European funders using UK pubmed central as a place to deposit research (like everything here, not sure if I&#8217;ve noted this right).</p>
<h3>PEER &#8211; Pioneering collaboration between publishers, repositories and researchers &#8211; <em>Julia Wallace</em></h3>
<p>Funded by EC, not a &#8216;publisher project&#8217;.</p>
<p>Three key stages of publication: NISO Author&#8217;s original, NISO Accepted Manuscript, NISO version of record.</p>
<p><em>Starts of talking about the project, interesting stuff but failed to take notes.</em></p>
<p>From the <a href="http://www.peerproject.eu/">website</a>:</p>
<p style="padding-left: 30px;">PEER (Publishing and the Ecology of European Research), supported by the <a class="external-link-new-window" title="Opens external link in new window" href="http://ec.europa.eu/information_society/activities/econtentplus/index_en.htm" target="_blank">EC eContent<em>plus</em> programme</a>, will investigate the effects of the large-scale, systematic depositing of authors’ final peer-reviewed manuscripts (so called Green Open Access or stage-two research output) on reader access, author visibility, and journal viability, as well as on the broader ecology of European research. The project is a collaboration between publishers, repositories and researchers and will last from 2008 to 2011.</p>
<p><em>Seven members: including a publisher group, university, funders etc. Various publishers involved, big and small and about six European repositories taking part.</em></p>
<p><em>Approach / content:</em></p>
<ul>
<li><em>Publishers contribute 300 journals, plus control</em></li>
<li><em>Maximises deposit and access in participating repositories</em></li>
<li><em> 50% publisher submitted 50% author submitted.</em></li>
<li><em>Good quality, range of impact factors. Publishers set embargo periods, up to 36 months.</em></li>
</ul>
<p>Publishers will deposit articles in to the repositories via a central depot for their 50% of articles submitted (50% fulltext, metadata for the remaining 50%). Publishers will invite authors to deposit for the &#8216;author&#8217; 50%</p>
<p>Technical: using PDFA-1 (where possible) and SWORD</p>
<p>Three strands: Behaviour, Usage (looking at raw log files), Economic. Also looking at Model Development (the three strands will look in to this).</p>
<p>Question about why they chose PDF (not very good for text mining). A: wide range of subjects and publishers means that PDF the best fit</p>
<h3>Economic Implications of Alternative Scholarly Publishing Models, also Loughborough University&#8217;s Institutional Mandate &#8211; <em>Charles Oppenheim, Loughborough University</em></h3>
<p>&#8216;Houghton report&#8217; looks at costs and benefits of scholarly publishing.</p>
<p><a href=" http://hdl.handle.net/2134/4137">Link to report <strong> <code>http://hdl.handle.net/2134/4137</code></strong></a></p>
<p><strong><a href="http://www.cfses.com/EI-ASPM/">Link to main website and models http://www.cfses.com/EI-ASPM/</a><br />
</strong></p>
<ul>
<li>Massive savings by using OA, UK would benefit from this.</li>
<li>Savings include: quicker searching, less negotiations, savings not just in library budgets</li>
<li>2,300 activity items costed.</li>
<li>This report currently final word in economics of OA.</li>
<li>Charles Talks about the various methods and work involved in producng this report.</li>
<li>a 5% incease in accessibility would lead to savings (or extra money to spend) in research/he/RCs</li>
<li>Hard to compare UK toll/open access publishing costs as one pays for UK access to content from across the world, the other pays for UK content to be world wide accessible.</li>
<li>Keen to role this out to other countires</li>
<li>Publishers response to report: furious!</li>
</ul>
<p>Now for something completly different: Loughborough approve a mandae a few months a go, to come in to affect Oct 09. An intergral part of academic personal research plans (only those research items in the IR will be considered at the review). Now have over<a href="http://www.nostuff.org/ircount/archive.php?id=http%3A%2F%2Fdspace.lboro.ac.uk%2Fdspace%2F20070419092801&amp;country=uk"> 4,000 items</a></p>
<h3>Lunch and audioboo</h3>
<p>During lunch I did an experiment using audioboo. Would I be able to summarise the morning, on the fly with no planning, in a brief audio recording. The answer, as you can discover, is &#8216;no&#8217;, but fun to try, and made me think of what I had taken in during the morning. <a href="http://audioboo.fm/boos/25593-rsp-madates-in-practice">Link to audioboo recording</a>. or try the embedded version below.<br />
<object width="400" height="129" data="http://boos.audioboo.fm/swf/fullsize_player.swf" type="application/x-shockwave-flash"><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="bgColor" value="#FFFFFF" /><param name="wmode" value="window" /><param name="FlashVars" value="mp3Title=Rsp+Madates+In+Practice&amp;mp3=http%3A%2F%2Faudioboo.fm%2Fboos%2F25593-rsp-madates-in-practice.mp3&amp;mp3Time=01.45pm+29+May+2009&amp;mp3LinkURL=http%3A%2F%2Faudioboo.fm%2Fboos%2F25593-rsp-madates-in-practice&amp;mp3Author=chriskeene&amp;size=full&amp;playerWidth=400" /><param name="src" value="http://boos.audioboo.fm/swf/fullsize_player.swf" /></object></p>
<h3>Institutional Mandates &#8211; <em>Paul Ayris, University College London</em></h3>
<p><em>Paul starts off by shoing a number of Venn diagrams, for example: 90% of its research is available online, 40% available to an NHS hospital</em></p>
<p><em>What do UCL academics want</em></p>
<ul>
<li><em>as authors: visbility / impact</em></li>
<li><em>as readers: access</em></li>
<li><em>delivery 24&#215;7 anywhere</em></li>
</ul>
<p>UCL madate, a case study:</p>
<p>Looking global is an important part of UCL (for PIs rankings etc). Number of systems in their publication system: Symplectic, IRIS, eprints, data mart (and portico, FIS, HR). Symplectic (or similar tool) and IRIS seem central in this model. Plan to automatically extra metadata from other external places (publication repositories.</p>
<p>How did they get the mandate? Paul spoke at UCLs senate (Academic Board), the agreed: all academic staff should record they own publication on a UCL publication system, and, teaching materials should all be deposited in their eprints systems.</p>
<p>UCL are going to set up a publication board to over see the OA rollout; to advise, monitor, oversee presentation and more.</p>
<p>Next steps: market/exploit, set standards for online publication, to advise on ongoing resource issues in this area. Also, establish processes, Statistics and management information, advise on multimedia, copyright issues.</p>
<p>&#8216;Open Access is the natural way for a global university to achieve its objectives&#8217;</p>
<p>Question about blurring the line between dissemination and publication, and that some of UCLs aims seem more fitting of &#8216;publication&#8217;. Paul agrees, still trying to figure this out.</p>
<h3>HEFCE &#8211; <em>Paul Hubbard, Head of Research Policy, HEFCE</em></h3>
<p>Policy: Research is a process which leads to insights for sharing. So Scholarly Communication matters to HEFCE. Prompt and accessible publishing is essential for a world class research system.</p>
<p>Supporting research: JISC, RIN, Programmes to support national research libraries (<a href="http://www.ukrr.ac.uk/">UKRR</a>), <a href="http://www.ukrds.ac.uk/">UKRDS</a>. Mentions Boston Spa (BL) document centre as an example of our world class sharing.</p>
<p>Internet opens up new ways of scholarly communication and sharing.</p>
<p>What do HEFCE want to see:</p>
<ul>
<li>Widest and earliest dissemination of public research.</li>
<li>IP shared effectively with the people best placed to exploit it (CJK comment, i don&#8217;t think it is publishers!)</li>
</ul>
<p>Committed to: UK maintaining world leading research, funding that fosters autonomy and dynamism, research quality assessment regime that supports rather than inhibits new developments.</p>
<p>As we move forward, things may be unclear those HEIs with repositories will be at an advantage.</p>
<p>Paul finishes up with a personal view of scholarly communications in 2030. He sees to forms of communication: discussion (building up ideas), and writing up a formal firm idea/conclusion based on these. HEFCE supports &#8211; through the likes of JISC &#8211; a range of tools and systems to enable this. (sorry that was an awful summary, he said much more than that!).</p>
<p>Answered a question as to why IRs, HEIs are the places to administrate/manage. Websites people go to see research for a particular subject need to be overlay systems harvesting from IRs.</p>
<p>[hmm, does 'university requirement' sound better than mandate?]</p>
<h3>Institutional Policies and Processes for Mandate Compliance &#8211; <em>Bill Hubbard, SHERPA, University of Nottingham</em></h3>
<p>99.9% of academics do not object to Open Access, but need to show it will not change how they work. Librarians going to be much more part of the research process. Most people (including most publishers) are in favour of Open Access.</p>
<p>Other pressures on the systems, lack of peer reviewers, rising prices of journals, growing need for different forms of scholarly communications (e-lab books, multimedia), public demand for highest value for money &#8216;public should get what they pay for&#8217;,<em><br />
</em></p>
<p>Not if we change, but how we change. Research has to change seamlessly. Mandates have a value-added basis with fast delivery of benefits. Need integrated processes, need integrated support (we don&#8217;t want researchers to hear different messages from their Uni, funder, publisher, etc).</p>
<p>Authors need to know &#8216;what do i meed to do&#8217;. Need to make it less confusing, need to make it clear when they can get help.</p>
<p>First step compliance: how can funders improve compliance, how can authors be supported?</p>
<p>All 1994 and Russel Group now have IR (Reading, I think, just setting one up now).</p>
<p>Compliance for mandates makes it better for us admin/support staff, and for the University generally.</p>
<p>Institutions need a compliance officer (perhaps repository manager). Funders need to ensure these people have the information they need. Share compliance information</p>
<p><em>I&#8217;ve missed so much of Bill&#8217;s talk here, he moves fast (and passionately) and lots of points.</em></p>
<p>After Bill&#8217;s talk there was a panel session.</p>
<h3>Twitter</h3>
<p>Finally check out some of the <a href="http://sn.im/j0hjp">useful tweets</a> from the day. (Twitter search only goes back about a month or so, so this link may not work after a certain date). <a href="http://twitter.com/jimrhiz">Jim Richardson</a> also created a <a href="http://www.webcitation.org/query?url=http%3A%2F%2Fsearch.twitter.com%2Fsearch%3Fq%3D%2523rsp%26rpp%3D50%26format%3Diphone&amp;date=2009-05-30">permanent copy</a> with the (new to me) webcitation website.</p>
<h3>Conclusions</h3>
<p>With such dodgy note taking I feel some concise summary is in order!</p>
<ul>
<li>Mandates are happening, by Universities and by Funders.</li>
<li>HEFCE want research to be accessible to as many as possible as quickly as possible.  Coming from HEFCE, this holds a lot of weight.</li>
<li>Funders (Research Councils / Wellcome) put mandates in place several years a go. They have not sat back and said &#8216;job done&#8217;. They are building on this foundation. How can they check? How can they enforce/encourage? How can they assist? How can they automate? How can they work with publishers and HE to share this information? Expect more to come in this area.</li>
<li>Wellcome Trust prefers submission to Open Access Journals rather than author depositing in to a repository at a later date.</li>
<li>HE Mandates are coming, we alreay have a few in the UK. Making them an intergral part of an academic&#8217;s review seems like a good idea. My opinion is that this is reasonable &#8211; even if there are those who disagree &#8211; surely an employer can (and <em>does</em> in every other sector) ask for a record of what an employee has been working on, and a copy of the end output, i.e. the full text in an IR.</li>
<li>The report &#8216;<a href="https://dspace.lboro.ac.uk/dspace-jspui/handle/2134/4137">Economic implications of alternative scholarly publishing models : exploring the costs and benefits. JISC EI-ASPM Project</a>&#8216; is a thourough comprehensive look at the economic costs of Open Access and new forms of Scholorarly Communications.</li>
<li>I think we are starting to see the larger Universities developing sophisticated network of systems to manage research/publications/OA/research-funding. See <a href="http://www.rsp.ac.uk/events/index.php?page=MandatesDay2009/index.php">slide 10 of Paul Ayris</a> presentation, and<a href="http://spiral.imperial.ac.uk/handle/10044/1/493"> this article about Imperial&#8217;s setup</a> as two examples.</li>
<li>It makes sense to share information (between IT systems) between funders, HE and publishers. Examples: Funders sharing (bibliographic) information to a University about publications from its researchers, Universities (or publishers) passing information to funders linking publications to funding (or even the other way round?).</li>
<li>This is an area which is still developing, fast, and will of course involve a culture change. Publishers seem unsure how to handle this new world.</li>
</ul>
<div class='wp_likes' id='wp_likes_post-370'><a class='like' href="javascript:wp_likes.like(370);" title='' ><img src="http://www.nostuff.org/words/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(370);">Unlike</a></div>
</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Fresearch-in-the-open-how-mandates-work-in-practice%2F&amp;linkname=Research%20in%20the%20Open%3A%20How%20Mandates%20Work%20in%20Practice"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2009/event-the-data-imperative-libraries-and-research-data/' rel='bookmark' title='Permanent Link: Event: The Data Imperative: Libraries and Research Data'>Event: The Data Imperative: Libraries and Research Data</a></li>
<li><a href='http://www.nostuff.org/words/2008/or08-open-repositories-2008/' rel='bookmark' title='Permanent Link: or08: Open Repositories 2008'>or08: Open Repositories 2008</a></li>
<li><a href='http://www.nostuff.org/words/2009/the-data-imperative-libraries-and-research-data-commet/' rel='bookmark' title='Permanent Link: The Data Imperative: Libraries and Research Data : comment'>The Data Imperative: Libraries and Research Data : comment</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/research-in-the-open-how-mandates-work-in-practice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Library search/discovery apps : intro</title>
		<link>http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/</link>
		<comments>http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/#comments</comments>
		<pubDate>Wed, 27 May 2009 14:41:41 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[aquabrowser]]></category>
		<category><![CDATA[catalogue]]></category>
		<category><![CDATA[discovery]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[ngc]]></category>
		<category><![CDATA[opac]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=363</guid>
		<description><![CDATA[There’s a lot of talk in the Library world about ‘next generation catalogues’, library search tools and ‘discovery’. There’s good reason for this talk, in this domain the world has been turned on its head.
History in a nutshell:

The card catalogue became the online catalogue, the online catalogue let users search for physical items within the [...]


Related posts:<ol><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>
<li><a href='http://www.nostuff.org/words/2008/jisc-library-management-system-review/' rel='bookmark' title='Permanent Link: JISC Library Management System Review'>JISC Library Management System Review</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There’s a lot of talk in the Library world about ‘next generation catalogues’, library search tools and ‘discovery’. There’s good reason for this talk, in this domain the world has been turned on its head.</p>
<p>History in a nutshell:</p>
<ul>
<li>The card catalogue became the online catalogue, the online catalogue let users search for physical items within the Library.</li>
<li>Journals became online journals. Libraries needed to let users find the online journals they subscribed to through various large and small publishers and hosts. They built simple in-house databases (containing journal titles and links to their homepages), <em>or</em> added them to the catalogue, <em>or</em> used a third party web based tool. As the number of e-journals grew, most ended up using the last option, a third party tool (which could offer other services, such as link resolving, and do much of the heavy lifting with managing a knowledge base).</li>
<li>But users wanted one place to search. Quite understandable. If you are after a journal, why should you look in one place to see if there is a physical copy, and another place if they had access to it online. Same with books/ebooks.</li>
<li>So libraries started to try and find ways to add online content to catalogue systems in bulk (which weren’t really designed for this). <a href="http://www.nostuff.org/words/wp-content//2009/05/betageneral.jpg"><img class="aligncenter" style="border: 0pt none; display: inline;" title="Aquabrowser : Uni Sussex beta catalogue" src="http://www.nostuff.org/words/wp-content//2009/05/betageneral-thumb.jpg" border="0" alt="Aquabrowser : Uni Sussex beta catalogue" width="354" height="226" align="right" /></a></li>
</ul>
<p>The online catalogues (OPAC) were simple web interfaces supplied with the much larger Library management system (ILS or LMS) which ran the backend the public never saw. These were nearly always slow, ugly, unloved and not very useful.</p>
<p>A couple of years a go(ish), we saw the birth of the <em>next generation catalogue</em>, or <em>search and discovery tools</em>. I could list them, but the <a href="http://dltj.org/article/niso-discovery-presentation-links/" target="_blank">Disruptive Technology Library Jester does an excellent job here</a>. I strongly suggest you take a look.</p>
<p>Personally, I think I first heard about <a href="http://www.medialab.nl/" target="_blank">Aquabrowser</a>. At the time a new OPAC which was miles ahead of those supplied with Library systems and was (I think) unique as a web catalogue interface not associated with a particular system, and shock, not from an established Library Company. The second system I heard about was probably <a href="http://www.exlibrisgroup.com/category/PrimoOverview" target="_blank">Primo</a> from Ex Libris. At first not understanding what it was: It sounds like Metalib (another product from the same company which cross-searches various e-resource), is Primo replacing it? Or replacing the OPAC? It took a while to appreciate that this was something that sat on top of the rest. From then, <a href="http://www.vufind.org/" target="_blank">VuFind</a>, <a href="http://libraryfind.org/" target="_blank">LibraryFind</a> and <a href="http://dltj.org/article/niso-discovery-presentation-links/" target="_blank">more</a>.</p>
<p>While some where traditional commercial products (Primo, Encore, Aquabrowser), many more were open source solutions, a number of which developed at American Libraries. Often built on common (and modern) technology stacks such as Apache solr/Lucene, Drupal, php/java, mysql/postgres etc.<a href="http://www.nostuff.org/words/wp-content//2009/05/bl-primo.jpg"><img class="aligncenter size-medium wp-image-368" title="Primo : British Library" src="http://www.nostuff.org/words/wp-content//2009/05/bl-primo-300x236.jpg" alt="Primo : British Library" width="300" height="236" /></a></p>
<p>In the last year or so a number of major Libraries have started to use one of these ‘Discovery Systems’ for example: the <a href="http://searchbeta.bl.uk" target="_blank">BL</a> and <a href="http://solo.ouls.ox.ac.uk/" target="_blank">Oxford</a> using Primo, National Libraries of <a href="http://discover.nls.uk/" target="_blank">Scotland</a> &amp; Wales and <a href="http://nrs.harvard.edu/urn-3:hul.eresource:hollisds" target="_blank">Harvard</a> have purchased Aquabrowser and the <a href="https://beta.catalogue.lse.ac.uk/" target="_blank">LSE</a> is trying VuFind. At Sussex (where I work) we have purchased and implemented <a href="http://catalogue.sussex.ac.uk/ABL/" target="_blank">Aquabrowser</a>. We’ve added data enrichments such as table of contents (searchable and visible on records), book covers<span style="text-decoration: line-through;"> and the ability to tag and review items</span> (tag/reviewing has been removed for various reasons) .</p>
<p>It would be a mistake to put all of these in to one basket. Some focus on being a OPAC replacement, others on being a unified search tool, searching both local and online items. Some focus on social tools, tagging &amp; reviewing. Some work out the box others are just a set of components which a Library can sow together, and some are ‘<a href="http://en.wikipedia.org/wiki/Software_as_a_service">SaaS</a>’.</p>
<p>It’s an area that is fast changing. Just recently an established Library web app Company announced a forthcoming product called ‘<a href="http://www.serialssolutions.com/summon/index.html" target="_blank">Summon</a>’, which takes searching a library’s online content a step further.</p>
<p>So what do libraries go for, it’s not just potentially backing the wrong horse, but backing the wrong horse when everyone one else had moved on to dog racing!</p>
<p>And within all this it is important to remember ‘what do users actually want’. From the conversations and articles I’ve read, they want a Google search box, but one which returns results from trusted sources and academic content. Whether they are looking for a specific book, specific journal, a reference/citation, or one/many keywords. And not just one which searches the metadata, but one which brings back results based on the full text of items as well. There are some that worry that too many results are confusing. As Google proves, an intelligent ranking system makes the number of results irrelevant.</p>
<p>Setting up (and even reviewing) most of these systems take time, and if users start to add data (tags, reviews) to one system, then changing could cause problems (so should we be using third party tag/rating/review systems?).</p>
<p>You may be interested in some other articles I’ve written around this:</p>
<ul>
<li><a href="http://www.nostuff.org/words/2009/library_catalogues_changing_model/">Library catalogues, search systems and data</a> – discusses the issues in putting online journal/item records on to the catalogue, and therefore why a ‘discovery systems’ can resolve these.</li>
<li><a href="http://www.nostuff.org/words/2009/academic-discovery-and-library-catalogues/">Academic discovery and library catalogues</a> – Discusses the eXtensible Catalogue, and also links to an Academics article about how they conduct research</li>
<li><a href="http://www.nostuff.org/words/2008/jisc-library-management-system-review/">JISC Library Management System Review</a> – Summarises a recent JISC report on Library Management systems</li>
<li><a href="http://www.nostuff.org/words/2009/free-e-books-online-via-university-of-pittsburgh-press/">Free e-books online via University of Pittsburgh Press</a> – from a couple of days a go, talks about the issues of Discovery related to free academic items (books) on the web, and ensuring Library Discovery Tools include them.</li>
</ul>
<p>There’s a lot talk about discovery tools, but what sort to go for, who to back? And many issues have yet to be resolved. I’m come on to those next…</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Flibrary-searchdiscovery-apps-intro%2F&amp;linkname=Library%20search%2Fdiscovery%20apps%20%3A%20intro"><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>Related posts:<ol><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>
<li><a href='http://www.nostuff.org/words/2008/jisc-library-management-system-review/' rel='bookmark' title='Permanent Link: JISC Library Management System Review'>JISC Library Management System Review</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/library-searchdiscovery-apps-intro/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free e-books online via University of Pittsburgh Press</title>
		<link>http://www.nostuff.org/words/2009/free-e-books-online-via-university-of-pittsburgh-press/</link>
		<comments>http://www.nostuff.org/words/2009/free-e-books-online-via-university-of-pittsburgh-press/#comments</comments>
		<pubDate>Tue, 26 May 2009 09:27:09 +0000</pubDate>
		<dc:creator>Chris Keene</dc:creator>
				<category><![CDATA[libraries, library technologies & open data]]></category>
		<category><![CDATA[discovery]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[open access]]></category>
		<category><![CDATA[worldcat]]></category>

		<guid isPermaLink="false">http://www.nostuff.org/words/?p=355</guid>
		<description><![CDATA[The University   of Pittsburgh Press has put nearly 500 out of print books online and Open Access. You can access them via their Digital Editions website.  This is excellent news, making work which could be lost openly available to all.
For years there has been a movement towards making Journal articles Open Access, i.e. [...]


Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/google-books-api/' rel='bookmark' title='Permanent Link: Google Books API'>Google Books API</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.upress.pitt.edu/upressIndex.aspx">University   of Pittsburgh Press</a> has put nearly 500 out of print books online and Open Access. You can access them via their <a href="http://digital.library.pitt.edu/p/pittpress/">Digital Editions website</a>.  This is excellent news, making work which could be lost openly available to all.</p>
<div id="attachment_356" class="wp-caption alignright" style="width: 310px"><a href="http://www.nostuff.org/words/wp-content//2009/05/picture-1.png"><img class="size-medium wp-image-356" title="University of Pittsburgh Press Digital Editions - Open Access free ebooks " src="http://www.nostuff.org/words/wp-content//2009/05/picture-1-300x171.png" alt="iversity of Pittsburgh Press Digital Editions - Open Access free ebooks " width="300" height="171" /></a><p class="wp-caption-text">University of Pittsburgh Press Digital Editions - Open Access free ebooks </p></div>
<p>For years there has been a movement towards making Journal articles Open Access, i.e. publicly available. However some subjects (especially in the Humanities) publish much of their research in books, not journals. Letting the world gain from the (normally publicly funded) research contained within books is more complex, and it&#8217;s not an area I fully understand. The author normally receives royalties from book sales. However I understand this are normally very small 99% of the time, and normally tail down to tiny amounts after a few years. What if funders and Universities demanded that any book written with their money (or during their employment) must be made publicly available after x number of years (let&#8217;s say 10 years)? Academics and Publishers would not welcome the move, but would still allow a window where they can gain revenue, and if this became the norm it would be something they just have to accept. Meanwhile, once open access, the book becomes much easier to archive and preserve, and ensure the knowledge is available to all in the long term. Just a thought.<span id="more-355"></span></p>
<p>Back to the Pittsburgh Press website (created with the University Library), the Copyright remains with the Press and I note this somewhat restrictive quote at the bottom of their homepage: &#8220;<em>This  material is provided for scholarly, educational, and research use only.</em>&#8221; In an ideal world they would be under a more liberal licence (creative commons for example), though I imagine this would lead to many legal complexities to resolve, and don&#8217;t want this to detract from the good work that has been done here. It&#8217;s a massive step to release these so that they are publicly available.</p>
<p>It occurs to me that this raises the question of &#8216;discovery&#8217;. Not as a criticism of this service, but as an example of the problems we face in fully utilising its existence.</p>
<p>How will our (a University Library) users find these books? I can think of two  situations: first, they are looking for a particular book (perhaps due a reference) and discovering the online version will be much quicker than trying to find any existing print copy in a Library around the world, second: when a book contained in this service will be relevant to their research &#8211; and they are searching (catalogues/Google) using keywords to find relevant material.</p>
<p>Should users find this when they search our catalogue, or when they search our online resources (using a federated search service)? With the next generation library search products appearing, should they be &#8216;discoverable&#8217; within these systems, and if so, how?</p>
<p>The above focuses on how a library should add these items in to its systems, the other side of the coin is adding them to universal worldwide systems. I selected a particular book and searched Worldcat for the title, it shows the book twice in the search results, once for the paper version and<a href="http://www.worldcat.org/oclc/7671714"> once for the ebook at Pittsburgh</a>, the latter linking to the free e-book. A Good start!</p>
<p>Searching <a href="http://www.google.co.uk/search?q=After+innocence+%3A+visions+of+the+Fall+in+modern+literature&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-GB:official&amp;client=firefox-a">Google for the same title</a>, the Worldcat entry was the fifth link, so someone searching Google for this book would &#8211; if their attention span can extend to trying the fifth link &#8211; find the free online version via the Worldcat record. An even better situation would be for Google to link to the free book directly.</p>
<p>Some thoughts:</p>
<ul>
<li>While the above is promising it relies on a user searching for the title of the book, which doesn&#8217;t cater for those who don&#8217;t know it exists, yet it&#8217;s content would be useful for their research.</li>
<li>Users are saying to us they want one place to search for sources of information and content useful for their work. They have to use many different systems and it can be confusing when to use which one, and each has their own interface and rules. The Library catalogue, VLE/e-learning platform, <a href="www.isiknowledge.com/">Web of Science</a>, <a href="http://www.worldcat.org/">Wordcat</a>, <a href="http://www.scopus.com/">Scopus</a>, Google, Federated (online resources) search, <a href="http://copac.ac.uk/about/">COPAC</a>, etc. Which ones to use, and when? The ultimate aim of providing one search box is to highlight information (content) which could be useful &#8211; both that which the institution subscribes to, and that which is free. How will records of Open Access books such as these &#8216;get in to&#8217; such a search index?  Each Library adding such content is not very efficient, better would be for it to be added in one place/database (along with similar items) which can be openly searched/harvested by other systems using an API. Libraries could then simply add such a service to their own search system to make the content available to users. <a href="http://www.doaj.org/">DOAJ</a> (a directory of Open Access Journals) answered a similar concern for Open Access Journals.</li>
</ul>
<p>Content is useless unless people can discover it, and how will Libraries develop systems which help users to discover everything they can potentially access in such an easy way that it is intuitive and requires no specialist training?</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nostuff.org%2Fwords%2F2009%2Ffree-e-books-online-via-university-of-pittsburgh-press%2F&amp;linkname=Free%20e-books%20online%20via%20University%20of%20Pittsburgh%20Press"><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>Related posts:<ol><li><a href='http://www.nostuff.org/words/2008/google-books-api/' rel='bookmark' title='Permanent Link: Google Books API'>Google Books API</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.nostuff.org/words/2009/free-e-books-online-via-university-of-pittsburgh-press/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.022 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-02-09 11:25:15 -->
<!-- Compression = gzip -->