<?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>MaisonBisson.com &#187; Libraries &amp; Networked Information</title>
	<atom:link href="http://maisonbisson.com/blog/post/category/libraries-networked-information/feed/" rel="self" type="application/rss+xml" />
	<link>http://maisonbisson.com</link>
	<description>A bunch of stuff I would have emailed you about.</description>
	<lastBuildDate>Sat, 14 Nov 2009 20:14:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress Hacks: Nested Paths For WPMU Blogs</title>
		<link>http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/</link>
		<comments>http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 16:23:10 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[url path]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=14052</guid>
		<description><![CDATA[
Situation: you&#8217;ve got WordPress Multi-User setup to host one or more domains in sub-directory mode (as in site.org/blogname), but you want a deeper directory structure than WPMU allows&#8230;something like the following examples, perhaps:

site.org/blogname1
site.org/departments/blogname2
site.org/departments/blogname3
site.org/services/blogname3

The association between blog IDs and sub-directory paths is determined in wpmu-settings.php, but the code there knows nothing about nested paths. So a [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-14052"><!-- &nbsp; --></abbr>
<p><strong><span style="font-weight: normal"><div class="contents innerindex"><h3>Contents</h3><ol><li><a href="http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/#14052_hack-the-path-mappin_1">Hack The Path Mapping</a><ol><li><a href="http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/#14052_optimization-note_1">Optimization note</a></li></ol></li><li><a href="http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/#14052_setting-up-new-blogs_1">Setting Up New Blogs</a></li><li><a href="http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/#14052_hack-the-htaccess_1">Hack The .htaccess</a></li></ol></div></span>Situation:</strong> you&#8217;ve got WordPress Multi-User setup to <a href="http://maisonbisson.com/blog/post/14028/wordpress-hacks-managing-multiple-sub-domains/">host one or more domains</a> in sub-directory mode (as in <code>site.org/blogname</code>), but you want a deeper directory structure than WPMU allows&#8230;something like the following examples, perhaps:</p>
<ul>
<li><code>site.org/blogname1</code></li>
<li><code>site.org/departments/blogname2</code></li>
<li><code>site.org/departments/blogname3</code></li>
<li><code>site.org/services/blogname3</code></li>
</ul>
<p>The association between blog IDs and sub-directory paths is determined in <a href="http://trac.mu.wordpress.org/browser/tags/2.8.4a/wpmu-settings.php"><code>wpmu-settings.php</code></a>, but the code there knows nothing about nested paths. So a person planning to use WordPress MU as a CMS must either flatten his/her information architecture, or do some hacking.<br />
<span id="more-14052"></span><br />
<strong>Challenge: hacking WordPress MU to support arbitrary directory paths for each blog<br />
</strong></p>
<p>As with my <a href="http://maisonbisson.com/blog/post/14028/wordpress-hacks-managing-multiple-sub-domains/">multi-domain hack</a>, the following assumes that you’re using the <code>vhost=no</code> setting, that you have access to and know how to manipulate your MySQL, that you have control over your DNS and know how to use it, and that you know how to configure Apache or similar. You’d also be smart to turn off any object caching you may have running, at least until we’re done doing direct database manipulation. The following also assumes that your <code>wp-config.php</code> sets the <code>DOMAIN_CURRENT_SITE</code> and <code>PATH_CURRENT_SITE</code> constants &#8212; if you&#8217;ve done a fresh install recently, it probably does, or you can <a href="http://maisonbisson.com/blog/post/14028/wordpress-hacks-managing-multiple-sub-domains/#14028_reconfigure-wp-confi_1">check my domain mapping hack</a>.</p>
<h3 id="14052_hack-the-path-mappin_1">Hack The Path Mapping</h3>
<p>Right at the top of <a href="http://trac.mu.wordpress.org/browser/tags/2.8.4a/wpmu-settings.php#L28"><code>wpmu-settings.php</code></a> you can see how it strips all but the base of the URL path, but rather than mod that file, we can take advantage of an obscure MU hack: <code>sunrise.php</code>, which gets executed after some important WordPress components like the database class get loaded and before <a href="http://trac.mu.wordpress.org/browser/tags/2.8.4a/wpmu-settings.php"><code>wpmu-settings.php</code></a>. </p>
<p>To use <code>sunrise.php</code>, create a PHP file at <code>/wp-content/sunrise.php</code> and set <code>define('SUNRISE', TRUE);</code> in your <code>wp-config.php</code>.</p>
<p>Here&#8217;s the <code>sunrise.php</code> code I&#8217;m using:</p>
<pre class="brush: php;">if( defined( 'DOMAIN_CURRENT_SITE' ) &amp;&amp; defined( 'PATH_CURRENT_SITE' ) ) {
	$current_site-&gt;id = (defined( 'SITE_ID_CURRENT_SITE' ) ? constant('SITE_ID_CURRENT_SITE') : 1);
	$current_site-&gt;domain = $domain = DOMAIN_CURRENT_SITE;
	$current_site-&gt;path  = $path = PATH_CURRENT_SITE;
	if( defined( 'BLOGID_CURRENT_SITE' ) )
		$current_site-&gt;blog_id = BLOGID_CURRENT_SITE;

	$url = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_PATH );

	$patharray = (array) explode( '/', trim( $url, '/' ));
	$blogsearch = '';
	if( count( $patharray )){
		foreach( $patharray as $pathpart ){
			$pathsearch .= '/'. $pathpart;
			$blogsearch .= $wpdb-&gt;prepare(&quot; OR (domain = %s AND path = %s) &quot;, $domain, $pathsearch .'/' );
		}
	}

	$current_blog = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT *, LENGTH( path ) as pathlen FROM $wpdb-&gt;blogs WHERE domain = %s AND path = '/'&quot;, $domain, $path) . $blogsearch .'ORDER BY pathlen DESC LIMIT 1');

	$blog_id = $current_blog-&gt;blog_id;
	$public  = $current_blog-&gt;public;
	$site_id = $current_blog-&gt;site_id;
	$current_site = sl_get_current_site_name( $current_site );
}

function sl_get_current_site_name( $current_site ) {
	global $wpdb;
	$current_site-&gt;site_name = wp_cache_get( $current_site-&gt;id . ':current_site_name', &quot;site-options&quot; );
	if ( !$current_site-&gt;site_name ) {
		$current_site-&gt;site_name = $wpdb-&gt;get_var( $wpdb-&gt;prepare( &quot;SELECT meta_value FROM $wpdb-&gt;sitemeta WHERE site_id = %d AND meta_key = 'site_name'&quot;, $current_site-&gt;id ) );
		if( $current_site-&gt;site_name == null )
			$current_site-&gt;site_name = ucfirst( $current_site-&gt;domain );
		wp_cache_set( $current_site-&gt;id . ':current_site_name', $current_site-&gt;site_name, 'site-options');
	}
	return $current_site;
}</pre>
<p>The first few lines of the code do pretty much the same as the start of the <a href="http://trac.mu.wordpress.org/browser/tags/2.8.4a/wpmu-settings.php#L44"><code>wpmu_current_site()</code></a> function in <code>wpmu-settings.php</code>, but starting with line 8 it takes a big departure.</p>
<p>That&#8217;s where it splits the requested URL path like <code>/path/to/blog/and/stuff/</code> into pieces and constructs an SQL query against the <code>wp_blogs</code> table to identify the correct blog to serve the request. The following example shows how:</p>
<pre class="brush: sql;">SELECT *, LENGTH( path ) as pathlen
	 FROM wp_blogs
	 WHERE domain = 'domain.org' AND path = '/'&quot;
	  	 OR (domain = 'domain.org' AND path = '/path/')
	 	 OR (domain = 'domain.org' AND path = '/path/to/')
	 	 OR (domain = 'domain.org' AND path = '/path/to/blog/')
	 	 OR (domain = 'domain.org' AND path = '/path/to/blog/and/')
	 	 OR (domain = 'domain.org' AND path = '/path/to/blog/and/stuff/')
	 ORDER BY pathlen DESC
	 LIMIT 1</pre>
<h4 id="14052_optimization-note_1">Optimization note</h4>
<p>Setting a maximum depth (and <code>array_slice( $patharray, 0, $maxdepth )</code>) would allow the query to be cached up to that depth. Otherwise, the query must be executed for every page load. The <code>$maxdepth</code> could either be set arbitrarily, or could be determined automatically based on the maximum path length of registered blogs.</p>
<h3 id="14052_setting-up-new-blogs_1">Setting Up New Blogs</h3>
<p>Once you&#8217;ve hacked the path mapping (and tested that it didn&#8217;t break your current site), you can add a new blog at a nested path.</p>
<div id="attachment_14063" class="wp-caption aligncenter" style="width: 553px"><a href="http://maisonbisson.com/files/2009/09/Screen-shot-2009-09-12-at-10.37.24-AM.png"><img src="http://maisonbisson.com/files/2009/09/Screen-shot-2009-09-12-at-10.37.24-AM.png" alt="Create a new blog in the MU blog admin." width="543" height="235" class="size-full wp-image-14063" /></a><p class="wp-caption-text">Create a new blog in the MU blog admin.</p></div>
<p>Unfortunately, MU strips the slashes from the URL path you just tried to set.</p>
<div id="attachment_14064" class="wp-caption aligncenter" style="width: 499px"><a href="http://maisonbisson.com/files/2009/09/Screen-shot-2009-09-12-at-10.39.02-AM.png"><img src="http://maisonbisson.com/files/2009/09/Screen-shot-2009-09-12-at-10.39.02-AM.png" alt="The new blog you just tried to create, but with a very different path." width="489" height="125" class="size-full wp-image-14064" /></a><p class="wp-caption-text">The new blog you just tried to create, but with a very different path.</p></div>
<p>Fortunately, you can set the path correctly in the MU blog editor, and it won&#8217;t break the path when you save there.</p>
<div id="attachment_14065" class="wp-caption aligncenter" style="width: 497px"><a href="http://maisonbisson.com/files/2009/09/Screen-shot-2009-09-12-at-10.39.42-AM.png"><img src="http://maisonbisson.com/files/2009/09/Screen-shot-2009-09-12-at-10.39.42-AM.png" alt="Set the blog path in the MU blog editor, MU won&#39;t break it when you save it this time." width="487" height="123" class="size-full wp-image-14065" /></a><p class="wp-caption-text">Set the blog path in the MU blog editor, MU won't break it when you save it this time.</p></div>
<p>Once you create the new blog, try to load it in your browser. You&#8217;ll quickly notice the stylesheet is missing, though the blog works and functions properly.</p>
<h3 id="14052_hack-the-htaccess_1">Hack The .htaccess</h3>
<p>WPMU uses the following <code>.htaccess</code> rewrite rule to properly direct requests for files on the real filesystem:</p>
<pre class="brush: plain;">RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]</pre>
<p>Obviously, that rule won&#8217;t work for deep paths, so I&#8217;ve replaced it with this rule:</p>
<pre class="brush: plain;">RewriteRule  ^(.+)?/(wp-.*) /$2 [L]</pre>
<p>And with that, you should be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Who Gets To Control The Future Of Libraries?</title>
		<link>http://maisonbisson.com/blog/post/14014/who-gets-to-control-the-future-of-libraries/</link>
		<comments>http://maisonbisson.com/blog/post/14014/who-gets-to-control-the-future-of-libraries/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 17:28:06 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Politics & Controversy]]></category>
		<category><![CDATA[Franklin High School]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[Milford MA]]></category>
		<category><![CDATA[web4lib]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=14014</guid>
		<description><![CDATA[
The following was my email response to a thread on the web4lib mail list:
Okay, it must be said: you&#8217;re all wrong[1].
I can understand that news of a librarian being fired/furloughed will raise our defenses, but that&#8217;s no excuse for giving up the considered and critical thinking that this occasion demands.
Consider this: the principle&#8217;s blog reveals [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-14014"><!-- &nbsp; --></abbr>
<p>The following was my <a href="http://lists.webjunction.org/wjlists/web4lib/2009-August/049908.html">email response</a> to <a href="http://lists.webjunction.org/wjlists/web4lib/2009-August/049891.html">a thread on the web4lib mail list</a>:</p>
<p>Okay, it must be said: you&#8217;re all wrong[1].</p>
<p>I can understand that <a href="http://www.milforddailynews.com/homepage/x1202627306/Franklin-High-library-undergoes-transformation">news of a librarian being fired/furloughed</a> will raise our defenses, but that&#8217;s no excuse for giving up the considered and critical thinking that this occasion demands.</p>
<p>Consider this: <a href="http://franklinhighschool.wordpress.com/">the principle&#8217;s blog</a> reveals a reasonable person actively trying to improve academic performance despite crushing economic conditions. The communications show a level of transparency many of us can only wish for.</p>
<p>Unfortunately, many on this mail list seem to have come to the conclusion that <a href="http://www.franklin.ma.us/auto/schools/fhs/depts/library/default.htm">this library</a> was a stellar, but unappreciated example of everything that libraries should be, capriciously closed by a principle who secretly wanted to see the football team shoving bookshelves around on a hot summer day.</p>
<p>Go ahead, <a href="http://www.libraryjournal.com/blog/580000658/post/90047409.html">mock the story</a> (and so far we only have one story about this) for suggesting that the books have been &#8220;re-organized&#8221; by subject, but the fact remains that this community didn&#8217;t think their library was organized in a way that met its needs. This suggests that either (a) it wasn&#8217;t well organized, or (b) the librarian had failed to educate the users and develop the finding aids necessary to help the community use the library.</p>
<p>Nobody here is banning or burning books. Nobody is suggesting that libraries are irrelevant. Far from it: this story about the modernization of a library to make it a more significant part of students&#8217; academic activity.</p>
<p>News that a member of our profession has been furloughed is sad. But, news that a principle is investing time, attention, and money in the library is good. News that those two stories are one in the same should make us ask critical questions about how we and our libraries are positioned to serve our community.</p>
<p>[1]: Everybody but <a href="http://lists.webjunction.org/wjlists/web4lib/2009-August/049894.html">Robert L. Balliot, whose message has so far been ignored</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/14014/who-gets-to-control-the-future-of-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is David McNicol&#8217;s URL Cache Plugin?</title>
		<link>http://maisonbisson.com/blog/post/13953/what-is-david-mcnicols-url-cache-plugin/</link>
		<comments>http://maisonbisson.com/blog/post/13953/what-is-david-mcnicols-url-cache-plugin/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 16:13:11 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Blink]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[perm-permalinks]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[web archiving]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13953</guid>
		<description><![CDATA[
The description to David McNicol&#8217;s URL Cache Plugin raises more questions than it answers:
Given a URL, the url_cache() function will attempt to download the file it represents and return a URL pointing to this locally cached version.
Where did he plan to use it? Does he envision the cache as an archive, or for performance? Why hasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13953"><!-- &nbsp; --></abbr>
<p>The description to David McNicol&#8217;s <a href="http://wordpress.org/extend/plugins/url-cache/">URL Cache Plugin</a> raises more questions than it answers:</p>
<blockquote><p>Given a URL, the url_cache() function will attempt to download the file it represents and return a URL pointing to this locally cached version.</p></blockquote>
<p>Where did he plan to use it? Does he envision the cache as an archive, or for performance? Why hasn&#8217;t it been updated since 2005?</p>
<p>It caught my interest because I&#8217;ve long been interested in a solution to link rot in my blog. A real &#8220;perma-permalink&#8221; would be very useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13953/what-is-david-mcnicols-url-cache-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Book Search Results Vs. Users</title>
		<link>http://maisonbisson.com/blog/post/13959/book-search-results-vs-users/</link>
		<comments>http://maisonbisson.com/blog/post/13959/book-search-results-vs-users/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 17:13:00 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[search results]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13959</guid>
		<description><![CDATA[

Bret Victor offers the above design suggestions (from 2006) to Amazon in the book search results display (he&#8217;s comparing to this). I didn&#8217;t discover them at the time, but many of them are still relevant now. Bret notes that Amazon&#8217;s display doesn&#8217;t do a good job of answering the questions a person has when searching for [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13959"><!-- &nbsp; --></abbr>
<p><img src="http://worrydream.com/MagicInk/p/books_redesign.png" alt="Bret Victor's redesign of Amazon book search results" width="600" height="419" /></p>
<p><a href="http://worrydream.com/MagicInk/">Bret Victor offers the above design suggestions</a> (from 2006) to Amazon in the book search results display (he&#8217;s <a href="http://worrydream.com/MagicInk/p/books_original.png">comparing to this</a>). I didn&#8217;t discover them at the time, but many of them are still relevant now. Bret notes that Amazon&#8217;s display doesn&#8217;t do a good job of answering the questions a person has when searching for books: &#8220;What is the book about?&#8221; and &#8220;is it any good?&#8221;</p>
<blockquote><p>Unfortunately, these questions are completely unaddressed by the information provided. To see relevant information, the user must click on each listing individually. That is, she must navigate by hand instead of by eye, and must use her memory to compare information across time instead of space.</p>
<p>The problem is that this graphic was designed as an index into a set of webpages, but is used as a catalog for comparing a set of books. The purpose of this graphic should not be to return a list of query matches, but to help the user learn about books related to her topic of interest.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13959/book-search-results-vs-users/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Too Bad The Hanzo Archives Wordpress Plugin Is Caput</title>
		<link>http://maisonbisson.com/blog/post/13955/too-bad-the-hanzo-archives-wordpress-plugin-is-caput/</link>
		<comments>http://maisonbisson.com/blog/post/13955/too-bad-the-hanzo-archives-wordpress-plugin-is-caput/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 16:12:46 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Blink]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[Hanzo Archives]]></category>
		<category><![CDATA[link rot]]></category>
		<category><![CDATA[perma-permalink]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[web archive]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13955</guid>
		<description><![CDATA[
The Hanzo Archives Wordpress plugin is something I&#8217;d be very excited to use. Ironically, it&#8217;s disappeared from the web (though the blog post hasn&#8217;t):
We’ve released a Wordpress Plugin which automatically archives anything you link to in your blog posts; it also adds a ‘perma-permalink’ for the archived version adjacent to each original link.
An Amazon Web [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13955"><!-- &nbsp; --></abbr>
<p>The <a href="http://www.hanzoarchives.com/">Hanzo Archives</a> <a href="http://www.hanzoarchives.com/blog/2006/05/16/wordpress-plugin/">Wordpress plugin</a> is something I&#8217;d be very excited to use. Ironically, it&#8217;s disappeared from the web (though the blog post hasn&#8217;t):</p>
<blockquote><p>We’ve released a Wordpress Plugin which automatically archives anything you link to in your blog posts; it also adds a ‘perma-permalink’ for the archived version adjacent to each original link.</p></blockquote>
<p>An <a href="http://aws.amazon.com/solutions/case-studies/hanzo/">Amazon Web Services case study</a> put me on to Hanzo a while ago, and in May 2008 I actually spoke with <a href="http://twitter.com/hanzoman">Mark Middleton</a> (the markm who posted the entry above). Mark revealed that community take-up on the plugin and other general purpose web archiving services was below expectations. The company has since refocused on legal matters (even their blog tag-line has changed to &#8220;web archiving for compliance and e-discovery&#8221;).</p>
<p>I wonder if, now that the number of people and companies that have been blogging for years has grown, there might be more of a market for such a service.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13955/too-bad-the-hanzo-archives-wordpress-plugin-is-caput/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding, Leveraging Google Image Search</title>
		<link>http://maisonbisson.com/blog/post/13737/understanding-leveraging-google-image-search/</link>
		<comments>http://maisonbisson.com/blog/post/13737/understanding-leveraging-google-image-search/#comments</comments>
		<pubDate>Wed, 27 May 2009 16:16:03 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google image search]]></category>
		<category><![CDATA[image searching]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13737</guid>
		<description><![CDATA[
Above is Peter Linsley speaking about Google Image Search at SMX West in February, 2009.
Meanwhile, Stefan Juhl suggests some JavaScript to break your site out of the image search result pages:
Many Google image search users are quickly clicking on to the direct image URL and thereby not seeing the page with the image. Also, it [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13737"><!-- &nbsp; --></abbr>
<a href="http://maisonbisson.com/blog/post/13737/understanding-leveraging-google-image-search/"><p><em>Click here to view the embedded video.</em></p></a>
<p>Above is <a href="http://www.peterlinsley.com/blog/about/">Peter Linsley</a> speaking about Google Image Search at <a href="http://searchmarketingexpo.com/west">SMX West</a> in February, 2009.</p>
<p>Meanwhile, <a href="http://stefanjuhl.com/2007/dont-lose-image-search-traffic/">Stefan Juhl suggests some JavaScript</a> to break your site out of the image search result pages:</p>
<blockquote><p>Many Google image search users are quickly clicking on to the direct image URL and thereby not seeing the page with the image. Also, it seems that many of the users don’t hesitate to click back to the image SERPs when they don’t see the image “above the fold” &#8211; probably because of Google image search framing the page with the picture and thus making it almost too easy to do so.</p>
<pre class="brush: jscript;">&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;
if (top.location != self.location) top.location.replace(self.location);
&lt;/script&gt;</pre>
<p>After adding this to the one of my websites I saw a quite big increase in pageviews. It turned out that the visitors happily continued to browse around the website.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13737/understanding-leveraging-google-image-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun Threads For Librarians</title>
		<link>http://maisonbisson.com/blog/post/13847/fun-threads-for-librarians/</link>
		<comments>http://maisonbisson.com/blog/post/13847/fun-threads-for-librarians/#comments</comments>
		<pubDate>Wed, 06 May 2009 17:41:23 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[anarchist]]></category>
		<category><![CDATA[anarchist librarian]]></category>
		<category><![CDATA[bibliophibian]]></category>
		<category><![CDATA[hoodie]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[sweatshirt]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13847</guid>
		<description><![CDATA[


Who doesn&#8217;t want to be an anarchist librarian? Or a bibliophian?
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13847"><!-- &nbsp; --></abbr>
<p><a href="http://www.topatoco.com/merchant.mvc?Screen=PROD&amp;Store_Code=TO&amp;Product_Code=CB-LIBRARIAN-HOOD&amp;Category_Code=WON"><img src="http://www.topatoco.com/graphics/00000001/cb-librarian-hood.gif" alt="LibrArian Hoodie" width="600" height="272" /></a></p>
<p><a href="http://www.topatoco.com/merchant.mvc?Screen=PROD&amp;Store_Code=TO&amp;Product_Code=WON-BIBLIOPHIBIAN&amp;Category_Code=WON"><img src="http://www.topatoco.com/graphics/00000001/won-biblio.gif" alt="Bibliophibian Shirt" width="600" height="277" /></a></p>
<p>Who doesn&#8217;t want to be an anarchist librarian? Or a bibliophian?</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13847/fun-threads-for-librarians/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tips To Publishers From Google News</title>
		<link>http://maisonbisson.com/blog/post/13727/tips-to-publishers-from-google-news/</link>
		<comments>http://maisonbisson.com/blog/post/13727/tips-to-publishers-from-google-news/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 17:30:17 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[google news]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13727</guid>
		<description><![CDATA[
It turns out that there are a lot of differences between Google&#8217;s regular web crawler and the Google News crawler. And though very few of us will find our content included in Google News, it still seems like a good idea to make our content conform to their technical requirements. Here are a few of [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13727"><!-- &nbsp; --></abbr>
<p>It turns out that there are a lot of differences between Google&#8217;s regular web crawler and the <a href="http://www.google.com/support/news_pub/bin/topic.py?hl=en&amp;topic=11669">Google News crawler</a>. And though very few of us will find our content included in Google News, it still seems like a good idea to make our content conform to their <a href="http://www.google.com/support/news_pub/bin/topic.py?topic=11665">technical requirements</a>. Here are a few of them:</p>
<blockquote>
<ul>
<li>In order for our crawler to correctly gather your content, each article needs to link to a page dedicated solely to that article. We&#8217;re unable to index articles from news sections which consist of one long page rather than a series of links that lead to articles on individual pages.</li>
<li>If your articles are located in a drop down box, we won&#8217;t be able to crawl them. Google News is unable to crawl articles only accessible through a drop down menu.</li>
<li>Google News does not recognize or follow Flash, graphic/image or JavaScript links which link to articles. Our automated crawler is best able to crawl plain text HTML links.</li>
<li>Google News doesn&#8217;t crawl articles in PDF format, although this content is included on Google Web Search. Our automated crawler is currently best able to crawl plain text HTML sites.</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13727/tips-to-publishers-from-google-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook&#8217;s Favorite Metadata</title>
		<link>http://maisonbisson.com/blog/post/13726/facebooks-favorite-metadata/</link>
		<comments>http://maisonbisson.com/blog/post/13726/facebooks-favorite-metadata/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 17:58:03 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Blink]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[social sharing]]></category>
		<category><![CDATA[social software]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13726</guid>
		<description><![CDATA[
Facebook&#8217;s guide to sharing details some meta tags to make that sharing work better:
In order to make sure that the preview is always correctly populated, you should add the tags shown below to your html. An example news story could have the following:
&#60;meta name=&#34;title&#34; content=&#34;Smith hails 'unique' Wable legacy&#34; /&#62;
&#60;meta name=&#34;description&#34; content=&#34;John Smith claims beautiful [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13726"><!-- &nbsp; --></abbr>
<p><a title="Facebook | Share Partners" href="http://www.facebook.com/share_partners.php">Facebook&#8217;s guide to sharing</a> details some meta tags to make that sharing work better:</p>
<blockquote><p>In order to make sure that the preview is always correctly populated, you should add the tags shown below to your html. An example news story could have the following:</p>
<pre class="brush: xml;">&lt;meta name=&quot;title&quot; content=&quot;Smith hails 'unique' Wable legacy&quot; /&gt;
&lt;meta name=&quot;description&quot; content=&quot;John Smith claims beautiful football is the main legacy of Akhil Wable's decade at the club. &quot; /&gt;
&lt;link rel=&quot;image_src&quot; href=&quot;http://www.onjd.com/design05/images/PH2/WableAFC205.jpg&quot; /&gt;</pre>
<p>As shown, title contains the preview title, description contains the preview summary and image_src contains the preview image.  Please make sure that none of the content fields contain any html markup because it will be stripped out. For consistency&#8217;s sake, please use the &lt;meta> tag to provide text data for the preview, and the &lt;link> tag for any source urls.</p>
<p>The title and summary tags are the minimum requirements for any preview, so make sure to include these two.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13726/facebooks-favorite-metadata/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WiFi Is Critical To Academia, The WiFi Alliance Says</title>
		<link>http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/</link>
		<comments>http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 18:47:10 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[connectivity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[social software]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13733</guid>
		<description><![CDATA[
 study sponsored by the WiFi alliance reveals the following:
WiFi and college choice

90% of college students say Wi-Fi access is as essential to education as classrooms and computers
57% say they wouldn&#8217;t go to a college that doesn&#8217;t have free Wi-Fi
79% say that without Wi-Fi access, college would be a lot harder
60% agree that widely available Wi-Fi [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13733"><!-- &nbsp; --></abbr>
<p><div class="contents innerindex"><h3>Contents</h3><ol><li><a href="http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/#13733_wifi-and-college-cho_1">WiFi and college choice</a></li><li><a href="http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/#13733_wifi-and-where-they-_1">WiFi and where they use it</a></li><li><a href="http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/#13733_wifi-in-the-classroo_1">WiFi in the classroom</a></li><li><a href="http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/#13733_wifi-and-linkbaiting_1">WiFi and linkbaiting statistics</a></li></ol></div>A <a href="http://www.wi-fi.org/pressroom_overview.php?newsid=723">study sponsored by the WiFi alliance</a> reveals the following:</p>
<h3 id="13733_wifi-and-college-cho_1" >WiFi and college choice</h3>
<ul>
<li>90% of college students say Wi-Fi access is as essential to education as classrooms and computers</li>
<li>57% say they wouldn&#8217;t go to a college that doesn&#8217;t have free Wi-Fi</li>
<li>79% say that without Wi-Fi access, college would be a lot harder</li>
<li>60% agree that widely available Wi-Fi on campus is an indication that a school cares about its students</li>
</ul>
<h3 id="13733_wifi-and-where-they-_1" >WiFi and where they use it</h3>
<ul>
<li>55% have connected from coffee shops and restaurants</li>
<li>47% from parks</li>
<li>24% from in their cars</li>
</ul>
<h3 id="13733_wifi-in-the-classroo_1" >WiFi in the classroom</h3>
<ul>
<li>55% have checked Facebook™ or MySpace™ and sent or received e-mail while using their laptop in class</li>
<li>47% have sent instant messages to a friend during class</li>
<li>44% used Wi-Fi to get a head start on an assignment before a class was finished</li>
</ul>
<h3 id="13733_wifi-and-linkbaiting_1" >WiFi and linkbaiting statistics</h3>
<ul>
<li>If forced to choose, 48% would give up beer before giving up Wi-Fi</li>
</ul>
<p>Survey methodology: &#8220;In conjunction with the Wi-Fi Alliance, Wakefield Research surveyed 501 U.S. college students in September 2008. The sampling variation in this survey is plus or minus 4.3 percentage points.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13733/wifi-is-critical-to-academia-the-wifi-alliance-says/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Juice Your OPAC</title>
		<link>http://maisonbisson.com/blog/post/13491/juice-your-opac/</link>
		<comments>http://maisonbisson.com/blog/post/13491/juice-your-opac/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 16:27:47 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[next generation catalog]]></category>
		<category><![CDATA[opac]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13491</guid>
		<description><![CDATA[
Richard Wallace&#8217;s Juice project (Javascript User Interface Componentised Extensions) is a “simple componentised framework constructed in Javascript to enable the sharing of Ajax Stye extensions to a web interface.”
WordPress or Scriblio users might do well to think about it as a way to put widgets on systems that don&#8217;t support widgets, though as Richard points [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13491"><!-- &nbsp; --></abbr>
<p>Richard Wallace&#8217;s <a title="http://code.google.com/p/juice-project/" href="http://code.google.com/p/juice-project/">Juice project</a> (Javascript User Interface Componentised Extensions) is a “simple componentised framework constructed in Javascript to enable the sharing of Ajax Stye extensions to a web interface.”</p>
<p><a href="http://wordpress.org/">WordPress</a> or <a href="http://about.scriblio.net/">Scriblio</a> users might do well to think about it as a way to put widgets on systems that don&#8217;t support widgets, though as Richard points out, “the framework is applicable to any environment which, via identifiers contained within a html page, needs to link to or embed external resources.”</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13491/juice-your-opac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Way Cooler Than A Catalog</title>
		<link>http://maisonbisson.com/blog/post/13529/way-cooler-than-a-catalog/</link>
		<comments>http://maisonbisson.com/blog/post/13529/way-cooler-than-a-catalog/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 17:54:09 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[catalog]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[data sharing]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[next generation catalog]]></category>
		<category><![CDATA[NGC]]></category>
		<category><![CDATA[ngc4lib]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[Shirley Linicum]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13529</guid>
		<description><![CDATA[
I got a little excited when Shirley Lincicum wrote to the NGC4Lib mail list:
[O]ne of the most frustrating things for me about Next Generation Catalog systems as they currently exist is that they seem wholly focused on the user interface and can, in fact, actually hold libraries back from designing or implementing improved “back end” [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13529"><!-- &nbsp; --></abbr>
<p>I got a little excited when <a title="Re: Three years of NGC4LIB - reflections? from Shirley Lincicum on 2009-03-07 (stdin)" href="http://serials.infomotions.com/ngc4lib/archive/2009/200903/0329.html">Shirley Lincicum</a> wrote to the <a href="https://listserv.nd.edu/cgi-bin/wa?A0=NGC4LIB">NGC4Lib mail list</a>:</p>
<blockquote><p>[O]ne of the most frustrating things for me about Next Generation Catalog systems as they currently exist is that they seem wholly focused on the user interface and can, in fact, actually hold libraries back from designing or implementing improved “back end” systems because of the dependencies introduced by the new “discovery layer” applications.</p></blockquote>
<p>I was excited because <a title="» An Almost-Manifesto Masquerading as a Presentation… MaisonBisson.com" href="http://maisonbisson.com/blog/post/11849/an-almost-manifesto-masquerading-as-a-presentation/">almost two years ago I wrote</a> something like this:</p>
<blockquote><p>Libraries are good at sharing data, but we’ve done a poor job of taking advantage of <a href="http://maisonbisson.com/blog/post/11844/the-rules-2007/">the network and new technologies</a> to reduce the costs of sharing. &#8230;We recognize now that our data is living and evolving, but synchronizing available record enhancements with individual collections remains costly and laborious.</p>
<p>Without efficient mechanisms to share improvements, the value to any one library of trying to share what local improvements or corrections they make is limited, preventing libraries from benefiting from the network in ways that open source software development has.</p></blockquote>
<p>Some, however, have called Scriblio a “next generation catalog,” so I&#8217;m anxious to point out the following: The Scriblio <a title="about Scriblio » Scriblio MATC Project Final Report" href="http://about.scriblio.net/scribbles/109/scriblio-matc-project-final-report/#109_the-data-problem_1">MATC Project Final Report</a>, which hits on some of the above points; <a title="about Scriblio » OpenLibrary.org: Leveraging Digital Technologies to Provide Open, Universal Access to Books" href="http://about.scriblio.net/scribbles/70/openlibraryorg-leveraging-digital-technologies-to-provide-open-universal-access-to-books/">this (not funded) IMLS proposal</a>, which fully embraced the challenge (<a title="about Scriblio » OpenLibrary.org: Leveraging Digital Technologies to Provide Open, Universal Access to Books" href="http://about.scriblio.net/scribbles/70/openlibraryorg-leveraging-digital-technologies-to-provide-open-universal-access-to-books/#70_diagrams_1">take a look at this diagram</a>); and <a title="about Scriblio » Scriblio 2.7 released" href="http://about.scriblio.net/scribbles/189/scriblio-27-released/">Scriblio 2.7</a> with its new internal data model, which finally delivers some of the answers I&#8217;ve had in mind.</p>
<p>On the other hand, I&#8217;ve resisted the label “next generation catalog” for Scriblio not only because the software does a pretty good job of <a href="http://archives.colby-sawyer.edu/">hosting digital libraries</a> in addition representing <a href="http://collingswoodlib.org/browse/">library catalogs</a>, but because my hope is that Scriblio does more than put a pretty face on antiquated systems. It&#8217;s hard to deny the dramatic changes in writing, publishing, and information sharing, and WordPress is very near the center of it all (<a href="http://wordpress.com/">WordPress.com</a> alone hosts about <a href="http://en.wordpress.com/stats/posting/">150,000 new posts each day</a>); I see an opportunity for libraries to participate at the start of information creation, rather than at the end.</p>
<p>Shirley continues:</p>
<blockquote><p>If our metadata and communication standards, and the systems we use to manage the resources we collect, were open enough, and therefore able to be integrated seamlessly into general discovery interfaces like Google, Facebook, etc., it would allow librarians to focus on collecting and organizing stuff (which is challenging enough to do well), and let the folks with the resources to do really good usability research and hire lots of really good programmers to design the interfaces.</p></blockquote>
<p>I might argue with the end of Shirley&#8217;s point, but the overall message that we build systems and data that integrates with Google, Facebook, and whatever else is next is a good one.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13529/way-cooler-than-a-catalog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scriblio Theater</title>
		<link>http://maisonbisson.com/blog/post/13494/scriblio-theater/</link>
		<comments>http://maisonbisson.com/blog/post/13494/scriblio-theater/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 16:11:24 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[scriblio]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13494</guid>
		<description><![CDATA[
I should have done screencasts like the above long ago. It&#8217;s not that they&#8217;re great, but they are a wonderful excuse to use the canned lounge music I&#8217;ve got. Those videos are now on the front page of the official Scriblio site, and I did five more to demo the installation and configuration. Big thanks [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13494"><!-- &nbsp; --></abbr>
<a href="http://maisonbisson.com/blog/post/13494/scriblio-theater/"><p><em>Click here to view the embedded video.</em></p></a>
<a href="http://maisonbisson.com/blog/post/13494/scriblio-theater/"><p><em>Click here to view the embedded video.</em></p></a>
<p>I should have done screencasts like the above long ago. It&#8217;s not that they&#8217;re great, but they are a wonderful excuse to use the canned lounge music I&#8217;ve got. Those videos are now on the <a href="http://about.scriblio.net/">front page of the official Scriblio site</a>, and I did five more to <a href="http://about.scriblio.net/download/">demo the installation and configuration</a>. Big thanks go to <a href="http://collingswoodlib.org/">Collingswood NJ Public Library</a> Director <a href="http://inthelibrarywiththeleadpipe.org/authors/brett-bonfield/">Brett Bonfield</a> who let me use his library like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13494/scriblio-theater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scriblio 2.7 Released</title>
		<link>http://maisonbisson.com/blog/post/13484/scriblio-27-released/</link>
		<comments>http://maisonbisson.com/blog/post/13484/scriblio-27-released/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 16:00:15 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[scriblio]]></category>
		<category><![CDATA[Scriblio 2.7]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13484</guid>
		<description><![CDATA[

My slides for my presentation yesterday at code4lib are available both as a 2.7MB QuickTime and a 7.8 MB PDF, while the gist of talk went something like this:
Scriblio is an open source WordPress plugin that adds the ability to search, browse, and create structured data to the the popular blog/content management platform. And WordPress [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13484"><!-- &nbsp; --></abbr>
<p><a href="http://www.flickr.com/photos/maisonbisson/3308721449/" title="Scriblio 2.7 Released by misterbisson, on Flickr"><img src="http://farm4.static.flickr.com/3565/3308721449_25cf0efe01.jpg" width="500" height="375" alt="Scriblio 2.7 Released" /></a></p>
<p>My slides for my presentation yesterday at <a href="http://code4lib.org/conference/2009/">code4lib</a> are available both as a <a href="http://oz.plymouth.edu/~cbisson/presentations/code4lib2009_2009Feb24.mov">2.7MB QuickTime</a> and a <a href="http://oz.plymouth.edu/~cbisson/presentations/code4lib2009_2009Feb24.pdf">7.8 MB PDF</a>, while the gist of talk went something like this:</p>
<p><a href="http://about.scriblio.net/">Scriblio</a> is an <a href="http://svn.wp-plugins.org/scriblio/trunk/LICENSE.txt">open source</a> <a href="http://wordpress.org/extend/plugins/scriblio/">WordPress plugin</a> that adds the ability to search, browse, and create structured data to the the popular blog/content management platform. And WordPress adds great ease of use, permalinks, comments/trackbacks/pingbacks, and other social and web-centric features to that structured data. But that&#8217;s not news. The news is that Scriblio now has an internal data model that supports much more sophisticated uses (slides 3 and 4). Whereas previous versions of Scriblio were mostly just display and social interaction interfaces to data that&#8217;s created or managed elsewhere, this new version supports soup to nuts creation and management of collections. <a href="http://archives.colby-sawyer.edu/">Colby-Sawyer College&#8217;s archive</a> (slide 5) is the first to implement this (take note of how <a href="http://archives.colby-sawyer.edu/browse/">the horizontal search layout makes the facets more visible and usable</a>).</p>
<p>And that new data model also improves the usefulness of Scriblio to regular libraries (<a href="http://collingswoodlib.org/">Collingswood (NJ) Public Library</a> is shown on slide 6). Because Scriblio has an internal awareness of the metadata, it can automatically merge records from multiple sources (or multiple copies of the same record from the same source). The source of each piece of metadata in a record is identified and preserved (see the sourceid column in slides 7,8,9), allowing records to contain data from multiple sources (each with, perhaps, its own licensing terms). A practical example is enriching book records with data from <a href="http://www.tr.librarything.com/work/683408">LibraryThing&#8217;s Common Knowledge</a> <a href="http://www.librarything.com/services/librarything.ck.getwork.php">web service</a>, making that data part of the index and facets in the local catalog, while also properly crediting the service when a record contains that data.</p>
<p>The automated merging of records enables a few new applications. Among them: the merging of an A to Z periodical list with the ILS&#8217;s inventory, or the creation of a union catalog from several systems. Slide 11 shows a prototype union catalog that shows materials (and their real-time availability) from three institutions in New Hampshire. Assembling that catalog was as easy as entering each ILS&#8217;s hostname and record number range in the harvester (slide 12).</p>
<p>I didn&#8217;t mention it during the presentation, but Scriblio is now built to work well in both regular <a href="http://wordpress.org/">WordPress</a> as well as <a href="http://mu.wordpress.org/">WordPress MU</a>, the multi-user version of WordPress that allows a single installation to host many different sites (think <a href="http://wordpress.com/">WordPress.com</a>) at a <a href="http://en.wikipedia.org/wiki/Marginal_cost">marginal cost</a> to the hosting organization that approaches zero. The work to make Scriblio compatible with WordPress MU was <a href="http://www.neh.gov/ODH/Default.aspx?tabid=111&amp;id=69">supported in part by the National Endowment for the Humanities</a> (there&#8217;s lots more to say about that project soon).</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13484/scriblio-27-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://oz.plymouth.edu/~cbisson/presentations/code4lib2009_2009Feb24.mov" length="2829832" type="video/quicktime" />
		</item>
		<item>
		<title>Is Internet Linking Legal?</title>
		<link>http://maisonbisson.com/blog/post/13475/is-internet-linking-legal/</link>
		<comments>http://maisonbisson.com/blog/post/13475/is-internet-linking-legal/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 18:48:44 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Politics & Controversy]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[BlockShopper]]></category>
		<category><![CDATA[deep linking]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[jones day]]></category>
		<category><![CDATA[jonesday]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[linking]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13475</guid>
		<description><![CDATA[
You&#8217;d think the top search results on the matter would be newer than 1999, but that&#8217;s where you&#8217;ll find this NYT article and PubLaw item story, both from precambrian times. Worse, both of those articles suggest that my links to them may not be entirely kosher.
The problem is probably that US courts have not spoken [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13475"><!-- &nbsp; --></abbr>
<p>You&#8217;d think the top search results on the matter would be newer than 1999, but that&#8217;s where you&#8217;ll find <a title="Is Linking Always Legal? The Experts Aren't Sure." href="http://www.nytimes.com/library/tech/99/08/cyber/cyberlaw/06law.html">this NYT article</a> and <a title="Internet Legal Issues: Linking" href="http://www.publaw.com/linking.html">PubLaw item story</a>, both from precambrian times. Worse, both of those articles suggest that my links to them may not be entirely kosher.</p>
<p>The problem is probably that US courts have not spoken clearly on such a case. A <a title="Deep linking is legal in Denmark | EDRI" href="http://www.edri.org/edrigram/number4.5/deeplinking">Danish court in 2006 did</a>, but I think that no case in the US has gone far enough to actually set a precedent. Another chance at settling this issue was lost earlier this month when <a title="BlockShopper bullied into settling over Web links - Ars Technica" href="http://arstechnica.com/web/news/2009/02/blockshopper-bullied-into-settling-over-web-links.ars">BlockShopper settled</a>, rather than continue a costly defense of such a case. <a title="Jones Day v Blockshopper | Electronic Frontier Foundation" href="http://www.eff.org/cases/jones-day-v-blockshopper">The EFF is confident BlockShopper could have won</a>, but that means little when the legal bills come in.</p>
<p>Related at EFF: <a title="Kelly v. Arriba Soft | Electronic Frontier Foundation" href="http://www.eff.org/cases/kelly-v-arriba-soft">Kelly v. Arriba Soft</a> and <a title="Could Online Poker Law Raise The Stakes on Free Linking? | Electronic Frontier Foundation" href="http://www.eff.org/deeplinks/2006/10/could-online-poker-law-raise-stakes-free-linking">Unlawful Internet Gambling Enforcement Act</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13475/is-internet-linking-legal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Improved RDF Browsing</title>
		<link>http://maisonbisson.com/blog/post/13182/firefox-improved-rdf-browsing/</link>
		<comments>http://maisonbisson.com/blog/post/13182/firefox-improved-rdf-browsing/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 18:12:35 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[browser plugin]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linked data]]></category>
		<category><![CDATA[RDF]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13182</guid>
		<description><![CDATA[
lbjay uses both the Tabulator and Semantic Radar Firefox plugins to do magic with RDF in his browser.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13182"><!-- &nbsp; --></abbr>
<p><a title="www.reallywow.com - really? wow ... that's reallywow!" href="http://www.reallywow.com/">lbjay</a> uses both the <a title="Using the Firefox Tabulator Extension" href="http://dig.csail.mit.edu/2007/tab/tabtutorial.html">Tabulator</a> and <a title="Firefox Add-ons" href="https://addons.mozilla.org/en-US/firefox/addon/3886">Semantic Radar</a> Firefox plugins to do magic with RDF in his browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13182/firefox-improved-rdf-browsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LCSH Linked Data</title>
		<link>http://maisonbisson.com/blog/post/13226/lcsh-linked-data/</link>
		<comments>http://maisonbisson.com/blog/post/13226/lcsh-linked-data/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 18:27:07 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[lcsh]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[linked data]]></category>
		<category><![CDATA[skos]]></category>
		<category><![CDATA[subject headings]]></category>
		<category><![CDATA[takedown]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13226</guid>
		<description><![CDATA[
lcsh.info is gone, but there&#8217;s a lot to learn from this paper. I wish I&#8217;d seen that earlier.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13226"><!-- &nbsp; --></abbr>
<p><a title="lcsh.info" href="http://lcsh.info/">lcsh.info</a> is gone, but there&#8217;s a lot to learn <a title="http://arxiv.org/pdf/0805.2855" href="http://arxiv.org/pdf/0805.2855">from this paper</a>. I wish I&#8217;d seen that earlier.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13226/lcsh-linked-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Search Re-Imagined: Searchme iPhone App</title>
		<link>http://maisonbisson.com/blog/post/13096/web-search-re-imagined-searchme-iphone-app/</link>
		<comments>http://maisonbisson.com/blog/post/13096/web-search-re-imagined-searchme-iphone-app/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 16:17:50 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iPhone app]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[searchme]]></category>
		<category><![CDATA[web search]]></category>
		<category><![CDATA[web searching]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=13096</guid>
		<description><![CDATA[
 
Re-imagined a bit, anyway. Why browse a vertical list of results when you can flip through them like pages in a book (or album covers in iTunes). Searchme on the iPhone and iPod touch does just that.
As you type your search term, icons representing rough categories appear, allowing you to target your search and [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-13096"><!-- &nbsp; --></abbr>
<p><a title="searchme keyboard by misterbisson, on Flickr" href="http://www.flickr.com/photos/maisonbisson/3057092023/"><img src="http://farm4.static.flickr.com/3067/3057092023_20eb0c5570.jpg" alt="searchme keyboard" width="256" height="384" /></a> <a title="searchme vertical by misterbisson, on Flickr" href="http://www.flickr.com/photos/maisonbisson/3057928434/"><img src="http://farm4.static.flickr.com/3039/3057928434_206826a8e2.jpg" alt="searchme vertical" width="256" height="384" /></a></p>
<p>Re-imagined a bit, anyway. Why browse a vertical list of results when you can flip through them like pages in a book (or <a href="http://en.wikipedia.org/wiki/Cover_Flow">album covers in iTunes</a>). <a href="http://click.linksynergy.com/fs-bin/click?id=XfFSogqWv7s&amp;offerid=146261.704771258&amp;type=10&amp;subid=">Searchme</a><img src="http://ad.linksynergy.com/fs-bin/show?id=XfFSogqWv7s&amp;bids=146261.704771258&amp;type=10&amp;subid=" alt="icon" width="1" height="1" /> on the iPhone and iPod touch does just that.</p>
<p>As you type your search term, icons representing rough categories appear, allowing you to target your search and helping people who&#8217;re searching for information about pythons the snake avoid results about the programming language. Though, in practice, the category results for “python” include “computer programming”, “web development,” but no obvious category for animals or zoological queries.</p>
<p>The results are displayed in a cover-flow-like interface, with each website represented by a screenshot image. The result is that you can browse through a half-dozen results much faster than you could individually load each page. Unfortunately, the search results are poor compared to Google or Yahoo (to engines I use regularly), and you&#8217;ll likely find yourself having to browse a few sites before you find your answer.</p>
<p>Despite these annoyances, and a few bugs, Searchme is a good reminder that new technologies offer new affordances. Cover flow offers a very simple method of exploring a dataset. I&#8217;m not convinced that web search results are well suited to it, but I can imagine a few datasets &#8212; photo archives, for example &#8212; that might be.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/13096/web-search-re-imagined-searchme-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Education Mail List</title>
		<link>http://maisonbisson.com/blog/post/12895/wordpress-education-mail-list/</link>
		<comments>http://maisonbisson.com/blog/post/12895/wordpress-education-mail-list/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:43:44 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[mail list]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12895</guid>
		<description><![CDATA[
wp-edu, the WordPress for education mail list has launched. Join up, catch up on the archives, and set it up at your school.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12895"><!-- &nbsp; --></abbr>
<p><a href="http://lists.automattic.com/mailman/listinfo/wp-edu" title="wp-edu Info Page">wp-edu</a>, the WordPress for education mail list has launched. <a href="http://lists.automattic.com/mailman/listinfo/wp-edu">Join up</a>, catch up on <a href="http://comox.textdrive.com/pipermail/wp-edu/">the archives</a>, and set it up at your school.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12895/wordpress-education-mail-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Declaration of Metadata Independance</title>
		<link>http://maisonbisson.com/blog/post/12883/declaration-of-metadata-independance/</link>
		<comments>http://maisonbisson.com/blog/post/12883/declaration-of-metadata-independance/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 17:13:21 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[declaration of independence]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[metadata]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12883</guid>
		<description><![CDATA[

Declaration of Metadata Independance: 
We hold these truths to be self-evident, that Metadata is essential to all Users, and that the Creation of Metadata endows certain inalienable Rights, that among these are the right to collect, the right to share and the pursuit of Happiness through the reuse of the Metadata&#8230; (read more) 
Via.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12883"><!-- &nbsp; --></abbr>
<p><a href="http://www.flickr.com/photos/maisonbisson/3008158690/" title="Declaration of Independence by misterbisson, on Flickr"><img src="http://farm4.static.flickr.com/3292/3008158690_cd30f7d074.jpg" width="500" height="327" alt="Declaration of Independence" /></a></p>
<p><a href="http://repohate.blogspot.com/2008/11/declaration-of-independance-of-metadata.html" title="Declaration of Independance of Metadata">Declaration of Metadata Independance</a>: </p>
<blockquote><p>We hold these truths to be self-evident, that Metadata is essential to all Users, and that the Creation of Metadata endows certain inalienable Rights, that among these are the right to collect, the right to share and the pursuit of Happiness through the reuse of the Metadata&#8230; (<a href="http://repohate.blogspot.com/2008/11/declaration-of-independance-of-metadata.html" title="Declaration of Independance of Metadata">read more</a>) </p></blockquote>
<p><a href="http://twitter.com/eby/status/993237800">Via.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12883/declaration-of-metadata-independance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wikipedia API?</title>
		<link>http://maisonbisson.com/blog/post/12838/wikipedia-api-2/</link>
		<comments>http://maisonbisson.com/blog/post/12838/wikipedia-api-2/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 15:32:07 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12838</guid>
		<description><![CDATA[
I&#8217;ve wanted a Wikipedia API for a while. Now I might&#8217;ve stumbled into one: commons.wikimedia.org/w/api.php. It doesn&#8217;t do exactly what I want, but it might yet be useful.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12838"><!-- &nbsp; --></abbr>
<p>I&#8217;ve wanted a <a title="» Wikipedia API? MaisonBisson.com" href="http://maisonbisson.com/blog/post/10751/wikipedia-api/">Wikipedia API</a> for a while. Now I might&#8217;ve <a title="Reusing content outside Wikimedia - Wikimedia Commons" href="http://commons.wikimedia.org/wiki/Commons:Reusing_content_outside_Wikimedia#Own_MediaWiki_installation">stumbled into</a> one: <a href="http://commons.wikimedia.org/w/api.php">commons.wikimedia.org/w/api.php</a>. It doesn&#8217;t do exactly what I want, but it might yet be useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12838/wikipedia-api-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>xFruits: “Compose Your Information System”</title>
		<link>http://maisonbisson.com/blog/post/12787/xfruits-%e2%80%9ccompose-your-information-system%e2%80%9d/</link>
		<comments>http://maisonbisson.com/blog/post/12787/xfruits-%e2%80%9ccompose-your-information-system%e2%80%9d/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 01:20:50 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[networked information]]></category>
		<category><![CDATA[pipes]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[xfruits]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12787</guid>
		<description><![CDATA[
Is xFruits a worthy replacement for Yahoo! Pipes?
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12787"><!-- &nbsp; --></abbr>
<p>Is <a title="xFruits - Compose your information system" href="http://www.xfruits.com/">xFruits</a> a worthy replacement for <a title="Rewire the web" href="http://pipes.yahoo.com/pipes/">Yahoo! Pipes</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12787/xfruits-%e2%80%9ccompose-your-information-system%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Libraries vs. IT Departments</title>
		<link>http://maisonbisson.com/blog/post/12795/libraries-vs-it-departments/</link>
		<comments>http://maisonbisson.com/blog/post/12795/libraries-vs-it-departments/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 18:25:27 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[conflict]]></category>
		<category><![CDATA[information technology]]></category>
		<category><![CDATA[lib20]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library 2.0]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[Tech Therapy]]></category>
		<category><![CDATA[The Chronicle]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12795</guid>
		<description><![CDATA[
The Chronicle&#8217;s Tech Therapy podcast last week featured Libraries vs. IT Departments. (Via.)
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12795"><!-- &nbsp; --></abbr>
<p><a href="http://chronicle.com/">The Chronicle</a>&#8217;s <a title="Multimedia - Chronicle.com" href="http://chronicle.com/techtherapy/">Tech Therapy</a> <a href="http://serve.castfire.com/audio/27596/techtherapy_2008-10-08-153914.mp3">podcast</a> last week featured <a title="Libraries vs. IT Departments - Chronicle.com" href="http://chronicle.com/media/audio/v55/i07/techtherapy/">Libraries vs. IT Departments</a>. (<a href="http://dcfischer.blogs.plymouth.edu/">Via</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12795/libraries-vs-it-departments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://serve.castfire.com/audio/27596/techtherapy_2008-10-08-153914.mp3" length="" type="" />
		</item>
		<item>
		<title>How Wikipedia Works</title>
		<link>http://maisonbisson.com/blog/post/12762/how-wikipedia-works/</link>
		<comments>http://maisonbisson.com/blog/post/12762/how-wikipedia-works/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 01:00:31 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[How Wikipedia Works]]></category>
		<category><![CDATA[Phoebe Ayers]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12762</guid>
		<description><![CDATA[

When Phoebe Ayers isn&#8217;t hanging out at ROFLcon she&#8217;s probably doing something related to Wikipedia, so I&#8217;m looking forward to reading  How Wikipedia Works: And How You Can Be a Part of It.
Extra points: Phoebe and her co-authors somehow convinced their publisher to release the entire work under the GFDL, the same license Wikipedia [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12762"><!-- &nbsp; --></abbr>
<p><a title="How Wikipedia Works by misterbisson, on Flickr" href="http://www.flickr.com/photos/maisonbisson/2940250586/"><img src="http://farm4.static.flickr.com/3039/2940250586_cee75018e1.jpg" alt="How Wikipedia Works" width="500" height="278" /></a></p>
<p>When <a title="Phoebe - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/User:Phoebe">Phoebe Ayers</a> isn&#8217;t <a title="Phoebe sells Brawndo on Flickr - Photo Sharing!" href="http://www.flickr.com/photos/maisonbisson/2441836092/">hanging out at ROFLcon</a> she&#8217;s probably doing something related to <a href="http://wikipedia.org/">Wikipedia</a>, so I&#8217;m looking forward to reading <a title="Books" href="http://www.amazon.com/How-Wikipedia-Works-You-Part/dp/159327176X/?tag=maisonbisson-20"> How Wikipedia Works: And How You Can Be a Part of It</a>.</p>
<p>Extra points: Phoebe and her co-authors somehow convinced <a title="No Starch Press" href="http://nostarch.com/">their publisher</a> to <a title="Appendix F. GNU Free Documentation License" href="http://howwikipediaworks.com/apf.html">release the entire work under the GFDL</a>, the same license <a href="http://en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License">Wikipedia uses</a>. You could <a title="How Wikipedia Works" href="http://howwikipediaworks.com/">read the entire thing online</a> for free, but that&#8217;s the easy part. What will you do to return the value? (Remember, <a href="http://library.plymouth.edu/read/333832">Andrew Keen is watching</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12762/how-wikipedia-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracking Aircraft Movements</title>
		<link>http://maisonbisson.com/blog/post/12718/tracking-aircraft-movements/</link>
		<comments>http://maisonbisson.com/blog/post/12718/tracking-aircraft-movements/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 23:53:10 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[air traffic]]></category>
		<category><![CDATA[air traffic control]]></category>
		<category><![CDATA[aircraft]]></category>
		<category><![CDATA[flight tracking]]></category>
		<category><![CDATA[flightplan]]></category>
		<category><![CDATA[flights]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12718</guid>
		<description><![CDATA[
From Justin: real-time flight tracking. You can even overlay it on Google Earth. None of them as pretty as Aaron Koblin&#8217;s Flightplan, though.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12718"><!-- &nbsp; --></abbr>
<p>From <a title="CallBlog » random thoughts, concert reviews, and wanderings" href="http://callblog.net/blog/">Justin</a>: <a href="http://flightaware.com/live/">real-time flight tracking</a>. You can even <a title="Real-Time Flight Tracker - Flight Tracking" href="http://www.aeroseek.com/webtrax/">overlay it on Google Earth</a>. None of them as pretty as <a title="» Flightplan MaisonBisson.com" href="http://maisonbisson.com/blog/post/11492/flightplan/">Aaron Koblin&#8217;s Flightplan</a>, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12718/tracking-aircraft-movements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>