<?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>Yes, I'm Canadian</title>
	<atom:link href="http://kevinyank.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://kevinyank.com/blog</link>
	<description>an unfortunately-named geek living Down Under</description>
	<lastBuildDate>Fri, 03 Dec 2010 03:39:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Radioshift Subscriptions as iTunes Podcasts</title>
		<link>http://kevinyank.com/blog/archives/radioshift-subscriptions-as-itunes-podcasts</link>
		<comments>http://kevinyank.com/blog/archives/radioshift-subscriptions-as-itunes-podcasts#comments</comments>
		<pubDate>Tue, 23 Jun 2009 11:47:14 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/?p=190</guid>
		<description><![CDATA[Like many displaced Canadians, I like to listen to CBC Radio 3 at work to keep me feeling culturally connected to my home country. But the shows I enjoy tend to be on at inconvenient times here in Australia. Thanks to Radioshift, that isn’t a problem! Radioshift from Rogue Amoeba is a Mac application for [...]]]></description>
			<content:encoded><![CDATA[<p>Like many displaced Canadians, I like to listen to <a href="http://radio3.cbc.ca/">CBC Radio 3</a> at work to keep me feeling culturally connected to my home country. But the shows I enjoy tend to be on at inconvenient times here in Australia. Thanks to Radioshift, that isn’t a problem!</p>
<p><a href="http://rogueamoeba.com/radioshift/">Radioshift</a> from <a href="http://rogueamoeba.com/">Rogue Amoeba</a> is a Mac application for scheduled recording of web radio streams. Radioshift makes it easy to import your recordings into iTunes, but it would be nice, I thought, if those recordings showed up as a podcast, instead of normal music tracks in my iTunes library.<span id="more-190"></span></p>
<h2>Why A Podcast?</h2>
<p>By default, podcasts in iTunes remember your playback position when you stop listening to them halfway through, and aren’t played when you shuffle your entire iTunes music library. You can also choose to delete podcasts automatically after you have listened to them.</p>
<p>With the release of iPhone OS 3.0, podcasts gained even more benefits while on the go: when listening to a podcast on an iPhone or iPod touch, you can choose to listen at 2X speed, and also skip back 30 seconds with a single tap.</p>
<p>These new features were enough to make me get off my butt and do a little work.</p>
<h2>Step 1: Generate A Podcast Feed</h2>
<p>Technically, a podcast is just a text file that points to the MP3/M4A files that iTunes should download and store in its library. I whipped up a Python script that will generate a podcast file (podcast.xml) given a directory full of MP3/M4A files (such as those contained in the ~/Music/Radioshift folder after Radioshift does its thing).</p>
<p>To install this script on your own Mac, download <a href="http://www.kevinyank.com/blog/wp-content/uploads/2009/06/podcastFromFolder.zip">this ZIP file</a> containing three Python files:</p>
<ul>
<li>podcastFromFolder.py</li>
<li>PyPodcastGen.py</li>
<li>PyRSS2Gen.py</li>
</ul>
<p>Once you’ve unzipped the file, put all three files (podcastFromFolder.py) somewhere handy, like your home directory (/Users/kyank).</p>
<p>With the files in place, let’s test that the script works. Open Terminal and follow along.</p>
<p>First, you’ll need to make the podcastFromFolder.py script executable:</p>
<pre><code>Computer:~ kyank$ <strong>chmod u+x podcastFromFolder.py</strong></code></pre>
<p>Be sure to specify the path to the podcastFromFolder.py file if you put it somewhere else on your system (mine is actually in ~/bin/podcastFromFolder.py).</p>
<p>Now try running the script in your Radioshift recordings folder:</p>
<pre><code>Computer:~ kyank$ <strong>cd "Music/Radioshift/<em>My Show</em>"</strong>
Computer:My Show kyank$ <strong>~/podcastFromFolder.py</strong></code></pre>
<p>In the first command, instead of <em>My Show</em> you’ll need to type the actual name of the folder containing your desired show’s Radioshift recordings (mine’s CBC Radio 3 with Grant Lawrence 2).</p>
<p>In the second command, again, you’ll need to specify the path to the script if it’s somewhere other than in your home directory.</p>
<p>If all goes well, these commands should execute silently, and you should find a new podcast.xml file in the folder along with any .M4A files that Radioshift has stored there. This file will contain the feed that tells iTunes about your “fake” podcast.</p>
<h2>Step 2: Serve Up Your Podcast Feed</h2>
<p>Unfortunately, iTunes is picky about where it gets its podcast feeds. You can’t simply point it at a file on your hard disk (believe me, I’ve tried!). iTunes will only accept a podcast feed that it retrieves from the Web.</p>
<p>Fortunately, the Mac comes with everything you need to make your computer look like part of the Web.</p>
<p>Open System Preferences, and click Sharing. Select Web Sharing from the menu on the left, and make sure the On checkbox next to Web Sharing is checked.</p>
<p><a href='http://www.kevinyank.com/blog/wp-content/uploads/2009/06/web-sharing-on-2.png'><img src="http://www.kevinyank.com/blog/wp-content/uploads/2009/06/web-sharing-on-2-300x245.png" width="300" height="245" class="attachment-medium" alt="Screenshot showing Web Sharing switched on" /></a></p>
<p>This enables the Apache 2 web server built into Mac OS X. Next, we need to make your Radioshift recordings folder available to the Web. Pop open Terminal and follow along:</p>
<pre><code>Computer:My Show kyank$ <strong>cd ~/Sites/</strong>
Computer:Sites kyank$ <strong>ln -s "~/Music/Radioshift/<em>My Show</em>" "<em>MyShow</em>"</strong></code></pre>
<p>In that second command, replace <em>My Show</em> with the name of the folder for your desired show’s Radioshift recordings, and replace <em>MyShow</em> with a “web friendly”, simplified version of the show title. Here’s exactly what I typed on my system:</p>
<pre><code><strong>ln -s "~/Music/Radioshift/CBC Radio 3 with Grant Lawrence 2"
"GrantLawrence"</strong></code></pre>
<p>This creates in your Sites folder an alias that points to the folder containing your show’s recordings (and your new podcast feed file).</p>
<p>Open your web browser of choice and type this address:</p>
<p>http://localhost/~<em>kyank</em>/<em>MyShow</em>/</p>
<p>Replace <em>kyank</em> with your Mac OS X username (it’s what appears before the $ in the Terminal prompt), and <em>MyShow</em> with the “web friendly” title you chose for your show above.</p>
<p>Chances are, the first time you try this address, your browser will tell you that you don’t have permission to view the requested page. You need to give Apache permission to follow the alias you created from your Sites folder above.</p>
<p>To do this, you’ll need to edit the <em>user</em>.conf file (where <em>user</em> is your Mac OS X username) in /etc/apache2/users. Since this is a protected system file, the simplest way to do this is probably to use the nano editor from inside Terminal:</p>
<pre><code>Computer:Sites kyank$ <strong>cd /etc/apache2/users</strong>
Computer:users kyank$ <strong>sudo nano <em>kyank</em>.conf</strong>
Password:</code></pre>
<p>Type your password when prompted, and the nano text editor will fill your Terminal window. On the line that begins with <code>Options</code>, add <code>FollowSymLinks</code> to the end, so the file looks like this:</p>
<pre><code>&lt;Directory "/Users/<em>kyank</em>/Sites/">
    Options Indexes MultiViews <strong>FollowSymLinks</strong>
    AllowOverride None
    Order allow,deny
    Allow from all
&lt;/Directory></code></pre>
<p>With that done, type ^O and then Enter to save your changes, then ^X to exit the nano editor. Go back into System Preferences and turn Web Sharing off and then on again to make this change take effect. Finally, load up that URL again:</p>
<p>http://localhost/~<em>kyank</em>/<em>MyShow</em>/</p>
<p>Your browser should now display a list of the files contained in the show’s Radioshift recordings folder, including the podcast.xml file.</p>
<p>Now that you have a URL where iTunes will be able to find your podcast feed, you need to regenerate the podcast.xml file with a few extra settings to make the file complete. Again, pop open Terminal:</p>
<pre><code>Computer:~ kyank$ <strong>cd "Music/Radioshift/<em>My Show</em>"</strong>
Computer:My Show kyank$ <strong>~/podcastFromFolder.py .
"Grant Lawrence on CBC Radio 3" http://radio3.cbc.ca/

http://localhost/~kyank/GrantLawrence/</strong></code></pre>
<p>Notice the four new parameters I am passing to the podcastFromFolder.py script. You’ll want to supply your own values using this guide:</p>
<dl>
<dt><strong>.</strong></dt>
<dd>The first parameter tells the script what folder to work on. Just type a period (or full stop, if you call it that) to tell it to use the current directory.</dd>
<dt><strong>&#8220;Grant Lawrence on CBC Radio 3&#8243;</strong></dt>
<dd>The second parameter specifies the title of your podcast as it should be displayed in iTunes (and on your iPod or iPhone). Choose something short that you’ll recognise.</dd>
<dt><strong>http://radio3.cbc.ca/</strong></dt>
<dd>The third parameter specifies the web site that the podcast came from, so you can get to it from within iTunes. Set it to the URL of the web radio site that Radioshift records for you.</dd>
<dt><strong>http://localhost/~kyank/GrantLawrence/</strong></dt>
<dd><strong>This is the important one.</strong> Set this to the URL that you have just set up to point to your show’s Radioshift recordings folder. The script will use this to generate the full URLs to each of the audio files in the folder, and include them in the podcast feed.</dd>
</dl>
<p>Again, the script should run silently and generate a fresh podcast.xml file, which now contains everything iTunes needs to know to access your Radioshift recordings.</p>
<h2>Step 3: Subscribe To Your Feed</h2>
<p>Open iTunes, and from the menu bar choose Advanced → Subscribe to Podcast…</p>
<p>In the window that pops up, type the full URL to your podcast.xml file. Mine looks like this:</p>
<p>http://localhost/~kyank/GrantLawrence/podcast.xml</p>
<p>Click OK, and iTunes should happily begin downloading the most recent recording into a new podcast with the title you specified. You can click the Get All button to instruct it to get all of your recordings (assuming you have more than one).</p>
<p>You did it! Your iTunes library now contains your Radioshift recordings as a podcast.</p>
<h2>Step 4: Automate Feed Updates</h2>
<p>Of course, as Radioshift makes new recordings, you will want these to appear in your iTunes podcast too. This means you need to automate the running of the podcastFromFolder.py script every time a new recording is completed.</p>
<p>It is possible to set this up using Mac OS X’s Folder Actions, and if you’re an AppleScript genius I invite you to do so. In practice, I find Folder Actions unreliable even in Leopard (they seem to become disabled for no reason after working perfectly for days), and dealing with recordings-in-progress and other such complexities is not for the faint of heart.</p>
<p>Rather, I recommend you grab yourself a copy of <a href="http://www.noodlesoft.com/hazel.php">Hazel</a> from <a href="http://www.noodlesoft.com/">Noodlesoft</a>, which is a System Preferences panel that will monitor folders for files matching the criteria you specify, and then do whatever you like to them.</p>
<p>With Hazel installed, open System Preferences and choose Hazel. In the Folder list on the left, add the folder containing your show’s Radioshift recordings. Then, on the right, click the + button to add a new rule.</p>
<p>Copy the settings for the rule from this screenshot:</p>
<p><a href="http://www.kevinyank.com/blog/wp-content/uploads/2009/08/hazel-podcast-from-folder-contents.png"><img src="http://www.kevinyank.com/blog/wp-content/uploads/2009/08/hazel-podcast-from-folder-contents-300x217.png" alt="Set up a Hazel rule to run a shell script on all files with extension is not 'xml'. The shell script to run is: /Users/kyank/podcastFromFolder.py . 'Grant Lawrence on CBC Radio 3' http://radio3.cbc.ca/ http://localhost/~kyank/GrantLawrence/" title="Hazel podcast from folder contents" width="300" height="217" class="size-medium wp-image-199" /></a></p>
<p>Make sure to adjust the path to podcastFromFolder.py, and the arguments passed to the script to match those you used when manually invoking it above.</p>
<p>With the rule in place, Hazel should generate an updated podcast.xml file each time Radioshift finishes a new recording, which will enable iTunes to add the recording to your library as a new episode of the podcast.</p>
<p>Note that, while iTunes copies the recordings into your library, the original recordings remain in your Radioshift recordings folder. To save disk space, you will want to periodically open Radioshift and delete all the old recordings. Better yet, you can use another Hazel rule to automatically delete recordings from the recordings folder after a week or so—the copies will remain in your iTunes library, and the corresponding entries will be purged from the podcast feed the next time Radioshift downloads a new recording.</p>
<h2>Summing Up</h2>
<p>If this seems like a lot of work, you’re not imagining things. I have sent Rogue Amoeba a feature request to suggest that it make exposing your subscriptions as podcasts visible to iTunes a built-in feature in a future version of Radioshift.</p>
<p>In the meantime, if you use Radioshift to record a regular web radio broadcast, the added convenience of having new episodes appear as a podcast in iTunes will make all the hackery above worthwhile.</p>
<p>Let me know if you run into any trouble with the above setup, or if you have any suggestions for improving it.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/radioshift-subscriptions-as-itunes-podcasts/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>An Open Letter to the Microsoft Partner Program</title>
		<link>http://kevinyank.com/blog/archives/microsoft-partner-open-letter</link>
		<comments>http://kevinyank.com/blog/archives/microsoft-partner-open-letter#comments</comments>
		<pubDate>Thu, 18 Jun 2009 04:02:16 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[rants]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/?p=184</guid>
		<description><![CDATA[I continue to be amazed by how horrible a job your web team does. Why would we ever take marketing advice from Microsoft?]]></description>
			<content:encoded><![CDATA[<p>An open letter to the Microsoft Action Pack Regional Service Center for Australia:</p>
<blockquote><p>
To: <a href="mailto:sppartner@microsoft.com">sppartner@microsoft.com</a><br />
Subject: MAPS digital distribution &#8211; broken link?</p>
<p>Hi there,</p>
<p>Following the email I received today (Subject: &#8220;Important: Action Pack software now available digitally&#8221;), I tried to follow the provided link to access my Microsoft Action Pack Subscription content online: <a href="http://partner.microsoft.com/MAPScontent">http://partner.microsoft.com/MAPScontent</a></p>
<p>This link seems to direct me to a survey about my company’s marketing activities—a survey that I was unable to fill out because it is badly broken. Not only is the layout broken (<a href="http://skitch.com/sentience/bwuw6/microsoft-partner-web-site-clusterfsck">screenshot</a>), but it would not accept my answers, complaining that I hadn’t answered all the questions. In the end, I had to select ‘no’ for every answer in order to get it to accept my submission. This then took me to the Partner Marketing Center home page, where I could see no sign of my MAPS digital content.</p>
<p>I continue to be amazed by how horrible a job your web team does. Why would we ever take marketing advice from Microsoft?</p>
<p>&#8211;<br />
Kevin Yank<br />
Technical Director, sitepoint.com
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/microsoft-partner-open-letter/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sketching Dreams</title>
		<link>http://kevinyank.com/blog/archives/sketching-dreams</link>
		<comments>http://kevinyank.com/blog/archives/sketching-dreams#comments</comments>
		<pubDate>Wed, 03 Sep 2008 12:52:39 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/?p=178</guid>
		<description><![CDATA[I feel like I may have some things to write about again soon. Before you ask, I’m not being cagey, here. Mostly this is just a vague feeling, perhaps brought on by my recent visit home to Canada—a reminder that there are people I care about with whom I don’t communicate much (no, Facebook doesn’t [...]]]></description>
			<content:encoded><![CDATA[<p>I feel like I may have some things to write about again soon.</p>
<p>Before you ask, I’m not being cagey, here. Mostly this is just a vague feeling, perhaps brought on by my recent <a href="http://flickr.com/photos/sentience/sets/72157606724922524/">visit home to Canada</a>—a reminder that there are people I care about with whom I don’t communicate much (no, Facebook doesn’t count).</p>
<p>I dreamed up a fresh (but simple!) site design last night, so I broke out the Wacom to see if it worked in two dimensions. If I can keep it balanced, I think it might.</p>
<p><a href="http://www.kevinyank.com/blog/wp-content/uploads/2008/09/redesignsketch.png"><img src="http://www.kevinyank.com/blog/wp-content/uploads/2008/09/redesignsketch-small.png" alt="redesignsketch_small.png" border="0" width="400" height="279" /></a></p>
<p><strong>Note to self:</strong> ask Lox if he minds me recycling his old comic book header idea.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/sketching-dreams/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Streetwise Will Throw Away Your Mac’s Serial Number</title>
		<link>http://kevinyank.com/blog/archives/streetwise-will-throw-away-your-mac%e2%80%99s-serial-number</link>
		<comments>http://kevinyank.com/blog/archives/streetwise-will-throw-away-your-mac%e2%80%99s-serial-number#comments</comments>
		<pubDate>Thu, 20 Mar 2008 00:17:58 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[geekdom]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/streetwise-will-throw-away-your-mac%e2%80%99s-serial-number</guid>
		<description><![CDATA[Over the past week, I have decided once and for all to keep my computer out of the hands of Streetwise, a popular Apple retailer here in Melbourne. I have previously written about Streetwise, an Apple Authorised Service Centre, and its policy of holding onto computers while they wait days for replacement parts to arrive [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past week, I have decided once and for all to keep my computer out of the hands of <a href="http://www.streetwise.com.au/">Streetwise</a>, a popular Apple retailer here in Melbourne.</p>
<p>I have <a href="http://www.kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service">previously written</a> about Streetwise, an Apple Authorised Service Centre, and its policy of holding onto computers while they wait days for replacement parts to arrive so that they can maintain a high Apple Service Rating.</p>
<div><a title="View 'Missing Serial Number' on Flickr.com" href="http://www.flickr.com/photos/60889911@N00/2345832057"><img width="240" height="180" border="0" alt="Missing Serial Number" style="float: right; margin-left: 1em" src="http://farm3.static.flickr.com/2150/2345832057_f28006d981_m.jpg" /></a></div>
<p>That original post came about when I had to get the palm rest of my MacBook replaced under warranty, and in the past week another shocking outcome of that repair has come to light: <strong>when the Streetwise technician replaced my palm rest, he did not transfer my MacBook’s serial number sticker</strong> (which is attached to the underside of the palm rest—inside the battery compartment).</p>
<p>When I contacted Streetwise about this last week, service manager Jedda Wignall was appropriately contrite. “It is incredibly unfortunate that you have been hit with this inconvenience, as could have been put in a precarious situation as a result,” he wrote (sic.). “The technician who performed the work is no longer with the company, and I would like to think that this situation would not arise again.”</p>
<p><span id="more-173"></span>The precarious situation to which he refers would occur if damage or malfunction left me unable to turn on my computer to look up the serial number in the operating system. In effect, I would be unable to prove the identity of my computer, and thus unable to obtain warranty service.</p>
<p>In order to make it up to me, Wignall offered to waive the cost of labour on any future repair work I might require. I turned him down: “I’m afraid that it’s reached the point where I would rather pay the labour costs than leave any of our computers in the hands of Streetwise staff again.”</p>
<p>At the same time, I advised everyone else here at <a href="http://www.sitepoint.com/">SitePoint</a> to avoid using Streetwise to service their Macs. Streetwise would not be getting near any of our computers again … except for one.</p>
<p>While this exchange went on, my colleague <a href="http://leftjustified.net/">Andrew Krespanis</a> was also struggling with his own Streetwise horror story. He had left his MacBook Pro with Streetwise for warranty repair of his display, and when he insisted on taking his computer back while Streetwise awaited the replacement part, he discovered that the screen’s case had been bent and the computer would no longer run on battery power!</p>
<p>It took many phone calls and more than a few trips to Streetwise to do it, but Andrew finally got his MacBook Pro back from Streetwise this morning. It’s in perfect working order … but it has no serial number sticker.</p>
<p>Yes indeed. Part of the repair work Streetwise performed on Andrew’s MacBook Pro involved replacing the palm rest, and just as they did to my machine <strong>they again failed to transfer the serial number sticker to the new part.</strong> So much for Wignall’s assurances that this would not happen again!</p>
<p>Discovering this, I called Wignall personally. He thanked me for bringing it to his attention, agreed it was absolutely shocking, and promised to take steps. He also dug Andrew’s old palm rest out of the trash and peeled the serial number sticker off of it for us.</p>
<p>My advice? Avoid getting your computer serviced by Streetwise at all costs. If you can’t avoid it, or have already left your computer with them, be sure to check for the serial number sticker when you get it back!</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/streetwise-will-throw-away-your-mac%e2%80%99s-serial-number/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Apple Service Rating Update</title>
		<link>http://kevinyank.com/blog/archives/apple-service-rating-update</link>
		<comments>http://kevinyank.com/blog/archives/apple-service-rating-update#comments</comments>
		<pubDate>Sun, 03 Feb 2008 00:50:38 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[geekdom]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/apple-service-rating-update</guid>
		<description><![CDATA[For those who’ve asked, here’s an update on the situation with Streetwise and the Apple Service Rating that I wrote about in my last post. Streetwise replied almost immediately to my email complaint: Hi Kevin, I&#8217;m not sure why the technician on Saturday would have told you that &#8211; perhaps there was some sort of [...]]]></description>
			<content:encoded><![CDATA[<p>For those who’ve asked, here’s an update on the <a href="http://www.kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service">situation</a> with <a href="http://www.streetwise.com.au/">Streetwise</a> and the Apple Service Rating that I wrote about in <a href="http://www.kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service">my last post</a>.</p>
<p>Streetwise replied almost immediately to my <a href="http://www.kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service">email complaint</a>:</p>
<blockquote><p>
Hi Kevin,</p>
<p>I&#8217;m not sure why the technician on Saturday would have told you that &#8211; perhaps there was some sort of misunderstanding.<br />
I do apologise if you felt that was inappropriate in anyway.<br />
I can confirm that the part to be fitted would not be an issue and you can use your machine normally while we wait for the part.<br />
As the technician is not in today &#8211; I will discuss the matter with him when I see him and to see if we can resolve this one way or another.<br />
We will attempt to call or leave a message when the part actually comes in. Do you wish me to order the part for you?</p>
<p>Best Wishes,<br />
Gary Chee<br />
Service &amp; Returns Manager
</p></blockquote>
<p>Quite the reversal. I asked Streetwise to go ahead and order the part. Two days later:</p>
<blockquote><p>
Hi Kevin,</p>
<p>The top case has arrived today. Could you please drop off your Macbook so we can install it for you?<br />
Please allow us at least half a day turn around time to sort it out for you.</p>
<p>Thanks,<br />
Gary
</p></blockquote>
<p>Still no explanation for the original incident, you’ll note. I queried this in my reply:</p>
<blockquote><p>
Thanks. Will do!</p>
<p>Has any explanation for the original mixup been forthcoming?</p>
<p>&#8211;<br />
Kevin Yank</p>
<p>http://www.kevinyank.com/</p>
</blockquote>
<p>Streetwise’s reply was about as vague as can be, but reading between the lines I believe my complaint was taken to heart:</p>
<blockquote><p>No worries Kevin &#8211; I&#8217;ve spoken to the tech and he said there was a small mixup &#8211; but I hope that&#8217;s been cleared up.</p>
<p>Cheers,<br />
Gary</p></blockquote>
<p>The repair was completed the same day I dropped off the computer. In total, I was without my MacBook for about four hours. Not bad at all!</p>
<p>The next day, I received an automated email from Apple requesting my feedback on the support experience I had had with Streetwise. As you can imagine, I was very forthcoming, and ticked the box that said ‘You may contact me for more information about my experience’. Two months later, I have not heard from Apple on the matter.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/apple-service-rating-update/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple Service Rating Harms Customer Service</title>
		<link>http://kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service</link>
		<comments>http://kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service#comments</comments>
		<pubDate>Sat, 17 Nov 2007 07:30:20 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[geekdom]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service</guid>
		<description><![CDATA[Streetwise is my local Apple retailer. It&#8217;s where I bought my MacBook laptop and my Epson printer, and it&#8217;s where I was planning to buy a lot of other computery things in the near future. Unfortunately, my MacBook is in need of a little in-warranty TLC (a crack has a developed in the casing, a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.streetwise.com.au/">Streetwise</a> is my local Apple retailer. It&#8217;s where I bought my MacBook laptop and my Epson printer, and it&#8217;s where I was planning to buy a lot of other computery things in the near future.</p>
<p>Unfortunately, my MacBook is in need of a little in-warranty TLC (a crack has a developed in the casing, <a title="other reports of this defect" href="http://www.appledefects.com/index.php?s=macbook+crack">a common defect</a>). So today I dropped by Streetwise, an Authorised Apple Service Centre, to get it looked after.</p>
<p>I discovered that, in an effort to gain the highest possible &#8220;service rating&#8221; from Apple, Streetwise has decided to make it really inconvenient to get a minor problem with your MacBook fixed. I therefore walked right back out with my cracked MacBook in hand.</p>
<p><span id="more-171"></span><br />
Here&#8217;s the note I just sent to Streetwise.</p>
<blockquote><p>Hi there,</p>
<p>I visited the service department at Streetwise today to seek in-warranty service for my MacBook (Apple case no. XXXXXXXX).</p>
<p>When I spoke to Apple regarding the case, they informed me that I would merely have to take in my computer to an Authorized Service Centre like yours to confirm the problem so that you could order the part, and then arrange a separate time for me to bring in my computer for it to be installed.</p>
<p>I got a very different story from the person who served me at your service department today.</p>
<p>I was informed that, in order to maintain a high &#8220;service rating&#8221; (I assume some metric calculated by Apple based on how long a customer service case is open with you), you required customers to leave their computers with you for several days while you ordered the part from Apple, awaited its arrival, and then installed the part.</p>
<p>It seems customers cannot be trusted to return in a timely fashion once a part has arrived, which damages your &#8220;service rating&#8221;. Consequently, you have adopted a policy of inconveniencing your customers in order to satisfy an artificial metric of service quality.</p>
<p>I would ask you to reconsider this policy, so that I might reconsider my decision not to frequent your business. If there is someone at Apple I can contact to lodge a complaint about how its &#8220;service rating&#8221; is affecting your ability to provide meaningful customer service, please let me know so that I may do so.</p>
<p>In the meantime, if there is an Apple Authorized Service Centre that has a lower &#8220;service rating&#8221; that you can recommend, I would appreciate the pointer.</p>
<p>Sincerely,</p>
<p>&#8211;<br />
Kevin Yank</p>
<p>http://www.kevinyank.com/</p></blockquote>
<p><strong>Update:</strong> <a href="http://www.kevinyank.com/blog/archives/apple-service-rating-update">Streetwise replied to my message.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/streetwises-service-rating-harms-customer-service/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Workaround: Mac OS X Leopard Docked Folder Icon Madness</title>
		<link>http://kevinyank.com/blog/archives/workaround-mac-os-x-leopard-docked-folder-icon-madness</link>
		<comments>http://kevinyank.com/blog/archives/workaround-mac-os-x-leopard-docked-folder-icon-madness#comments</comments>
		<pubDate>Mon, 29 Oct 2007 10:47:49 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[rants]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/workaround-mac-os-x-leopard-docked-folder-icon-madness</guid>
		<description><![CDATA[My copy of the newly-released Mac OS X Leopard arrived on my desk on launch day before I even got to work. I resisted installing it until I could update my system back-up that night, but at this point I&#8217;ve been using the new operating system for a full 48 hours. Aside from a couple [...]]]></description>
			<content:encoded><![CDATA[<p>My copy of the newly-released Mac OS X Leopard arrived on my desk on launch day before I even got to work. I resisted installing it until I could update my system back-up that night, but at this point I&#8217;ve been using the new operating system for a full 48 hours. Aside from a couple of apps needing updates, the upgrade has been a blissfully uneventful experience.</p>
<p>Thanks to the pervasive tweaks to the user experience in Leopard, using my Mac is a more uniformly pleasant experience … with one major exception: the display of docked folders (now called &#8220;Stacks&#8221;). Thankfully, I&#8217;ve found a work-around.</p>
<p><span id="more-170"></span>As <a href="http://arstechnica.com/reviews/os/mac-os-x-10-5.ars/13">explained in detail</a> in <a href="http://arstechnica.com/">Ars Technica</a>&#8216;s excellent <a href="http://arstechnica.com/reviews/os/mac-os-x-10-5.ars">review of Leopard</a>, folders placed on Leopard&#8217;s Dock will only display their icon when they are empty. For folders with files in them, the icons of the folders’ <span style="font-style: italic">contents</span> are stacked one on top of the other to produce, in the vast majority of cases, a completely useless result.</p>
<p><img title="A typical dock in Leopard, the docked folders are impossible to identify" alt="A typical dock in Leopard, the docked folders are impossible to identify" src="http://www.kevinyank.com/blog/wp-content/uploads/2007/10/typical-dock.jpg" /></p>
<p>In the above screenshot from the Ars Technica review, the folder on the far left is the user&#8217;s Home directory. What is displayed is a stack of folder icons, with the front-most icon that of the Desktop folder. At a glance, then, the Home folder looks like the Desktop folder when placed on the dock. The other folders that you would typically expect to find on the dock are similarly difficult to identify.</p>
<p>The most convincing example from the article is the following screenshot, which shows the Downloads folder (containing a disk image) sitting next to an actual disk image on the Dock. Can you tell which is which?</p>
<p><img title="The Downloads folder and a docked disk image are virtually indistinguishable" alt="The Downloads folder and a docked disk image are virtually indistinguishable" src="http://www.kevinyank.com/blog/wp-content/uploads/2007/10/docked-folder-and-dmg.jpg" /></p>
<p>And of course, there is no preference (hidden or otherwise) to control this icon insanity.</p>
<p>Thankfully, after dealing with this horrendous situation for 48 hours, I&#8217;ve found a work-around that restores (mostly) the pre-Leopard behaviour of docked folders. Instead of placing the folder itself in the Dock, create an alias to the folder, and place <span style="font-style: italic">that</span> on the Dock.</p>
<p>Here&#8217;s the procedure in detail:</p>
<ol>
<li>In your Home folder, create a new folder named Dock Aliases.</li>
<li>One at a time, Cmd-Option-Drag each of your &#8220;special&#8221; folders (Applications, Documents, etc.) into the Dock Aliases folder, to create aliases there.</li>
<li>Open the Dock Aliases folder. You should see the aliases you created. You can tell them apart from the originals by the little black arrow in the bottom-left-hand corner of each icon.</li>
<li>One at a time, drag each of the folders you want to your Dock.</li>
</ol>
<p>Here&#8217;s what you&#8217;ll end up with:</p>
<p><img title="The docked aliases display the icons of their corresponding folders, not their contents." alt="The docked aliases display the icons of their corresponding folders, not their contents." src="http://www.kevinyank.com/blog/wp-content/uploads/2007/10/docked-aliases.jpg" /></p>
<p>Clicking on any of these docked aliases will open the corresponding folder in a Finder window. The only thing missing from the pre-Leopard behaviour is the ability to browse through the folders by right-clicking them.</p>
<p>Ideally, one could choose to benefit from the Fan and Grid views provided by stacks without having to live with the horrendous Dock icons, but at least this work-around gives you one more choice than Apple saw fit to provide!</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/workaround-mac-os-x-leopard-docked-folder-icon-madness/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Photos: Rubicon Valley Horse Riding</title>
		<link>http://kevinyank.com/blog/archives/photos-rubicon-valley-horse-riding</link>
		<comments>http://kevinyank.com/blog/archives/photos-rubicon-valley-horse-riding#comments</comments>
		<pubDate>Sat, 06 Oct 2007 14:26:32 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[geekdom]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/photos-rubicon-valley-horse-riding</guid>
		<description><![CDATA[For the main event for our three-day getaway in and around Marysville, Jess and I went horse riding in Rubicon Valley on a perfect morning. We lucked out and got a guide all to ourselves, so we got to learn a lot more about riding than we had done on our previous ride. Jess’s horse [...]]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.flickr.com/photos/sentience/sets/72157602289450365/" title="View ‘Rubicon Valley Horse Riding’ set on Flickr"><img src="http://farm3.static.flickr.com/2084/1497400602_2d3d3abd51_m.jpg" width="240" height="180" alt="Rubicon Valley Horse Ride 8" align="right" /></a></div>
<p>For the main event for our three-day getaway in and around Marysville, Jess and I went horse riding in Rubicon Valley on a perfect morning. We lucked out and got a guide all to ourselves, so we got to learn a lot more about riding than we had done on our previous ride.</p>
<p>Jess’s horse Bounty must have been having an off day, because she made several attempts to bite my horse, Apache (Yes geeks, <em>Apache</em>. Believe me, I was geeking out about it all the way!). Otherwise, the ride went smoothly, with lots of high-speed cantering that had Jess calling me “the geekiest cowboy around”.</p>
<p><a href="http://www.flickr.com/photos/sentience/sets/72157602289450365/">View ‘Rubicon Valley Horse Riding’ set on Flickr</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/photos-rubicon-valley-horse-riding/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Going DRM-Free Digital</title>
		<link>http://kevinyank.com/blog/archives/going-drm-free-digital</link>
		<comments>http://kevinyank.com/blog/archives/going-drm-free-digital#comments</comments>
		<pubDate>Sat, 06 Oct 2007 07:42:55 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/going-drm-free-digital</guid>
		<description><![CDATA[Having one too many dusty CDs taking up shelf space, I’ve decided not to buy music in physical form any more. I don’t care how many exclusive, special edition DVDs and fancy-pants packaging they dangle out there—it’s time to move past the physical disc. By itself, that’s easy enough to do. There are plenty of [...]]]></description>
			<content:encoded><![CDATA[<p><img align="right" alt="Matchbox Twenty’s ‘Exile on Mainstream’ album art" src="http://ec1.images-amazon.com/images/I/313WChAka3L._AA160_.jpg" /></p>
<p>Having one too many dusty CDs taking up shelf space, I’ve decided not to buy music in physical form any more. I don’t care how many exclusive, special edition DVDs and fancy-pants packaging they dangle out there—it’s time to move past the physical disc.</p>
<p><span id="more-168"></span>By itself, that’s easy enough to do. There are plenty of places to purchase digital music out there, not least of which is the iTunes Music Store. Unfortunately, I refuse to buy music crippled by DRM that restricts the devices I use to listen to the music I have purchased.</p>
<p>The iTunes Music Store recently launched its iTunes Plus DRM-free music offering, but due to resistance from most of the music labels, it’s only able to offer this format for a small subset of the music it has for sale. Amazon.com’s MP3 Downloads section provides even better quality and value for money, but it’s only available in the US for now.</p>
<p>The first band to miss out on my money because its music is not available in DRM-free digital form is <a href="http://www.matchboxtwenty.com/">Matchbox Twenty</a>. Their new album, ‘Exile on Mainstream’ sounds great to me, but I’ll just have to do without it until I can buy it in a format that works for me.</p>
<p>In related news, Radiohead is about to release its new album, <a href="http://www.inrainbows.com/">‘In Rainbows’</a> in DRM-free digital form, and is enabling buyers to choose for themselves how much they want to pay for the album! Sounds great, right? Sadly, the physical (‘Discbox’) version of the album contains eight tracks that the digital version does not. Sigh.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/going-drm-free-digital/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cat Out of the Bag</title>
		<link>http://kevinyank.com/blog/archives/cat-out-of-the-bag</link>
		<comments>http://kevinyank.com/blog/archives/cat-out-of-the-bag#comments</comments>
		<pubDate>Fri, 20 Jul 2007 07:19:19 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[geocaching]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.kevinyank.com/blog/archives/cat-out-of-the-bag</guid>
		<description><![CDATA[After hearing about a potentially competing product in the works, let the cat out of the bag on PPQuery on the Geocaching Australia forum today. Planning on a beta release this weekend. (1)]]></description>
			<content:encoded><![CDATA[<p>After hearing about a potentially competing product in the works, let the cat out of the bag on <a href="http://www.kevinyank.com/blog/archives/new-project-pocket-pocket-query">PPQuery</a> on the <a href="http://forum.geocaching.com.au/viewtopic.php?t=8634">Geocaching Australia forum</a> today. Planning on a beta release this weekend.</p>
<a href="http://kevinyank.com/blog/archives/cat-out-of-the-bag" rel="bookmark" class="asides-permalink" title="Permanent Link to Cat Out of the Bag">(1)</a>]]></content:encoded>
			<wfw:commentRss>http://kevinyank.com/blog/archives/cat-out-of-the-bag/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

