<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>A Singer, A Song &#187; Geek</title>
	<atom:link href="http://www.drslewis.org/grant/category/geek/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drslewis.org/grant</link>
	<description>"... sing out loud, sing out strong... "</description>
	<lastBuildDate>Mon, 16 Aug 2010 11:03:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Fix for Lag when using iPhone Facebook App</title>
		<link>http://www.drslewis.org/grant/2010/08/10/fix-for-lag-when-using-iphone-facebook-app/</link>
		<comments>http://www.drslewis.org/grant/2010/08/10/fix-for-lag-when-using-iphone-facebook-app/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 20:02:52 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=686</guid>
		<description><![CDATA[When using the Facebook app on your iPhone, are you experiencing long lags after clicking &#8220;like&#8221; or making a comment? If your phone is jailbroken, there&#8217;s a fix. The issue, blogger Doug Krahmer explains, is caused by the Facebook app caching all data indefinitely. &#8220;The data is never deleted and each cache file is checked/updated [...]]]></description>
			<content:encoded><![CDATA[<p>When using the Facebook app on your iPhone, are you experiencing long lags after clicking &#8220;like&#8221; or making a comment? If your phone is jailbroken, there&#8217;s a fix.</p>
<p>The issue, blogger Doug Krahmer explains, is caused by the Facebook app caching all data indefinitely. &#8220;The data is never deleted and each cache file is checked/updated every time the app attempts to post.&#8221; See Doug&#8217;s original post here: <a href="http://blog.krahmersoft.com/?p=17">http://blog.krahmersoft.com/?p=17</a></p>
<p>Doug&#8217;s solution was to create an auto-running script that cleans the cached Facebook data each morning at 4:00 AM. You&#8217;ll need to have SSH and terminal access to your iPhone.</p>
<p>NOTE: If the iPhone&#8217;s Terminal application crashes when launched, fix the problem by following the instructions <a href="http://www.iphonetechie.com/2010/08/tutorial-on-how-to-download-and-install-mobile-terminal-4-26-for-ios-4-4-0-1-on-iphone-4-3gs-ipad-3-2-1/#more-2549">here</a>.</p>
<p>Follow these steps:</p>
<p>1. Find your facebook app GUID by running the following command. The GUID will look something like (B81C7FF4-78B8-4898-8BFC-DA83AFEA8E95):</p>
<pre>find /User/Applications/*/Facebook.app/Facebook</pre>
<p>2. Create a new file named /usr/bin/fixfacebook.sh and insert the following content. (Note: you must replace each ?????????? with the facebook app GUID from the previous step.)</p>
<pre>#!/bin/sh</pre>
<pre>echo Removing facebook cache files...</pre>
<pre>rm /User/Applications/??????????/Library/Caches/Three20/0*
rm /User/Applications/??????????/Library/Caches/Three20/1*
rm /User/Applications/??????????/Library/Caches/Three20/2*
rm /User/Applications/??????????/Library/Caches/Three20/3*
rm /User/Applications/??????????/Library/Caches/Three20/4*
rm /User/Applications/??????????/Library/Caches/Three20/5*
rm /User/Applications/??????????/Library/Caches/Three20/6*
rm /User/Applications/??????????/Library/Caches/Three20/7*
rm /User/Applications/??????????/Library/Caches/Three20/8*
rm /User/Applications/??????????/Library/Caches/Three20/9*
rm /User/Applications/??????????/Library/Caches/Three20/a*
rm /User/Applications/??????????/Library/Caches/Three20/b*
rm /User/Applications/??????????/Library/Caches/Three20/c*
rm /User/Applications/??????????/Library/Caches/Three20/d*
rm /User/Applications/??????????/Library/Caches/Three20/e*
rm /User/Applications/??????????/Library/Caches/Three20/f*</pre>
<p>3. To set up a schedule, create a new file named /Library/LaunchDaemons/com.krahmersoft.fixfacebook.plist with the following content:</p>
<pre>&lt;?xml version="1.0? encoding="UTF-8??&gt;

&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
                "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0?&gt;
       &lt;dict&gt;
               &lt;key&gt;Label&lt;/key&gt;
               &lt;string&gt;com.krahmersoft.fixfacebook&lt;/string&gt;
               &lt;key&gt;OnDemand&lt;/key&gt;
               &lt;true/&gt;
               &lt;key&gt;Program&lt;/key&gt;
               &lt;string&gt;/usr/bin/fixfacebook.sh&lt;/string&gt;
               &lt;key&gt;StartCalendarInterval&lt;/key&gt;
               &lt;dict&gt;
                      &lt;key&gt;Hour&lt;/key&gt;
                      &lt;integer&gt;4&lt;/integer&gt;
                      &lt;key&gt;Minute&lt;/key&gt;
                      &lt;integer&gt;0&lt;/integer&gt;
               &lt;/dict&gt;
       &lt;/dict&gt;
&lt;/plist&gt;</pre>
<p>4. Run the following command to make the script executable. (I prefer to use Cyberduck to make these kind of changes.)</p>
<pre>chmod 755 /usr/bin/fixfacebook.sh</pre>
<p>5. Run the following command to preform the cleanup immediately (could take several minutes):</p>
<pre>/usr/bin/fixfacebook.sh</pre>
<p>6. Reboot your phone to activate the schedule.</p>
<p>That&#8217;s it! No more lagginess from the Facebook app.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/08/10/fix-for-lag-when-using-iphone-facebook-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solved: Sync Contacts and Safari Bookmarks with iPhone</title>
		<link>http://www.drslewis.org/grant/2010/01/19/solved-sync-contacts-and-safari-bookmarks-with-iphone/</link>
		<comments>http://www.drslewis.org/grant/2010/01/19/solved-sync-contacts-and-safari-bookmarks-with-iphone/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 15:30:26 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=626</guid>
		<description><![CDATA[Camille&#8217;s now a proud iPhone owner. Everything with the activation and setup went pretty smoothly with one fairly significant exception: I couldn&#8217;t get her contacts in Address Book or her Safari bookmarks to sync. Every time I tried, I&#8217;d get the following cryptic (and somewhat circular) message: iTunes could not sync contacts to the iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>Camille&#8217;s now a proud iPhone owner. Everything with the activation and setup went pretty smoothly with one fairly significant exception: I couldn&#8217;t get her contacts in Address Book or her Safari bookmarks to sync. Every time I tried, I&#8217;d get the following cryptic (and somewhat circular) message:</p>
<blockquote><p><em>iTunes could not sync contacts to the iPhone because the sync server failed to sync the iPhone</em></p></blockquote>
<p>I addition to the above, the process would stall when trying to sync Safari bookmarks.</p>
<p>I was finally able to solve the problem <a href="http://discussions.apple.com/thread.jspa?threadID=1612348">thanks to a find over on Apple&#8217;s support forums</a>:</p>
<ul>
<li>back up the Apple Address Book</li>
<li>trash any items in the<strong> (user) / Library / ApplicationSupport / SyncServices</strong> folder</li>
<li>restart the computer</li>
<li>ensure sure that contacts and Safari bookmarks are checked to sync in iTunes</li>
<li> re-sync</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/01/19/solved-sync-contacts-and-safari-bookmarks-with-iphone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zune Playlists by Folder</title>
		<link>http://www.drslewis.org/grant/2009/12/10/zune-playlists-by-folder/</link>
		<comments>http://www.drslewis.org/grant/2009/12/10/zune-playlists-by-folder/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 14:52:38 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=589</guid>
		<description><![CDATA[I would imagine that everyone who&#8217;s ever tried to organize an MP3 collection has struggled in some way or another. Some people just throw everything willy-nilly into one big folder and let their software of choice sort it out. That&#8217;s not for me, though. Why? Well, when you do that you&#8217;re putting all of your [...]]]></description>
			<content:encoded><![CDATA[<p>I would imagine that everyone who&#8217;s ever tried to organize an MP3 collection has struggled in some way or another. Some people just throw everything willy-nilly into one big folder and let their software of choice sort it out. That&#8217;s not for me, though. Why? Well, when you do that you&#8217;re putting all of your eggs into one basket. Since it&#8217;s the application that&#8217;s holding all the information about your collection, changing your music application can cause all of your organization to fly out the window. I much prefer to organize by using folders and carefully editing the files&#8217; tags. Doing so allows me to change from iTunes to Zune or to Winamp, access my collection over my home network, or even open my library on a computer running an entirely different OS, all while maintaining the organization of files and their tags. Granted, initial setup and subsequent maintenance of your collection can take more time, but I think it&#8217;s worth the effort. (My tagging application of choice, by the way, is <a href="http://www.mp3tag.de/">MP3tag</a>, freeware.)</p>
<p>I have my collection organized into folders. Top-level folders are genres, and subfolders hold albums by title and artist. For example, some of my top-level folders are for Big Band, Classical Choral and Instrumental, Classical Vocal, Jazz and Acoustic, etc. etc. The one exception I made was to create a top-level folder for all of my Christmas music with subfolders based on album. Since I listen to that music only at a specific time each year, that seemed to make the most sense.</p>
<p>Camille and I both have 30GB Zunes. As great as my iPhone is, its 8GB can&#8217;t compete, and it&#8217;s nice to have a device dedicated to music only with lots of storage (though my collection won&#8217;t come close to fitting on it&#8230; boo-hoo). The Zune software is actually pretty nice once you get used to its quirks, but one thing it just won&#8217;t do is to create playlists based on folders. Not too long ago I was going through <a href="http://belthur.blogspot.com/2008/04/convert-wpl-to-zpl.html">this insane hoop-jumping exercise</a> to get around the limitation that involved creating Windows Media Player playlists, opening the playlist in a text editor to change the header information, saving the file with a new extension&#8230; bleah. It was an aggravating mess. (And an unnecessary one, too&#8230; why don&#8217;t the brain trusts over at Microsoft solve the problem in the Zune software itself???)</p>
<p>But now&#8230; Merry Christmas to me. I just found a very handy tool to get around the Zune software&#8217;s limitation. It&#8217;s called <a href="http://vishaljoshi.blogspot.com/2008/12/kritzu-zune-playlist-generator-based-on.html#comment-form">KritZu</a>, developed by Vishal Joshi. Launch it, make a couple of initial settings, click the Generate button, and KritZu spits out a playlist of all the songs in a given folder and its subfolders. If you like, it&#8217;ll even make individual playlists for multiple subfolders.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 29px; width: 1px; height: 1px;">Since it&#8217;s the application that&#8217;s holding all the information about your collection,</div>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/12/10/zune-playlists-by-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>He croons while dismembering you!</title>
		<link>http://www.drslewis.org/grant/2009/10/23/he-croons-while-dismembering-you/</link>
		<comments>http://www.drslewis.org/grant/2009/10/23/he-croons-while-dismembering-you/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 17:49:39 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=555</guid>
		<description><![CDATA[This is horrifying. Please tell me that it&#8217;s only a puppet.]]></description>
			<content:encoded><![CDATA[<p>This is horrifying. Please tell me that it&#8217;s only a puppet.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/poh5zSsd1rE&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/poh5zSsd1rE&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/10/23/he-croons-while-dismembering-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: Trust Me</title>
		<link>http://www.drslewis.org/grant/2009/10/23/windows-7-trust-me/</link>
		<comments>http://www.drslewis.org/grant/2009/10/23/windows-7-trust-me/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 11:10:48 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=553</guid>
		<description><![CDATA[This new Mac vs Windows ad is the best of the bunch! Mac vs PC: Windows 7 from Derek McKenzie on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>This new Mac vs Windows ad is the best of the bunch!</p>
<p><object width="400" height="227"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7212390&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7212390&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="227"></embed></object>
<p><a href="http://vimeo.com/7212390">Mac vs PC: Windows 7</a> from <a href="http://vimeo.com/dagoosh">Derek McKenzie</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/10/23/windows-7-trust-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My digital life</title>
		<link>http://www.drslewis.org/grant/2009/10/12/my-digital-life/</link>
		<comments>http://www.drslewis.org/grant/2009/10/12/my-digital-life/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 16:51:39 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=523</guid>
		<description><![CDATA[Most people know I&#8217;m a pretty big geek. One of the things I appreciate most about technology is how it helps me to keep the minutiae of my life in order. I use technology in a lot of different ways, but there are some especially useful tools in my arsenal. As I look at how [...]]]></description>
			<content:encoded><![CDATA[<p>Most people know I&#8217;m a pretty big geek. One of the things I appreciate most about technology is how it helps me to keep the minutiae of my life in order. I use technology in a lot of different ways, but there are some especially useful tools in my arsenal. As I look at how often I interface with these particular offerings, I realize how valuable they are to me and how valuable they might be to others, too. So I&#8217;d like to do a run-down of my &#8220;Top Ten&#8221; (okay, top six or seven), giving a few details of how I use it, and perhaps inspiring you to try a few out for yourself.</p>
<p>The devices involved are these:</p>
<ul>
<li>Windows XP desktop upstairs</li>
<li>iMac in the kitchen</li>
<li>Home network with wireless</li>
<li><a href="http://en.wikipedia.org/wiki/Network-attached_storage">Network-attached storage device</a> (NAS)</li>
<li>Macbook with VMWare Fusion (OS X, Windows XP, and Ubuntu)</li>
<li>iPhone 3G</li>
</ul>
<p><strong><a href="http://www.apple.com/macbook/">Macbook</a></strong></p>
<ul>
<li>My trusty little Macbook gets special attention. While all of the devices in the above list are very important to the equation, my go-anywhere, do-anything Macbook is the most amazing gadget in the bunch (with my iPhone running a very close second). <a href="http://www.ngu.edu/">NGU</a> purchased my Macbook for me when I started teaching there, and if it ever had to leave my hands, I think I&#8217;d probably stroke out.</li>
<li>I&#8217;ve had it dual-booting Windows XP for better than a year thanks to <a href="http://www.vmware.com/products/fusion/">VMWare Fusion</a>. There&#8217;s a database that Camille and I designed to track all of the record-keeping I encounter teaching voice, and it runs only in Windows. When hooked up to the extra flat-screen LCD monitor NGU placed on my desk, I can run OS X on one screen and WinXP on the other without a hitch. At the end of the day I pack up my trusty friend and take him home, knowing that anything I might need that evening is within easy reach.</li>
<li>A side-note: I don&#8217;t know why it took me so long to realize I could do it, but just today I hooked my Macbook up to our Samsung LCD TV using the Mac&#8217;s Mini DisplayPort and a single 1/8&#8243; stereo audio cable. Coupled with <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=289616509&amp;mt=8">R. P. A. Tech&#8217;s Air Mouse Pro</a> on my iPhone, catching up with those few missing minutesÂ of The Amazing Race that TiVo didn&#8217;t catch (getting instead <a href="http://nicole-jackson.blogspot.com/2008/01/why-andy-rooney-is-whats-wrong-with.html">Andy Rooney</a>&#8216;s grizzled mug&#8230; bah!) will be a much more pleasant experience.</li>
</ul>
<p><strong><a href="http://gmail.google.com">Gmail/Gcal</a></strong></p>
<ul>
<li>By far the two most important tools I use day-to-day are Gmail and its trusty sidekick Google Calendar (Gcal for short). Because these two web applications interface directly interface with my iPhone, what appears in one place immediately appears in another. If I add a calendar appointment on a desktop computer, it immediately shows up on my mobile device. If I mark or file an email on my iPhone, I find that action mirrored the next time I open Gmail in my browser. It&#8217;s seamless, convergent bliss.</li>
<li>Gmail&#8217;s <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=6579">labels</a> and <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=118708">filters</a> are nothing short of amazing. Automatically labeling emails as they arrive and performing other automated tasks is a sure-fire method for keeping my Inbox tidy and manageable (which works out to be, let me tell you, directly related to my mental health).</li>
</ul>
<p><strong><a href="http://www.getdropbox.com">Dropbox</a></strong></p>
<ul>
<li>What was my life like before Dropbox came along? I have no recollection. I&#8217;m sure it was some awful hair-pulling mess of confusion and teeth-gnashing. Dropbox has fundamentally changed the way I work with files. Knowing that the essentials of my life and work are immediately synchronized across all the computers I use &#8212; both Mac and PC &#8212; removes a huge amount of worrying over what&#8217;s where. Create or open a file, make a change or two, save, and <em>fuhgedaboutit.</em></li>
<li>Dropbox even keeps track of your files&#8217; revisions so in case you royally louse something up, you can always fall back to a prior version.</li>
<li>There&#8217;s a new iPhone app for Dropbox, too. Don&#8217;t have much experience with it yet, but I&#8217;m sure it&#8217;ll save my neck before too long.</li>
</ul>
<p><strong>Online Banking/e-bills</strong></p>
<ul>
<li>No small amount of joy springs up in my heart when I am, with just a few mouse clicks, able to pay an e-bill and then sock its corresponding PDF into my Dropbox. Bills are nasty. The less time I can spend futzing with them, the happier I am.</li>
<li>My bank supports <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293047358&amp;mt=8">iPhone Mobile Banking app</a>, and so do both of my credit card companies. I can pay bills on my iPhone, check my account balances, transfer funds, and more.</li>
</ul>
<p><strong><a href="http://www.evernote.com/">Evernote</a></strong></p>
<ul>
<li>Evernote is one of the ways I keep the clutter of life out of my head. I put just about everything in there: shopping lists, hard-to-remember home maintenance items (types of light bulbs, appliance model numbers, the kind of O-rings the kitchen faucet takes), revisions I intend to make to courses I teach, health insurance policy numbers, my Wii friend code&#8230; even a running list of items I have at one time or another forgotten to pack for vacation. If it doesn&#8217;t &#8220;fit&#8221; in some other area of my life, it winds up in Evernote. And everything I put into Evernote is synced to my iPhone, available on the computers where I have the Evernote desktop client installed, and, in fact, on any web-enabled computer. Pictures of business cards and PDFs of Mac shortcut keys all become as easily searchable as text notes I&#8217;ve typed in.</li>
</ul>
<p><strong><a href="http://www.simplifymedia.com/">Simplify Media </a>/ <a href="http://www.orb.com">Orb</a></strong></p>
<ul>
<li>Both of these applications serve media from my upstairs computer to any location where I have Internet access &#8212; traditional browser or through my iPhone. An MP3 player holds only so many songs, right? Not a problem with these applications. Just fire either one up, browse the media that&#8217;s on your home computer, and it starts streaming to you, sounding just as good as if you had the file stored on your local device.</li>
<li>Both applications allow you to safely share your music with friends; Simplify Media allows your friends to immediately share their music with you.</li>
<li>Both applications allow you to share pictures.</li>
<li>Orb even allows you to view documents stored on your home machine (or in Dropbox!).</li>
<li>Orb also allows you to view movies. So all of my boys&#8217; DVDs that I&#8217;ve <a href="http://handbrake.fr/">ripped with Handbrake</a> and stored on my NAS are ready at a moment&#8217;s notice if we&#8217;re in a situation where &#8220;anesthesia by media&#8221; is an immediate necessity.</li>
</ul>
<p>There are some other technologies that loom large in my life that just didn&#8217;t seem appropriate for the above list (<a href="http://www.tivo.com">TiVo</a>, <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>, <a href="http://www.xmarks.com/">Xmarks</a>, <a href="http://drop.io/">Drop.io</a> to name a few). So how about you? What applications do you use on a daily basis that you&#8217;re not sure you&#8217;d be sane without?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/10/12/my-digital-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I Wish I&#8217;d Learned to Hunt</title>
		<link>http://www.drslewis.org/grant/2009/09/21/how-i-wish-id-learned-to-hunt/</link>
		<comments>http://www.drslewis.org/grant/2009/09/21/how-i-wish-id-learned-to-hunt/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 23:53:15 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Weird]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=514</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="http://imgur.com/oSKCV.jpg" src="http://imgur.com/oSKCV.jpg" alt="" width="500" height="655" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/09/21/how-i-wish-id-learned-to-hunt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard: Wrapping Things Up</title>
		<link>http://www.drslewis.org/grant/2009/08/29/snow-leopard-wrapping-things-up/</link>
		<comments>http://www.drslewis.org/grant/2009/08/29/snow-leopard-wrapping-things-up/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 14:53:12 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=493</guid>
		<description><![CDATA[I installed Snow Leopard last night before going to bed and then woke up this morning to find a couple of things slightly out of whack. Thought I&#8217;d detail my fixes here for any passers-by. QuickSilver was the first picture in my house of Mac perfection that was a little crooked. It didn&#8217;t load at [...]]]></description>
			<content:encoded><![CDATA[<p>I installed Snow Leopard last night before going to bed and then woke up this morning to find a couple of things slightly out of whack. Thought I&#8217;d detail my fixes here for any passers-by.</p>
<p><a href="http://www.blacktree.com/projects/quicksilver.html">QuickSilver</a> was the first picture in my house of Mac perfection that was a little crooked. It didn&#8217;t load at launch, and trying to manually launch it from the Applications folder resulted in&#8230; nothing. No dock icon, no menu bar icon&#8230; zippo. So I did a google search and found <a href="http://groups.google.com/group/blacktree-quicksilver/browse_thread/thread/bb286b5aa93757f8?pli=1">this thread</a> over on Google groups. The solution wasn&#8217;t there <em>per se</em>, but it eventually lead me to this fix:</p>
<ul>
<li>use <a href="http://freemacsoft.net/AppCleaner/">AppCleaner</a> to get rid of the old version of QuickSilver and any of its accompanying files and preferences</li>
<li>download and install version b56a7 of QuickSilver from <a rel="nofollow" href="http://code.google.com/p/blacktree-alchemy/downloads/list" target="_blank">http://code.google.com/p/blacktree-alchemy/downloads/list</a> (it&#8217;s a .gz file that will, when double-clicked, extract itself)</li>
</ul>
<p>After launching QuickSilver and putting my preferences back as they were, everything was fine.</p>
<p>The next thing that had gone awry was the backup process that Time Machine was making to my (admittedly unsupported) <a href="http://en.wikipedia.org/wiki/Network-attached_storage">NAS</a>. I&#8217;d gone through the setup process for unsupported volumes before, but evidently the new Snow Leopard install reverted to Apple-sanctioned backup devices only. <a href="http://www.macosxhints.com/article.php?story=20080420211034137">Here&#8217;s a great article over on Mac OS X Hints</a> on how to backup to a NAS. In short, here&#8217;s how I did it:</p>
<ul>
<li>in terminal:<br />
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1</li>
<li>in terminal:<br />
hdiutil create -size 390g -fs HFS+J -volname &ldquo;Backup of Lewis-Kitchen-iMac&rdquo; Lewis-Kitchen-iMac_00224129a054.sparsebundle</li>
<li>created a folder on the NAS to which my Mac has full permissions</li>
<li>moved the sparsebundle file created in the second step above to the appropriate folder on the NAS</li>
<li>opened time machine&#8217;s preferences and indicated the location for the backups to occur</li>
</ul>
<p>After a short pause, the backup started.</p>
<p>A couple of notes: First, there were at one time some <a href="http://www.macosxhints.com/article.php?story=2007121706402296">dire warnings</a> being issued about using unsupported volumes with Time Machine. I believe those kinks were resolved by Apple, but it&#8217;s still wise to proceed with care. (Which is better, I ask you: a backup process that might be a little wonky, or no backup at all?) Second, I had to completely delete my pre-Snow sparsebundle file on the NAS before I could proceed. I haven&#8217;t tried this same process on my Macbook yet, so perhaps it was a glitch I&#8217;ll only experience on the kitchen iMac. I&#8217;ll edit this post when I have more information.</p>
<p>The last thing that went away with the Snow Leopard update were some of the settings I&#8217;ve made to default applications for certain file types. For instance, my text editor of choice is Text Wrangler. Veteran Mac users will already know how to do this, but to change the default application for a particular file type:</p>
<ul>
<li>click on an icon for the file type in question and choose <strong>File</strong> | <strong>Get Info</strong></li>
<li>in the window that appears, make the appropriate changes under <strong>Open with</strong></li>
</ul>
<p>What are your experiences with installing Snow Leopard?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/08/29/snow-leopard-wrapping-things-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft-Yahoo Merger</title>
		<link>http://www.drslewis.org/grant/2009/08/03/microsoft-yahoo-merger/</link>
		<comments>http://www.drslewis.org/grant/2009/08/03/microsoft-yahoo-merger/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 12:22:25 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=456</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Yahoo Merger" src="http://extras.mnginteractive.com/live/media/site36/2009/0730/20090730_031513_OP02keefedpo.jpg" alt="" width="600" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/08/03/microsoft-yahoo-merger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh, good grief Apple. Get a grip, would you?</title>
		<link>http://www.drslewis.org/grant/2009/07/29/oh-good-grief-apple-get-a-grip-would-you/</link>
		<comments>http://www.drslewis.org/grant/2009/07/29/oh-good-grief-apple-get-a-grip-would-you/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 01:28:46 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=454</guid>
		<description><![CDATA[Sheesh! iPhone Jailbreaking Could Crash Cellphone Towers, Apple Claims]]></description>
			<content:encoded><![CDATA[<p>Sheesh!</p>
<p><a href="http://www.wired.com/threatlevel/2009/07/jailbreak/">iPhone Jailbreaking Could Crash Cellphone Towers, Apple Claims</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2009/07/29/oh-good-grief-apple-get-a-grip-would-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
