<?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>The Library Mole</title>
	<atom:link href="http://librarymole.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://librarymole.wordpress.com</link>
	<description>IM IN UR BASSMENT, HELPIN U LERN</description>
	<lastBuildDate>Fri, 03 Dec 2010 14:37:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='librarymole.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Library Mole</title>
		<link>http://librarymole.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://librarymole.wordpress.com/osd.xml" title="The Library Mole" />
	<atom:link rel='hub' href='http://librarymole.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Use Flickr API and PHP to randomly post a Photostream Photo</title>
		<link>http://librarymole.wordpress.com/2010/12/03/use-flickr-api-and-php-to-randomly-post-a-photostream-photo/</link>
		<comments>http://librarymole.wordpress.com/2010/12/03/use-flickr-api-and-php-to-randomly-post-a-photostream-photo/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 14:37:40 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=69</guid>
		<description><![CDATA[This short PHP program will randomly select and display a photo from your Flickr photostream each time the page is refreshed.  This requires you to have the Phlickr module installed on your server, of course.  Your Flickr api keys should be defined in file authtoken.dat, and should have the format: api_key=adfe5cd20aeed11f8b9d4360adb6 api_secret=5dd510900c175 api_token=7215762551368-80130bcc9cfa29ef Use your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=69&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This short PHP program will randomly select and display a photo from your Flickr photostream each time the page is refreshed.  This requires you to have the <a title="Phlick installation instructions" href="http://drewish.com/node/57">Phlickr </a>module installed on your server, of course.  Your Flickr api keys should be defined in file authtoken.dat, and should have the format:</p>
<p style="padding-left:90px;">api_key=adfe5cd20aeed11f8b9d4360adb6<br />
api_secret=5dd510900c175<br />
api_token=7215762551368-80130bcc9cfa29ef</p>
<p>Use your own api_key, _secret, and _token in place of these (fake) ones.</p>
<p>You can see this script working at my web page <a title="Example page" href="http://www.shufawest.us/kiosk/kiosk_4.php" target="_blank">http://www.shufawest.us/kiosk/kiosk_4.php</a>.</p>
<p>&nbsp;</p>
<p>&lt;?php</p>
<p>define(&#8216;API_CONFIG_FILE&#8217;, &#8216;./authtoken.dat&#8217;);</p>
<p>include_once &#8216;Phlickr/Api.php&#8217;;<br />
include_once &#8216;Phlickr/AuthedPhotosetList.php&#8217;;<br />
include_once &#8216;Phlickr/PhotoList.php&#8217;;<br />
#create an api object from the keys in file authtoken.dat</p>
<p>$api = Phlickr_Api::createFrom(API_CONFIG_FILE);</p>
<p># Check to see if the logon is accepted</p>
<p>if (! $api-&gt;isAuthValid()) {<br />
die(&#8216;invalid flickr logon&#8217;);<br />
}</p>
<p># request a list of all your photos</p>
<p>$request = $api-&gt;createRequest(<br />
&#8216;flickr.photos.search&#8217;,<br />
array(<br />
&#8216;tag_mode&#8217; =&gt; &#8216;all&#8217;,<br />
&#8216;user_id&#8217; =&gt; $api-&gt;getUserId()<br />
)<br />
);</p>
<p># create a list object from the results of the search<br />
$pl = new Phlickr_PhotoList($request, Phlickr_PhotoList::PER_PAGE_MAX);</p>
<p># make sure some photos were found by the search<br />
$count = $pl-&gt;getCount();</p>
<p>if ($count == 0) {<br />
print &#8220;No photos could be found.&lt;br/&gt;&#8221;;<br />
}</p>
<p># select a random photo from the list<br />
$rndPhoto = $pl-&gt;getRandomPhoto( );<br />
?&gt;<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&gt;<br />
&lt;title&gt;Snapshots&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body bgcolor=&#8221;#ffffff&#8221;&gt;</p>
<p>&lt;!&#8211; Create an image tag src by building an image URL from the random photo object &#8211;&gt;</p>
<p>&lt;img src=&#8221;<br />
&lt;?php echo $rndPhoto-&gt;buildImgUrl(&#8216;-&#8217;); ?&gt;<br />
&#8220;&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=69&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2010/12/03/use-flickr-api-and-php-to-randomly-post-a-photostream-photo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>I Buy a Kindle</title>
		<link>http://librarymole.wordpress.com/2010/10/20/i-buy-a-kindle/</link>
		<comments>http://librarymole.wordpress.com/2010/10/20/i-buy-a-kindle/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 18:52:41 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/2010/10/20/i-buy-a-kindle/</guid>
		<description><![CDATA[So I finally broke down and bought an ebook reader &#8211; something I really didn&#8217;t need, but NEED doesn&#8217;t really enter into it when you&#8217;re a gadget-head. I bought the $139 Kindle 3, which comes with wireless but no 3G. Being a computer professional (cough, cough) means I am bathed in wireless radiation almost 24/7, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=64&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I finally broke down and bought an ebook reader &#8211; something I really didn&#8217;t need, but NEED doesn&#8217;t really enter into it when you&#8217;re a gadget-head.</p>
<p>I bought the $139 Kindle 3, which comes with wireless but no 3G.  Being a computer professional (cough, cough) means I am bathed in wireless radiation almost 24/7, and since the Kindle memory will hold 3500 books (says Amazon), I figured the 3G was hardly worth the extra $50.</p>
<p>What can I say?  I love the thing.  Especially it&#8217;s ability to change the font size, which is especially important for proto-geezers like myself who wear bifocals.  The contrast is perfectly acceptable, even in the semi-darkness of my bedroom, where much reading occurs.</p>
<p>The entire unit is about the same size as a trade paperback, and much thinner.  It&#8217;s easy to hold in one hand, especially since I also bought the official Kindle cover (expensive at $35, but well-constructed).</p>
<p>The page advance buttons could be in better locations, but that is a minor kvetch.  After using it for a while I was so comfortable that I caught myself attempting to turn pages instead of using the buttons.</p>
<p>The web browser is clumsy, since there is no trackpad or joystick.  I tried it a few times, and the best you can say is that it works.  I doubt if it will get much use.  The voice which will read the text to you can be chosen as either male or female.  Either one is pleasant enough, if mechanical.  Again, this is a less-than-useful feature for me.</p>
<p>The issue of protecting copyright is a problem, as numerous copyrighted works are readily available on various bittorent sites (which I will not name here).  The Kindle will display a variety of document types, none of which present a problem to the determined viewer.</p>
<p>Will ebook readers replace books?  I can easily see them replacing non-collectible books, paperbacks, popular novels, computer books, and the like.  At the moment I feel that ebooks and ebook readers are still too expensive.  People who either require the convenience or have lots of spare cash will buy them, most others will wait.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=64&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2010/10/20/i-buy-a-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>Update on the Google Books project</title>
		<link>http://librarymole.wordpress.com/2009/10/16/update-on-the-google-books-project/</link>
		<comments>http://librarymole.wordpress.com/2009/10/16/update-on-the-google-books-project/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 18:40:53 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=62</guid>
		<description><![CDATA[The Case Against Google Books How three East Bay librarians led the revolt against the company&#8217;s plans to archive all earthly knowledge. By Chris Thompson October 14, 2009 Google has empowered ordinary citizens beyond anything once thought possible. Thanks to Google, you can view your home from space, track flu outbreaks around the country, or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=62&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>The Case Against Google Books</h1>
<h2>How three East Bay librarians led the revolt against the company&#8217;s plans to archive all earthly knowledge.</h2>
<p>By <a href="http://www.eastbayexpress.com/ebx/SendLetter?author=Chris%20Thompson">Chris Thompson</a></p>
<div>October 14, 2009</div>
<p>Google has empowered ordinary citizens beyond anything once thought possible. Thanks to Google, you can view your home from space, track flu outbreaks around the country, or figure out traffic congestion along your commute route, all instantaneously and without spending a single dime. And the company&#8217;s motto, &#8220;Don&#8217;t Be Evil,&#8221; underscores an undeniable civic-mindedness. Its nonprofit arm, <a href="http://google.org/">Google.org</a>, invests in green electricity start-ups. Goats graze the company&#8217;s lawns to reduce its carbon footprint. And yet, despite the company&#8217;s best efforts, there&#8217;s just something about Google that gives some people the heebie-jeebies.</p>
<p>http://www.eastbayexpress.com/gyrobase/the_case_against_google_books/Content?oid=1211860&#038;page=1</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=62&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2009/10/16/update-on-the-google-books-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>NYT Article on the Google Books Project</title>
		<link>http://librarymole.wordpress.com/2009/02/03/nyt-article-on-the-google-books-project/</link>
		<comments>http://librarymole.wordpress.com/2009/02/03/nyt-article-on-the-google-books-project/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 14:15:26 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=59</guid>
		<description><![CDATA[Since my employer is a partner in this project, I link here to the latest NYT article.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=59&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since my employer is a partner in this project, I link here to the <a href="http://www.nytimes.com/2009/02/02/technology/internet/02link.html?_r=2&amp;ref=business">latest NYT article.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=59&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2009/02/03/nyt-article-on-the-google-books-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>E-Books&#8230;the long sad story&#8230;</title>
		<link>http://librarymole.wordpress.com/2009/02/03/e-booksthe-long-sad-story/</link>
		<comments>http://librarymole.wordpress.com/2009/02/03/e-booksthe-long-sad-story/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 14:11:13 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=57</guid>
		<description><![CDATA[A history of the E-book, from Ars Technica.  An interesting analysis from someone who&#8217;s been in since the beginning of the format.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=57&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://arstechnica.com/features/2009/02/the-once-and-future-e-book.ars">A history of the E-book</a>, from Ars Technica.  An interesting analysis from someone who&#8217;s been in since the beginning of the format.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=57&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2009/02/03/e-booksthe-long-sad-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Vista Sidebar Gadgets are Pretty Pointless</title>
		<link>http://librarymole.wordpress.com/2008/10/21/windows-vista-sidebar-gadgets-are-pretty-pointless/</link>
		<comments>http://librarymole.wordpress.com/2008/10/21/windows-vista-sidebar-gadgets-are-pretty-pointless/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 13:11:44 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[trivia]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=54</guid>
		<description><![CDATA[&#8230;and yet I wrote one anyway, just to try it out: App Killer<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=54&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230;and yet I wrote one anyway, just to try it out:  <a href="http://gallery.live.com/LiveItemDetail.aspx?li=f3ee3dec-a328-4f4e-83e1-b1d4a4ee9f22">App Killer</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=54&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2008/10/21/windows-vista-sidebar-gadgets-are-pretty-pointless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>Stopping VirusRemover2008</title>
		<link>http://librarymole.wordpress.com/2008/10/08/stopping-virusremover2008/</link>
		<comments>http://librarymole.wordpress.com/2008/10/08/stopping-virusremover2008/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 16:57:09 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[information technology]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=51</guid>
		<description><![CDATA[Once again some major fool has created more work for me&#8230;this time, a client intemperately clicking a link in Huffingtonpost.com&#8217;s comment section has installed an app called ViruRemover2008, supposedly an antiviral program, but in reality an annoying piece of malware.  Pop-ups continually distract you indicating that there are viruses on your computer.  To &#8216;fix&#8217; this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=51&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Once again some major fool has created more work for me&#8230;this time, a client intemperately clicking a link in Huffingtonpost.com&#8217;s comment section has installed an app called ViruRemover2008, supposedly an antiviral program, but in reality an annoying piece of malware.  Pop-ups continually distract you indicating that there are viruses on your computer.  To &#8216;fix&#8217; this problem, you are advised to purchase the full version of VirusRemover2008.  VR2008 will never stop asking you, and will not allow itself to be uninstalled.  This is a business model?</p>
<p>So I spent some time trying to remove the program fragments in the manner suggested at Symantec.com, but I never did find them.  SAV might have found and deleted them by the time I arrived on the scene, or the VR2008 author may have read the same page and changed his code.  The virus was only active in a single user&#8217;s profile, so the actual fix was:</p>
<ul>
<li>let Symantec AV do its thing</li>
<li>copy the user&#8217;s profile</li>
<li>delete the user&#8217;s profile</li>
<li>after making sure the problem is gone, restore the user&#8217;s desktop items and internet favorites.</li>
</ul>
<p>So far, that has worked.  Try not to get too angry.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=51&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2008/10/08/stopping-virusremover2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>Another Day, Another Outlook 2007 Crash</title>
		<link>http://librarymole.wordpress.com/2008/09/11/another-day-another-outlook-2007-crash/</link>
		<comments>http://librarymole.wordpress.com/2008/09/11/another-day-another-outlook-2007-crash/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 14:08:51 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[corrupt]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[outlook 2007]]></category>
		<category><![CDATA[outlook.ost]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=47</guid>
		<description><![CDATA[Here&#8217;s the symptom (Windows Vista, Outlook 2007): The Solution: Delete file c:\users\USERNAME\appdata\local\microsoft\outlook\outlook.ost. When you restart Outlook, it will act as though you are opening the app for the first time.  You won&#8217;t lose any of your settings. I take that back &#8211; I lost the &#8216;auto-complete&#8217; list for previously used addresses.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=47&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the symptom (Windows Vista, Outlook 2007):</p>
<div class="wp-caption alignnone" style="width: 486px"><img title="Outlook 2007 Error" src="http://img360.imageshack.us/img360/7238/errorqq1.gif" alt="Corrupt Outlook.ost file error message" width="476" height="197" /><p class="wp-caption-text">Corrupt Outlook.ost file error message</p></div>
<p>The Solution: Delete file c:\users\USERNAME\appdata\local\microsoft\outlook\outlook.ost.</p>
<p>When you restart Outlook, it will act as though you are opening the app for the first time.  <span style="text-decoration:line-through;">You won&#8217;t lose any of your settings. </span>I take that back &#8211; I lost the &#8216;auto-complete&#8217; list for previously used addresses.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/librarymole.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/librarymole.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=47&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2008/09/11/another-day-another-outlook-2007-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>

		<media:content url="http://img360.imageshack.us/img360/7238/errorqq1.gif" medium="image">
			<media:title type="html">Outlook 2007 Error</media:title>
		</media:content>
	</item>
		<item>
		<title>BFlex 2008</title>
		<link>http://librarymole.wordpress.com/2008/09/08/bflex-2008/</link>
		<comments>http://librarymole.wordpress.com/2008/09/08/bflex-2008/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 13:55:21 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=44</guid>
		<description><![CDATA[I attended the annual BFlex this weekend, and I think a good time was had by all.  The intermediate-level class I attended, taught by Adobe&#8217;s Matt Boles, was chock-full of useful information I might not have considered in my usual self-study.  I definitely plan to attend next year, even though I didn&#8217;t win any raffle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=44&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I attended the annual <a title="BFlex" href="http://bflex.info/" target="_blank">BFlex</a> this weekend, and I think a good time was had by all.  The intermediate-level class I attended, taught by Adobe&#8217;s Matt Boles, was chock-full of useful information I might not have considered in my usual self-study.  I definitely plan to attend next year, even though I didn&#8217;t win any raffle items (as usual).  The pizza was still free, and I ate too much of it (also, as usual).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/librarymole.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/librarymole.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=44&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2008/09/08/bflex-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Infotrieve Ariel under Windows Vista</title>
		<link>http://librarymole.wordpress.com/2008/07/24/installing-infotrieve-ariel-under-windows-vista/</link>
		<comments>http://librarymole.wordpress.com/2008/07/24/installing-infotrieve-ariel-under-windows-vista/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 13:52:50 +0000</pubDate>
		<dc:creator>Keith Welch</dc:creator>
				<category><![CDATA[Ariel]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://librarymole.wordpress.com/?p=38</guid>
		<description><![CDATA[I wrote a little instruction set for this task, since it was a bit of a pain.  You can download the MS Word Doc from the URL: http://www.indiana.edu/~libcasd/ariel-vista.doc. /updated 7/24/2008<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=38&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote a little instruction set for this task, since it was a bit of a pain.  You can download the MS Word Doc from the URL:</p>
<p><a title="Ariel-Vista document" href="http://www.indiana.edu/~libcasd/ariel-vista.doc">http://www.indiana.edu/~libcasd/ariel-vista.doc.</a></p>
<p>/updated 7/24/2008</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/librarymole.wordpress.com/38/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/librarymole.wordpress.com/38/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/librarymole.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/librarymole.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/librarymole.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/librarymole.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/librarymole.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/librarymole.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/librarymole.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/librarymole.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=librarymole.wordpress.com&amp;blog=1973565&amp;post=38&amp;subd=librarymole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://librarymole.wordpress.com/2008/07/24/installing-infotrieve-ariel-under-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2ce208be7082198296e9a2a6204fa9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">The American Failure</media:title>
		</media:content>
	</item>
	</channel>
</rss>
