<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Information Obliteracy</title>
	<atom:link href="http://obliteracy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://obliteracy.wordpress.com</link>
	<description>Admitting you have an information problem is the first step</description>
	<lastBuildDate>Sun, 12 May 2013 00:08:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='obliteracy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Information Obliteracy</title>
		<link>http://obliteracy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://obliteracy.wordpress.com/osd.xml" title="Information Obliteracy" />
	<atom:link rel='hub' href='http://obliteracy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Fun with Google</title>
		<link>http://obliteracy.wordpress.com/2011/10/12/fun-with-google/</link>
		<comments>http://obliteracy.wordpress.com/2011/10/12/fun-with-google/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 00:41:49 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[library technology]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/?p=69</guid>
		<description><![CDATA[There is a map in our ILL office.  ILL staff indicate libraries that we loan materials to by sticking a white pin in the map and they indicate libraries that lend to us by sticking a gold pin in the map.  If you are a map person, or even if you are just a library person, it interesting to check [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=69&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>There is a map in our ILL office.  ILL staff indicate libraries that we loan materials to by sticking a white pin in the map and they indicate libraries that lend to us by sticking a gold pin in the map.  If you are a map person, or even if you are just a library person, it interesting to check out places where things from our library have gone and it is interesting to see where things have come from.</p>
<p>I thought it would be interesting to see if I could duplicate the map on Google maps &#8211; and for the fun of it see if I could create a simple way to update the map.  The first thing I needed to do was get a handle on <a href="http://code.google.com/apis/kml/documentation/">KML</a>.  KML is a flavor of XML that Google uses to encode data about maps.  Once I had a handle on KML, I needed to find a way to get the information to populate the KML.</p>
<p>Like most university libraries, my library uses <a href="http://www.oclc.org/us/en/default.htm">OCLC</a> to facilitate lending between other libraries and us.  Additionally, the library uses <a href="http://www.oclc.org/us/en/illiad/">ILLiad</a> to manage that work.  Unfortunately, I don&#8217;t have direct access to the data in ILLiad, I&#8217;m not even 100% sure what data I could get out of it.  But I could get our ILL Librarian to get me a list of OCLC symbols.  And this is where things start to get interesting.</p>
<p>In order to get information about a library, I used the <a href="http://www.oclc.org/us/en/registry/about/default.htm">WorldCat Registry</a> API.  From the registry I can get the name of the parent institution, name of the library, address of the library, the latitude and longitude of the library (very important for Google Maps), and a host of other information.  Pretty much everything I needed to populate my KML data.</p>
<p>So I wrote up a little php script that read through my list of OCLC symbols and searched the WorldCat Registry API for each one.  Fairly quickly I realized that many more symbols were failing than should.  Most often this was a result of a symbol  having more than one location to choose from.  So I tweaked my script to go through each location returned and make its best guess at which one was correct.  Which pretty much meant the first record that had a reasonably complete address.</p>
<p>Now I had a way to get the information about the libraries my library had been engaging in ILL with, but how was I going to get it into Google Maps.  At first I just crammed it directly into KML format.  In my hopeful first days the script generated live data.  However, as you might imagine, this resulted in considerable lag time and ultimately Google just ignored my data.  Next I output the KML data into a separate file.</p>
<p>Outputting the data was all well and good, but ultimately posed some challenges for updating the data.  I had always intended that the data would be able to be updated.  Entires needed to be added, deleted or changed.  I could just periodically run a new list of OCLC symbols through my script and overwrite the old file with new, updated data with any new entries and minus any that needed to be dropped.  However, I still had some failed WorldCat Registry searches that needed to be handled.  And not all of the ILL from my library goes to places that have an OCLC symbol.  So I was hoping to be able to manually enter data, when necessary,</p>
<p>My first solution was to update the KML file using the XML support in PHP.  While this was fun as a mental exercise, it was pretty obvious that I needed something a little more flexible and easy to deal with.  I went about moving my data into a MySQL database.  However, around this time I saw someone talking about Google&#8217;s <a href="http://www.google.com/fusiontables/public/tour/index.html">Fusion Tables</a>.  Fusion Tables seemed like a perfect fit for my project.  Fusion Tables are built to work with Google&#8217;s other products, like Google Maps.  Fusion Tables are smart enough to know when they are dealing with location data (most of the time) and you can import the data into a map without converting it to KML.</p>
<p>Ultimately, I didn&#8217;t go with Fusion Tables.  I wasn&#8217;t sure that I ultimately wanted to host this library data in my personal gmail account.  And I suspected that other people in the library would have some issues around managing the data this way.  So at first I stuck with my MySQL database.  But then my university contracted with Google for Gmail accounts with Google Docs and Sites and &#8230;  No Fusion Tables.  But I could access a Google Spreadsheet through the API.  And I could easily share the document with others in the library without having to ask for a personal email.  It was worth a try.</p>
<p>Ultimately, I ended up storing the data in a Google Docs spreadsheet.  I have a script that initially populated the data and two other scripts.  The first script lets to put in an OCLC symbol and have the data automatically added to spreadsheet.  This script handles the multiple WorldCat Registry entries with more subtlety, allowing the user to select the addess that they want to use, even providing a map as a visual aid.  The other script allows someone to manually enter an address and add it to the spreadsheet.  Again, with visual aids and the whole nine yards.</p>
<p>I should mention, that I found the latitude and longitude data in the WorldCat Registry to be less than reliable.  It was frequently absent.  Sometimes it was transposed, so the lat was the long and vice versa.  Sometime, I don&#8217;t know where it came from.  So I started using the Google Maps API to get latitude and longitude coordinates based on the address in the WorldCat Registry.</p>
<p>For the sake of my presentation here, I moved the data back into Fusion Tables.  Here&#8217;s how it looks:</p>
<!-- Unsupported URL -->
<p>It&#8217;s not clear that WP is playing nice with Fusion Tables right now, so I&#8217;m not sure that is going to show up, so here is the link &#8211; <a href="https://www.google.com/fusiontables/DataSource?snapid=S285421YrX2">https://www.google.com/fusiontables/DataSource?snapid=S285421YrX2</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=69&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2011/10/12/fun-with-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>Support the Home Team</title>
		<link>http://obliteracy.wordpress.com/2010/10/04/support-the-home-team/</link>
		<comments>http://obliteracy.wordpress.com/2010/10/04/support-the-home-team/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 01:29:44 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[library technology]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/?p=61</guid>
		<description><![CDATA[Recently, William Denton posted an email on the NGC4Lib list about a talk he is giving at Access 2010.  In the description of the talk, he included the following: Reference librarians are whiny and demanding. Systems librarians are arrogant and rude. Users are clueless and uninformed. I started my library career as a reference librarian, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=61&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Recently, William Denton posted an email on the NGC4Lib list about a talk he is giving at Access 2010.  In the description of the talk, he included the following:</p>
<p style="padding-left:30px;">Reference librarians are whiny and demanding.<br />
Systems librarians are arrogant and rude.<br />
Users are clueless and uninformed.</p>
<p>I started my library career as a reference librarian, but have spent the last 9 years working in systems.  During all that time, I have been an active library user.  So I guess that makes me whiny, demanding, arrogant, rude, clueless, and uninformed.  I&#8217;m sure I could find someone who would call me any of those things.  We all probably experience moments where we exhibit those unattractive traits.  It does little or no good to classify our colleagues and our users that way.  But response to the post makes it clear that those labels resonated with people.</p>
<p style="text-align:left;">So, why do we feel this way?  I&#8217;m sure there are many things that contribute to this feeling, but I want to focus on one issue, how our systems department interact with the rest of the library.  I currently work in a department called &#8220;Library Systems <em>Support</em>&#8220;.  This sense of <em>support</em> defines how the department interacts with other library staff.  While I don&#8217;t think about it from day to day, it still shows up in the interactions with staff members and in decisions that are made by management.  It makes the library staff view systems as people who work for them.  And it makes the systems department view the library staff as a drain on their resources.</p>
<p style="text-align:left;"> </p>
<p style="text-align:center;"><a title="Dilbert.com" href="http://dilbert.com/strips/comic/2006-01-29/"><img class="aligncenter" style="border:0;" src="http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/00000/1000/100/1125/1125.strip.sunday.gif" border="0" alt="Dilbert.com" width="448" height="201" /></a></p>
<p>I believe that working in partnership between systems and the rest of the library will help us break down the barriers that breed the hard feelings expressed above.  Of course, many library system departments do work in partnership with their colleagues and most or all probably do at times, but many libraries do still view their systems department as the &#8221;back office&#8221; operation which supports the &#8220;front office&#8221;, reference and special collections, operations.  And that dynamic fosters relations where not only is it likely that departments will have problems communicating, but it is often in the departments interest to not communicate.</p>
<p>When systems works as a partner with other departments in the library, both players can focus on the users and on the businesses processes of the library.  When systems serves as support for other departments and is not involved in the business of the library, the needs of the users and the definition of business processes becomes a negotiation.  The end result is that neither the user or the library is served.  Instead, the individual departments are served.  The things that the staff think are important are preserved.  The things that don&#8217;t directly impact the staff are the first to go.  Working as a partner changes the game.  Instead of starting from either department&#8217;s goals, both parties can work from a common goal.  Sure, that&#8217;s a bit idealistic, but the likelihood that focus is kept on the end result, rather than on who&#8217;s going to do the work, increase significantly.</p>
<p>It isn&#8217;t all milk and honey.  Working as a partner with other library departments is going to make more work for systems.  It will probably make more work for the other departments as well.  But working together will break down barriers between the departments.  So Systems will see Reference as more than whiny and demanding.  And Reference will see Systems as something more than arrogant and rude.  And we&#8217;ll realize that the users aren&#8217;t clueless and uniformed, they just need our help.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=61&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2010/10/04/support-the-home-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>

		<media:content url="http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/00000/1000/100/1125/1125.strip.sunday.gif" medium="image">
			<media:title type="html">Dilbert.com</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Librarianship</title>
		<link>http://obliteracy.wordpress.com/2010/09/14/what-is-librarianship/</link>
		<comments>http://obliteracy.wordpress.com/2010/09/14/what-is-librarianship/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 00:46:42 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[library technology]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/?p=53</guid>
		<description><![CDATA[I recently came across a post on Rory Litwin&#8217;s blog about what &#8220;librarianship&#8221; is.  This is a topic that is of interest to me, in part because it is my chosen profession, but also because I think there is confusion among librarians about what librarianship is.  Librarianship, to me, is a profession.  This distinguishes it [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=53&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I recently came across a <a href="http://libraryjuicepress.com/blog/?p=2349">post</a> on Rory Litwin&#8217;s blog about what &#8220;librarianship&#8221; is.  This is a topic that is of interest to me, in part because it is my chosen profession, but also because I think there is confusion among librarians about what librarianship is.  Librarianship, to me, is a profession.  This distinguishes it from being just a job.  When you are the member of a profession, it is your responsibility to think about what that means.  Just as an example, on one of the email lists that I subscribe there has been a lengthy discussion about privacy and the ALA Code of Ethics.  As a &#8220;professional&#8221;, I believe these are the kinds of things that you you should be thinking about.  When you have a job, you just show up and do what you are told.</p>
<p>So what is the confusion about librarianship?  I think Rory&#8217;s post hints at it, but I see it more pronounced on some of the email lists that I monitor.  People talk past each other on a topic because they don&#8217;t start out with the same assumptions.  To go back to Rory&#8217;s post for a minute, as someone points out in the comment, Rory talks about the fields of &#8220;web designers, information architects, web searchers, information scientists, user experience experts&#8221; belonging to other professionals, but then claims that librarians should acquire greater knowledge about &#8220;scholarly communities, the research into reading behavior, learning theory, media studies&#8221;, although those are fields that also belong to other groups.</p>
<p>I think the division created by Rory is informative, and relevant to the failed connections I was talking about earlier.  On the one hand is the a list of &#8220;technical&#8221; disciplines we should be wary of and on the other is a list of &#8220;pedagogical&#8221; disciplines that we should embrace.  The same dichotomy influences discussions on the mailing list mentioned above.  Arguments about what machines can/will do to make human intervention unnecessary versus how our users really use the machines can go on for weeks and usually only make both sides dig in more (Although, I do think recently it seems like there has been a little give on one or both sides).  The sad thing is that, for the most part, librarians aren&#8217;t experts on either the technical or the pedagogical issues.  We flounder around grabbing for whatever is popular (web scale!!!) or what catches our fancy (active learning!!!) without the training to back it up and without the research to show that it is worthwhile.</p>
<p>So, what is librarianship?  I can&#8217;t say that I know, but the idea I have been mulling around in my head since reading Rory&#8217;s post is that librarianship is about making sense out of the world of information.  Making sense in the broad sense in terms of defining the information universe, creating ways to describe the information in the universe, and developing ways to identify and access information.  And also, making sense in the micro sense, such as teaching information literacy to a class (or a single student), cataloging a book, building a local collection, or making a web site that helps users find what they are looking for.</p>
<p>To make this sense out of the incredible amounts of information out there and make it available to that person who walks in the front door or surfs over to your web site, you do need all the skills that Rory listed: an understanding of scholarly communities, the research into reading behavior, learning theory, media studies and you also need to be web designers, information architects, web searchers, information scientists, user experience experts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=53&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2010/09/14/what-is-librarianship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>Coping with Complexity</title>
		<link>http://obliteracy.wordpress.com/2010/07/30/coping-with-complexity/</link>
		<comments>http://obliteracy.wordpress.com/2010/07/30/coping-with-complexity/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 21:02:48 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[library technology]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/?p=45</guid>
		<description><![CDATA[Last week I attended a presentation by Don Norman, the author of The Design of Everyday Things and many other excellent books.  His forthcoming book will be entitled Living with Complexity. Several points from Dr. Norman&#8217;s presentation got me thinking about how I could apply them in Libraryland. The first point was that simplicity exists [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=45&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Last week I attended a presentation by Don Norman, the author of <em>The Design of Everyday Things</em> and many other excellent books.  His forthcoming book will be entitled <em>Living with Complexity.</em> Several points from Dr. Norman&#8217;s presentation got me thinking about how I could apply them in Libraryland.</p>
<p>The first point was that simplicity exists only in your head &#8211; the world is always complex.  The example used in the presentation was the Unix command prompt.  To the experienced Unix administrator this is a familiar and comfortable place.  A place where the experienced administrator can make magic happen.  For the user who has limited, or no, experience, it isn&#8217;t simple at all.  In fact it may send them to the local bookstore, or Amazon.com, looking for a book to tell them what to do next.  In contrast to the apparently simplicity of the Unix prompt, Dr. Norman showed a picture of the cockpit of an airplane.<a href="http://obliteracy.files.wordpress.com/2010/07/747_cockpit_hi.jpg"><img class="alignright size-thumbnail wp-image-46" title="Cockpit of 747" src="http://obliteracy.files.wordpress.com/2010/07/747_cockpit_hi.jpg?w=150&#038;h=118" alt="Cockpit of 747" width="150" height="118" /></a> The cockpit of the 747 in the image to the right seems very complex to most of us &#8211; at least those of us not trained to fly a 747.  For those who are trained as pilots, the set up is fairly easy to understand.  First, many of the controls are duplicated to accommodate the co-pilot.  Additionally, controls are grouped according to how they are are used.  Navigation and control are in one area, while communications is in another area.  The layout of the cockpit makes it easy for the pilot to understand the controls.</p>
<p>While it&#8217;s never been compared to a plane&#8217;s cockpit, the most frequent comment I get from staff at my library is that the home page is too complicated and too busy.  To me, however, the complexity and busy-ness should function like the airplane&#8217;s cockpit.  It should be laid out in an understandable fashion that gives the user not only access to the complexity buried beneath the home page, but an understanding that there is a complexity.  That there is a wide range of information available.  To find just what you are looking around, you may need to poke around a bit.  This is not to say that everyone should have to poke around, there needs to be express lanes for users doing the most common tasks on the web site, but hiding the complexity of library only makes it more difficult for the user.</p>
<p>Current approaches to representing that complexity are far from perfect.  And new solutions that provide a single index that searches many of the library&#8217;s resources can help filter some of the complexity.  However, even these solutions mask the complexity more than they cure it.  To deal with the complexity of its results page Google gives you search options that narrow the scope of your search (Scholar, Blogs, Images, etc.).  However, those categories still fail to represent the complexity or give us enough options.  So we are left to hope what we are looking for is in the first few pages of results &#8211; to Google&#8217;s credit, it often is.</p>
<p>Library web pages lack one of the strengths of cockpit design &#8211; standardization.  Pilots can move from plane to plane and expect similar layouts.  In libraries, for now, our users have to learn a new interface every time they come to a new library home page.  And the incentive in libraries is to come up with something new rather than make user experience uniform from interface to interface.  It creates a challenge for our users and it creates a challenges for the librarians who maintain web pages.</p>
<p>Dr. Norman also pointed out that there are many things we don&#8217;t expect people to be able to do intuitively, such as driving.  We expect people to spend some time learning to drive, perhaps even taking classes.  Although it may be unfashionable to say in some circles, doing research is a skill that has to be developed over time.  Obviously, the stakes (usually) aren&#8217;t as high as they are when you are driving a car.  But being able to identify and meet your information needs is valuable skill that we spend all of our lives practicing.  Unfortunately, research doesn&#8217;t have the clearly defined rules and standard tools that driving does.  This makes it even more complex.</p>
<p>I want to be clear, I&#8217;m not coming down on the side of librarians who I have known who thought our users just need to learn how to use our stuff.  Users do need to learn how to do research, but librarians need to work towards making our tools more consistent and easier to use.  To go back to automobile example, manufacturers keep making better cars; standardizing the order of the gear shifter, anti-lock brakes and now cars that park themselves.  Just because the user has a responsibility to learn, does not relieve librarians of the responsibility to make better tools for research &#8211; or to teach users how to do research.  Ideally, librarians would develop a tool that would teach its user how to do research while .  I&#8217;m sure someone somewhere is working on these issues, but I don&#8217;t see it mentioned frequently in the Library literature.</p>
<p>The library domain is a complex one.  The array of resources that libraries make available to their users is staggering.  We need to do a better job of getting our resources in the hands of our users.  To do that we have to work WITH our users to help them understand what information they need and how they can use it.  We can&#8217;t abandon them to the single search box of Google or Bing!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=45&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2010/07/30/coping-with-complexity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>

		<media:content url="http://obliteracy.files.wordpress.com/2010/07/747_cockpit_hi.jpg?w=150" medium="image">
			<media:title type="html">Cockpit of 747</media:title>
		</media:content>
	</item>
		<item>
		<title>Let Drupal Drive Your Web Site</title>
		<link>http://obliteracy.wordpress.com/2009/07/09/let-drupal-drive-your-web-site/</link>
		<comments>http://obliteracy.wordpress.com/2009/07/09/let-drupal-drive-your-web-site/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:00:23 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[library technology]]></category>
		<category><![CDATA[ALA]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/?p=33</guid>
		<description><![CDATA[Below are my notes for the Poster that I will be presenting at the ALA Annual Conference in Chicago on July 13, 2009. The data and charts that accompany these comments are available for download.  As is the raw survey data. Who was surveyed and when? Libraries that are using Drupal for their web site [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=33&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Below are my notes for the Poster that I will be presenting at the ALA Annual Conference in Chicago on July 13, 2009.</p>
<p>The <a title="Library Drupal Usage Survey" href="https://sakai.udel.edu/access/content/user/700819178/Library%20Drupal%20Usage%20Survey.xlsx">data and charts </a>that accompany these comments are available for download.  As is the <a title="Library Drupal Usage Survey - raw data" href="https://sakai.udel.edu/access/content/user/700819178/Raw%20Drupal%20Survey%20Data%20-%20clean.xlsx">raw survey data</a>.</p>
<p>Who was surveyed and when?</p>
<ul>
<li>Libraries that are using Drupal for their web site or planning to use Drupal for their website were surveyed from May 1, 2009 to June 15, 2009.</li>
<li>71 libraries completed the survey.</li>
</ul>
<p>Type of Library</p>
<ul>
<li>Academic libraries represented the largest group with 37 University, College, or Community College libraries responding.</li>
<li>26 Public Libraries responded.</li>
<li>The remainder of the libraries were made up of a vendor, a consortium, Government, Special, School, and Medical Libraries.</li>
</ul>
<p>Before Drupal</p>
<ul>
<li>More than half of libraries were using Static HTML with some dynamic content for their web sites.</li>
<li>Libraries using only Static HTML or Static HTML with dynamic content make up more than two-thirds of the libraries that responded to the survey.</li>
<li>Libraries using a homegrown CMS were the next largest group.</li>
</ul>
<p>When was Drupal implemented?</p>
<ul>
<li>Of the libraries that responded, the bulk of the libraries were either still in development or had implemented Drupal more than a year ago.</li>
<li>Libraries who responded could be broken down into 3 nearly equal categories:</li>
<li>Libraries who had implemented more than a year ago.</li>
<li>Libraries who had implemented during the previous year, and</li>
<li>Libraries still in development.</li>
</ul>
<p>Functionality</p>
<ul>
<li>CCK and Views, Classification, Search, and Syndication/Aggregation are the most popular functions according to respondents to the survey.</li>
<li>Public and Academic libraries generally agreed about how popular each function was.</li>
<li>Notable exceptions</li>
<li>User-contributed content which 8 public libraries had implemented versus 3 Academic libraries</li>
<li>Multi-user and Personal blogs (14 Public v. 6 Academic)</li>
<li>Rich text editing (20 Academic v. 10 Public).</li>
</ul>
<p>How hard were these tasks?</p>
<ul>
<li>&#8220;Learning Drupal”, “Changing the site’s look and feel”, and “Module Selection” were reported as the most difficult tasks in Drupal.</li>
<li>“Creating and marking up content”, “Configuring access rights”, and “Installing Drupal” were reported as the least difficult tasks in Drupal.</li>
<li>“Getting help in the forums” and “Contributing to Drupal” were also rated as relatively easy.</li>
<li>“Finding skilled Drupal Developers”, “Finding skilled Drupal Designers”, and “Finding good documentation” were reported as challenges.</li>
<li>In general, Drupal was rated relatively easy</li>
<li>No task was reported as difficult by more than 50% of the libraries.</li>
<li>3 tasks (“Creating and marking up content”, “Configuring access rights”, and “Installing Drupal”) were reported as easy by more than 50% of the library.</li>
<li>Close to 80% of the libraries reported “Creating and marking up content” as easy.</li>
</ul>
<p>Who is responsible?</p>
<ul>
<li>The Academic libraries who responded to the survey split almost evenly between having a single person responsible for the use/implementation of Drupal and having the Library’s IT department take responsibility.</li>
<li>Public libraries were more than twice as likely to have a single person assume responsibility for the use/implementation of Drupal over having a Library IT department take responsibility. This may reflect the availability of an IT department in the library more than any preference.</li>
<li>Similarly, assigning responsibility to a Committee or Task force was nearly twice as likely in an Academic library than in a Public library.</li>
<li>Assigning responsibility to a Committee/Task force was reported by one-third as many Public Libraries as reported that a single person had responsibility.</li>
<li>Academic libraries reported assigning a Committee/Task force responsibility half as often as an individual.</li>
</ul>
<p>Challenges</p>
<ul>
<li>The steep learning curve of Drupal was the by far the most frequently mentioned challenge in implementing and using Drupal.</li>
<li>Concerns about staff resistance, staff understanding of the new architecture, and lack of communication were also common themes in the responses.</li>
</ul>
<p>Benefits</p>
<ul>
<li>Decentralizing the content, ease of updating content and freeing up the time of the programmer/webmaster were frequently mentioned as benefits of using Drupal.</li>
<li>Many libraries also mentioned increased functionality for their web site as a benefit of using Drupal.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=33&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2009/07/09/let-drupal-drive-your-web-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>Why Johnny Can&#8217;t Research</title>
		<link>http://obliteracy.wordpress.com/2008/12/03/why-johnny-cant-research/</link>
		<comments>http://obliteracy.wordpress.com/2008/12/03/why-johnny-cant-research/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 02:38:30 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[library technology]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/?p=19</guid>
		<description><![CDATA[According to the Association of Research Libraries, the number of face to face reference transactions declined by more than half between 1995 and 2006 (1995 Average &#8211; 210016.76; 2006 average &#8211; 90522.1226). This trend is generally blamed on the expansion of electronic resources during that time and a shift away from traditional print reference tools. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=19&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>According to the <a href="http://fisher.lib.virginia.edu/cgi-local/arlbin/arl.cgi?task=setupstats">Association of Research Libraries</a>, the number of face to face reference transactions declined by more than half between 1995 and 2006 (1995 Average &#8211; 210016.76; 2006 average &#8211; 90522.1226).  This trend is generally blamed on the expansion of electronic resources during that time and a shift away from traditional print reference tools. But don&#8217;t people who are using electronic reference tools need help using them?  Is using Readers&#8217; Guide to Periodical Literature in print that much more difficult than using the electronic version?  And was the purpose of the Reference Desk simply to instruct people how to use the print indexes to do their research?  Isn&#8217;t there more to the job than that?  Aren&#8217;t the reference librarians there to help with research?  Shouldn&#8217;t the kind of questions that made up reference transactions still need to be answered?  With the explosion of information, shouldn&#8217;t people need even more assistance developing their research strategies?</p>
<p>I believe that the students and faculty really do need our help, but for some reason they are not using our reference services.  Stephen Francoeur lists some reasons why students may not ask for help in his post <a href="http://www.teachinglibrarian.org/weblog/2008/05/why-dont-our-students-ask-for-help.html">Why don&#8217;t our students ask for help?</a> Interestingly, all of the 8 reasons listed could be addressed through better marketing of the reference services:</p>
<ul>
<li>They don&#8217;t want to ask a &#8220;dumb question&#8221; or appear incapable of doing the research themselves.</li>
<li>Libraries and research make them anxious.</li>
<li>They don&#8217;t know they need help.</li>
<li>They&#8217;re overconfident.</li>
<li>They really don&#8217;t need our help.</li>
<li>They forget that reference services exist.</li>
<li>They don&#8217;t know that reference services exist.</li>
<li>They had a bad reference experience elsewhere that turned them off the service.</li>
</ul>
<p>If students don&#8217;t know or can&#8217;t recall that reference services exist, then clearly the word is not getting out.    Since students (and faculty) do need our help, we clearly aren&#8217;t communicating or demonstrating the value of our services very well if they still believe that they don&#8217;t.</p>
<p>One thing that is missing from Stephen&#8217;s list is the librarians themselves.  All of the reasons listed talk about what the students do or don&#8217;t do, but to solve the problem of anxious students, librarians have to do a better job of making the students feel welcome and comfortable asking whatever questions they have.  And bad experiences (elsewhere of course, because they never happen here) can only be countered by ensuring that <em>all</em> the experience that students have dealing with the library are good experiences.</p>
<p>During the most recent ALA Midwinter Conference in Philadelphia, I angered 2 colleagues of mine when I suggested that the number of reference transactions is falling is because we aren&#8217;t doing a very good job. If we were doing a good job, people would be lining up to use our services. The best marketing tool is the satisfied user.   I believe that students need the help of professionals who can help them formulate a research strategy and execute it.  When reference statistics go down, it means that fewer people are getting the help that they need.  And if that is the case, then libraries are definitely not performing their job very well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=19&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2008/12/03/why-johnny-cant-research/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>Feel your inner &#8216;NO!&#8217;</title>
		<link>http://obliteracy.wordpress.com/2007/09/25/feel-your-inner-no/</link>
		<comments>http://obliteracy.wordpress.com/2007/09/25/feel-your-inner-no/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 22:54:25 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[management]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/2007/09/25/feel-your-inner-no/</guid>
		<description><![CDATA[I&#8217;ve been embroiled in an ongoing debate with a friend of mine about saying &#8220;No&#8221; to co-workers. It all started when I sent him a link to a post on the Brazen Careerist. I sent it to him because he is always telling me how busy he is.  I specifically wanted him to see the part [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=17&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been embroiled in an ongoing debate with a friend of mine about saying &#8220;No&#8221; to co-workers. It all started when I sent him a link to <a href="http://blog.penelopetrunk.com/2003/10/23/dont-tell-me-youre-busy/">a post</a> on the Brazen Careerist. I sent it to him because he is always telling me how busy he is.  I specifically wanted him to see the part about saying no. Last week he wrote a <a href="http://cranialgunk.wordpress.com/2007/09/01/good-samaritan/">blog post </a>about our exchange.</p>
<p>The interesting thing to me about his post was that he had equated saying &#8216;no&#8217;, which to me is about managing your workflow and your time at your job, with denying someone else something he had.  At work, what he would be denying his co-workers is his time, which seems to be in short supply. Still he insists that in order to keep things running smoothly at work, he can&#8217;t ruffle any feathers by telling them no.</p>
<p>The thing is, he does tell them no all the time &#8211; he just doesn&#8217;t use the word. He tells me, he tells his co-workers, &#8220;Not now, we&#8217;ll talk about it later.&#8221; This reminds me of a talk by Mary Pergander. One thing that she said that has stuck with me, is &#8220;feel your inner NO&#8221;. She recommended let it really build up inside before you deliver a calm, but forceful &#8220;No.&#8221; Her point was that there are a lot of times we mean &#8220;No!&#8221; but feel that, like my friend, we can&#8217;t just say &#8220;no&#8221;. So we offer a weak response, like &#8220;I&#8217;ll try to get to it later.&#8221; or &#8220;Send me an email about it.&#8221; and hope it will go away.</p>
<p>This creates several potential problems for you. First, an honest &#8220;no&#8221; saves everyone time in the long run. I once had a co-worker call me 4 times in a hour, just to follow up on something I told her I would look at. She only relented when I finally told her that no, I couldn&#8217;t do it now, that she would need to work with my boss to add it to the priorities. My friend tells me that in similar situations he would call a meeting to discuss the proposal. I find it very difficult to believe that he has a meeting for every proposal people bring to him &#8211; but that could explain why he is so busy.  Not to mention that I&#8217;ve known him long enough to know that he is very capable of delivering a &#8220;no&#8221; without uttering a word.</p>
<p>Which brings me to the next problem. When your mouth says &#8220;yes&#8221; or even &#8220;maybe&#8221;, but the rest of your body and your subsequent actions say &#8220;no&#8221;, you may not be communicating as clearly as you would like or as clearly as you need. If you are saying, &#8220;I&#8217;ll look at it later&#8221; and hoping the issue will go away, you may find yourself back doing the same duck and weave with that person next week or sooner. You may also find yourself involved in a project that you simply don&#8217;t have time to work on.</p>
<p>If you still aren&#8217;t comfortable with saying &#8220;no&#8221; at work. William Ury, the author of <em><a href="http://www.amazon.com/Getting-Yes-Negotiating-Agreement-Without/dp/0140157352/ref=pd_sim_b_2_img/103-6251994-9371014">Getting to Yes</a>, </em>has more recently published a book, called <em><a href="http://www.amazon.com/Power-Positive-No-How-Still/dp/0553804987">The Power of the Positive No</a>. </em>In it he explains how to give a positive no. It&#8217;s been awhile since I read the book, but I&#8217;ll sum it up as:</p>
<ol>
<li>Understand why you are saying no. Is it time constraints? Are you stretched too thin at work? Do you have a vacation coming up that will interfere with progress on the project?</li>
<li>Be graceful about your no. Work is political. You can&#8217;t just say no &#8211; and in most cases it is completely inappropriate to use the classic &#8220;it&#8217;s not my job.&#8221; At home we use a modified version, &#8220;I thought <em>you</em> could do that.&#8221;</li>
<li>Make your no a consensus no. Get the person on your side. Although you have to say no, try to negotiate an acceptable no for both people.  </li>
</ol>
<p>Ury calls this process a Yes, No, Yes.  First you say yes to yourself and your reasons for saying no, then deliver the no, and finally you negotiate the other person&#8217;s yes to your no.  For the third step, it may be necessary to provide alternatives, like &#8220;I can&#8217;t do it this month, but I will have time next month.  Can you wait?&#8221; or &#8220;I can&#8217;t do it, but I heard that so-and-so is interested in a project like that.&#8221;  Of course, these alternatives need to be sincere.  Deflecting work to someone who isn&#8217;t actually interested is only going to make more enemies.</p>
<p>Saying no is an important tool.  Everyone has more to do than they will ever get to. To take control of your job and your career you need to make active choices about what you will and won&#8217;t do.  Which is not to say that we should only do what we want to do, just that we need to know why we are doing something.  We need to know that it is moving us closer to our goals.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obliteracy.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obliteracy.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=17&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2007/09/25/feel-your-inner-no/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>Chinese Periodicals and the state of the conversation on cataloging</title>
		<link>http://obliteracy.wordpress.com/2007/08/25/chinese-periodicals-and-the-state-of-the-conversation-on-cataloging/</link>
		<comments>http://obliteracy.wordpress.com/2007/08/25/chinese-periodicals-and-the-state-of-the-conversation-on-cataloging/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 20:32:02 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[cataloging]]></category>
		<category><![CDATA[library technology]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/2007/08/25/chinese-periodicals-and-the-state-of-the-conversation-on-cataloging/</guid>
		<description><![CDATA[I started my professional librarian career as a reference librarian &#8211; well, actually I was a Serials/ILL Librarian for the first 2 years, but the place was so small that everyone staffed the reference desk. After 5 years as a reference librarian, I moved into a systems position. For the next 5 years I worked [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=15&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I started my professional librarian career as a reference librarian &#8211; well, actually I was a Serials/ILL Librarian for the first 2 years, but the place was so small that everyone staffed the reference desk. After 5 years as a reference librarian, I moved into a systems position. For the next 5 years I worked with the library&#8217;s catalog. When I had worked in reference, I was a believer in information literacy and the library&#8217;s role in education. I was not really concerned too much with cataloging. When I worked in Systems, I was stuck between the need for technical services to quickly and efficiently process items and the reference librarians trying to find those items. It was clear that neither side understood the issues facing the other.</p>
<p>Now I follow the discussion and debate around the future of cataloging and I get concerned that neither side understands what the other is saying. When I had just started working in systems, some of the reference librarians came to me to complain about this or that in the catalog (why can&#8217;t we browse publishers? why do I get these results for that search? etc.). I tried to explain it, but the reality was they weren&#8217;t interested &#8211; they just wanted it fixed. The problem was of course, that nothing was broken. Choices had been made and these were just the consequences. To &#8220;fix&#8221; it, different choices would need to be made &#8211; with their own consequences.</p>
<p>One complaint I had from a reference librarian was that she had difficulty finding journals in Chinese for a student who was looking for something to use to practice reading the language. I considered the many pitfalls that could have caused her difficulty. 1) The language codes are sometimes not applied consistently in the records, and when they are, there are still some problems with how the catalog indexes them. 2) The code for serials was also problematic and inconsistently applied. 3) Maybe it was corruption in the database, or more likely the index &#8211; it was temperamental. Wow, our catalog does suck!</p>
<p>So I tried to recreate the problem. I typed &#8220;periodicals&#8221; in as a subject term and &#8220;chi&#8221; in as a language code (yeah &#8220;chi&#8221;, live with cataloging long enough and you&#8217;ll be surprised what you absorb). I got 117 results. When I asked the librarian if that is what she saw, her response was &#8220;how did you get that?&#8221; I described what I did. She had no idea that there were ways to search by language. In fact, there was an option to limit by language, so she wouldn&#8217;t have needed to know the cryptic code &#8220;chi&#8221;. In addition to not knowing about the options to search languages, the librarian hadn&#8217;t thought to use the subject term &#8220;periodicals&#8221; &#8211; apparently she was trying to search for a Romanization of the Chinese word for journal.</p>
<p>I thought about this example when I was reading Thomas Mann&#8217;s essay &#8220;<a href="http://guild2910.org/Pelopponesian%20War%20June%2013%202007.pdf">The Peloponnesian War and the Future of Reference, Cataloging, and Scholarship in Research Libraries</a>&#8220;. I thought about the level of service that he demonstrates in his example in the essay and I wondered if the rest of us are getting the most out of the tools that we have. For our catalogs, are we making the data the best it can be, or are we just waiting for computers to fix it &#8211; or at least be able to decipher it? Do we know how to use our catalogs to find the things that we, and our users, are looking for? These are the questions we need to ask ourselves.  And I think that too often, not always but too often, the answer is no.</p>
<p>Our catalogs have a lot of room for improvement, but the value that is added by libraries is in the role played by people that making our stuff available for the library&#8217;s users. For the catalog, a large part of the value is added by the catalogers who describe the library&#8217;s stuff. The better we describe our stuff and the more useful (and usable) that description is, the more value that is added. On the other end, reference librarians add value by assisting in the retrieval of the stuff. Ideally, the reference librarians have worked with the catalogers to leverage the data in the catalog and create a reasonably intuitive interface. And ultimately, the reference librarians will serve as the user&#8217;s guide to finding what they are looking for. When the reference librarians don&#8217;t understand the catalog, the catalogers are limited in ways they can leverage the data, and the catalog suffers.</p>
<p>For the 5 years that I was supporting the library&#8217;s catalog, there was increasing energy behind the &#8220;OPAC sucks&#8221; crowd. And more and more energy given over to adding tagging, reviews, faceted browsing (&#8220;guided searching&#8221;), etc. to the catalog. I wholeheartedly support the experimentation with these features, but I think we could have made more improvement to our catalog by giving our reference librarians a better understanding of how cataloging (and by extension the catalog) works and by giving our catalogers a better understanding of how the reference librarians (and by extension the faculty and students) were using the catalog.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obliteracy.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obliteracy.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=15&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2007/08/25/chinese-periodicals-and-the-state-of-the-conversation-on-cataloging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>Web 2.0, SunRocket, and the library brand</title>
		<link>http://obliteracy.wordpress.com/2007/08/14/web-20-sunrocket-and-the-library-brand/</link>
		<comments>http://obliteracy.wordpress.com/2007/08/14/web-20-sunrocket-and-the-library-brand/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 22:16:42 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[brand]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/2007/08/14/web-20-sunrocket-and-the-library-brand/</guid>
		<description><![CDATA[SunRocket, the second largest VOIP phone service provider behind Vonage, recently, and suddenly, went belly-up. I was one of the 200K plus victims of phone service that was there one day and gone the next. I talked to my parents on Sunday night (7/15). Monday night (7/16) I noticed that the usually green light on [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=11&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>SunRocket, the second largest VOIP phone service provider behind Vonage, recently, and suddenly, went belly-up. I was one of the 200K plus victims of phone service that was there one day and gone the next. I talked to my parents on Sunday night (7/15). Monday night (7/16) I noticed that the usually green light on my SunRocket &#8220;gizmo&#8221; (their name for their analog telephone adapter, or ATA) was red. On Tuesday, when I logged into WordPress, their highlighted post was about how SunRocket was dead and gone. There was no word from SunRocket and I was left to figure out for myself what was next; should I go with the local phone service provider, should I jump on one of the offers from SunRocket&#8217;s competitors, or wait for SunRocket to tell me where I should go next. I ended up sticking with VOIP and going with a competitor that had been one of my early choices.</p>
<p>Suddenly I was one of 200,000 people scouring the web for for any hint of what was going on. Reading posts from laid-off employees. Obsessively following the news, trying to figure out what I should do next. For VOIP providers, 200K new customers were suddenly ripe for the picking (assuming that they didn&#8217;t feel so burned by SunRocket that they went running to Ma Bell or Verizon &#8211; or whichever monopoly is your local provider). There were press releases picked up as news stories about how this or that provider was going to &#8220;<em>save&#8221;</em> SunRocket&#8217;s abandoned customers.</p>
<p>Some of the offers seemed too good to be true. After all, I had chosen SunRocket for how cheap it was and paid for a year&#8217;s service (actually 15 months with my 3 months of free service for signing up! I really should have gotten the free phone instead). I looked up reviews to see who had a go reputation &#8211; although clearly financial information would have been a better basis for a decision. I looked at 3 websites that allow users to post their reviews of VOIP providers. Reading the reviews, something was clearly wrong. The reviews varied wildly for any one provider.  One reviewer would describe the service as &#8220;the best they&#8217;ve had&#8221; and the next would tell a horror story of hidden fees. And if you read long enough you would eventually come across reviews for one company accusing another company of padding their own reviews or sabotaging their competitors.</p>
<p>How was I to interpret these reviews? How was I supposed to choose a VOIP provider (if you are considering VOIP for your phone service I would recommend getting any financial data you can and see if you can get information on their strategy for acquiring new subscribers)? What I needed was someone to tell me who I could believe.</p>
<p>This made me think about recent focus groups we had conducted in order to redesign the website at MPOW. In those focus groups it was evident that the only reason that some of the students used the library&#8217;s website at all was because of the library brand. They were told by their instructors that they needed to use &#8220;academically valid&#8221; websites and the easiest way to accomplish that was to use websites with the libraries imprimatur. I really could have used someone who would have told me where to look for good information about VOIP providers.</p>
<p>When I was in library school, we were taught that users rely on the library to sort out the quality stuff from the chaff. These days it seems that this is a forgotten role of libraries, at least in the discussions.  For books, at academic libraries the approval plan dictates much of what the library buys, assuming there is money in the budget to buy books.  For journals, &#8220;<a href="http://www.arl.org/sc/marketplace/bundling.shtml">the big deal</a>&#8221; drives the library&#8217;s purchasing decisions.  For everything else, users &#8211; <em>including librarians</em> &#8211; turn to the web, where both need to evaluate the resource on a case by case basis.</p>
<p>This is my frustration, I want one place to go that has good information about VOIP providers.  <a href="http://www.consumerreports.org/cro/index.htm">Consumer Reports</a> is a source for good information, but thre is too much lag in the information available there (the last review of VOIP providers appears to be in the January &#8217;06 issue).  I see this as somewhere the library can still intervene.  That we can still collect good information, so people (me, myself and I) don&#8217;t have to cross their finger and hope what they are reading is reliable.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obliteracy.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obliteracy.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=11&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2007/08/14/web-20-sunrocket-and-the-library-brand/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
		<item>
		<title>What the Hedgehog knows</title>
		<link>http://obliteracy.wordpress.com/2007/08/13/what-the-hedgehog-knows/</link>
		<comments>http://obliteracy.wordpress.com/2007/08/13/what-the-hedgehog-knows/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 21:27:34 +0000</pubDate>
		<dc:creator>Ron Peterson</dc:creator>
				<category><![CDATA[conceptual integrity]]></category>
		<category><![CDATA[library technology]]></category>
		<category><![CDATA[management]]></category>

		<guid isPermaLink="false">http://obliteracy.wordpress.com/2007/08/13/what-the-hedgehog-knows/</guid>
		<description><![CDATA[“The fox knows many things, but the hedgehog knows one big thing.” &#8211; Isaiah Berlin, based on a Greek parable. In the supplemental material to Jim Collins&#8217; book Good to Great, called, Good to Great in the Social Sectors, he suggests that the social sectors adopt not the language of business, as some people have [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=13&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<blockquote><p><em>“The fox knows many things, but the                          hedgehog knows one big thing.”</em>  &#8211; <a href="http://www.amazon.com/Hedgehog-Fox-Essay-Tolstoys-History/dp/1566630193/ref=cm_taf_title_featured?ie=UTF8&amp;tag=tellafriend-20">Isaiah Berlin</a>, based on a Greek parable.</p></blockquote>
<p>In the supplemental material to <a href="http://www.jimcollins.com/">Jim Collins&#8217;</a> book <a href="http://www.amazon.com/Good-Great-Companies-Leap-Others/dp/0066620996/ref=cm_taf_title_featured?ie=UTF8&amp;tag=tellafriend-20"><em>Good to Great</em></a>, called, <a href="http://www.amazon.com/Good-Great-Social-Sectors-Monograph/dp/0977326403/ref=cm_taf_title_featured?ie=UTF8&amp;tag=tellafriend-20"><em>Good to Great in the Social Sectors</em></a>, he suggests that the social sectors adopt not the language of business, as some people have done, but the language of greatness. One of the concepts employed by Collins is the <a href="http://www.jimcollins.com/lab/hedgehog/index.html">Hedgehog Concept</a>. The Hedgehog Concept is about attaining the best long-term results and having the discipline to stick to it.</p>
<p>The Hedgehog concept defines three key parts: finding what you are passionate about, finding what you are best at, and finding a way to pay for that. The idea is similar to <a href="http://www.cc.gatech.edu/people/home/idris/Research/Conceptual_Integrity.htm">Conceptual Integrity</a>. In libraries, we are passionate about information &#8211; organizing it and connecting people with it (well, at least I hope we are). What we are best at may be a little more challenging &#8211; and will vary from library to library, but for sake of discussion let&#8217;s say that we are best at evaluating and organizing information while preserving it for future generations. Collins says that we need to tie our &#8220;resource engine&#8221; to those two answers. All three of these things need to be tied together and reinforce one another.</p>
<p>Finding the resource engine is the tricky part. Collins says, &#8220;<em>the wide variation in economic structures in the social sectors increases the importance of the hedgehog principle</em>&#8211;the inherent complexity requires deeper, more penetrating insight and rigorous clarity than in your average business entity.&#8221; Most libraries rely on their parent institutions (universities, cities, businesses, etc.) for their primary source of funding. In turn, those institutions have to have a resource engine: business revenues, tuition, taxes, etc. or some combination.</p>
<p>To go from <em>good to great</em> the resource engine must be closely tied to what you are best at and what you are passionate about. That is, your resource engine should reflect the overall mission of the organization. The example is a homeless center that specialized in giving people the tools to support themselves. For Collins, it would be inappropriate for the center to rely on government subsidies for their funding. Instead the center gets the bulk of its funding from small donations from individuals who support the mission of the center. Using resource engines that are not closely tied to what you are passionate about and what you are best at, will cause the mission of the library to stray and eventually dicate what the mission is.</p>
<p>This is where I see the similarity to <a href="http://obliteracy.wordpress.com/2007/06/05/conceptual-integrity/">Conceptual Integrity</a>.  Employing the Hedgehog Concept or Conceptual Integrity involves staying focussed on your goal and not following resources that don&#8217;t support and integrate into your goal.  For libraries, this may mean that they turn down offers from campus IT to collaborate on an Information Commons, resources from the Gates Foundation, or E-rate discounts.  It could also mean that you don&#8217;t buy more copies of the latest Harry Potter even though you know circulation numbers will go up.  Of course, it may mean that you do all of those things, the important thing is to be disciplined about evaluating the resources.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obliteracy.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obliteracy.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obliteracy.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obliteracy.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obliteracy.wordpress.com&#038;blog=1109307&#038;post=13&#038;subd=obliteracy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://obliteracy.wordpress.com/2007/08/13/what-the-hedgehog-knows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67960e0acd1c52416799e52aeb3bcb14?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ron Peterson</media:title>
		</media:content>
	</item>
	</channel>
</rss>
