<?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>Art Of Geek &#187; Apple</title>
	<atom:link href="http://artofgeek.com/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://artofgeek.com</link>
	<description>Technology from the geek perspective.</description>
	<lastBuildDate>Thu, 18 Mar 2010 18:48:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Toggle display of hidden files in Finder with keyboard shortcut [Update 2]</title>
		<link>http://artofgeek.com/2009/09/16/toggle-display-of-hidden-files-in-finder-with-keyboard-shortcut/</link>
		<comments>http://artofgeek.com/2009/09/16/toggle-display-of-hidden-files-in-finder-with-keyboard-shortcut/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 00:23:43 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[keyboard shortcut]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=460</guid>
		<description><![CDATA[<p>[Update 2] Still in early Mac OS X 10.6 Snow Leopard discovery mode, I&#8217;ve started revisiting MacOSXHints.com much more regularly to find out what handy undocumented or at least not widely known tricks the new OS has up it&#8217;s sleeve. Today I came across this fantastic tip about how you can toggle the display of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-483" title="Toggle Hidden Files" src="http://artofgeek.com/wp-content/uploads/2009/09/Toggle-Hidden-Files-300x141.png" alt="Toggle Hidden Files" width="300" height="141" /><a href="http://artofgeek.com/2009/09/16/toggle-display-of-hidden-files-in-finder-with-keyboard-shortcut/#update_2">[Update 2]</a> Still in early Mac OS X 10.6 Snow Leopard discovery mode, I&#8217;ve started revisiting <a href="http://www.macosxhints.com/">MacOSXHints.com</a> much more regularly to find out what handy undocumented or at least not widely known tricks the new OS has up it&#8217;s sleeve. Today I came across <a href="http://www.macosxhints.com/article.php?story=20090915152215383">this fantastic tip</a> about how you can toggle the display of hidden files in any standard open/save dialog box just by hitting &#8220;Shift+Command+. (period)&#8221;. My first reaction of course was, &#8220;wow, what a great idea!&#8221;, followed quickly by, &#8220;about freaking time!&#8221; and ultimately, &#8220;wtf?, why didn&#8217;t they implement this in the Finder?!?&#8221;.</p>
<p>Well as the old saying goes, give a man a fish and he can feed himself for a day, teach a man to fish and he can get rich selling fish to other suckers (or something of the sort). So it is that Apple has given us the tools in Snow Leopard to fend for ourselves.<span id="more-460"></span> Once again, Automator, Services, a custom keyboard shortcut and the good old bash Terminal are all we need to get the job done. Read on for the step by step instructions on how to make &#8220;Shift+Command+. (period)&#8221; toggle the display of hidden files in Finder.</p>
<div id="attachment_439" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Automator-Service-Selection.png" target="_blank"><img class="size-medium wp-image-439 " title="Automator Service Selection" src="http://artofgeek.com/wp-content/uploads/2009/09/Automator-Service-Selection-300x278.png" alt="Choosing a template for your Automator workflow (click to enlarge)" width="300" height="278" /></a><p class="wp-caption-text">Choosing a template for your Automator workflow</p></div>
<ol>
<li>Open Automator (in your Applications folder) and choose Service from the list of templates provided and click the Choose button.</li>
<li>In the left hand column under Library, select Utilities.</li>
<li>In the second column, drag &#8220;Run Shell Script&#8221; to the right hand pane.</li>
<li>At the top of the right hand pane where you dragged the Run Shell Script action, click on the right-hand popup menu and change &#8220;any application&#8221; to &#8220;Finder&#8221;. This sets the service so it only appears and can be activated by the keyboard shortcut when Finder is the active application.</li>
<li>Then click on the popup menu next to &#8220;Service receives&#8221; and choose &#8220;no input&#8221;. It&#8217;s important you do this step after step 4 because if you do the reverse, Finder won&#8217;t be available as an option in the right hand menu.</li>
<li>Copy and paste the following text into the empty text area of the Run Shell Script action:</li>
<blockquote><p><code><span style="color: #0000ff;">osascript -e 'tell application "Finder" to quit'<br />
SHOWHIDDEN=`defaults read com.apple.finder AppleShowAllFiles`<br />
if [ $SHOWHIDDEN -eq 1 ]; then<br />
defaults write com.apple.finder AppleShowAllFiles -bool FALSE<br />
else<br />
defaults write com.apple.finder AppleShowAllFiles -bool TRUE<br />
fi<br />
osascript -e 'tell application "Finder" to activate'<br />
</span></code></p></blockquote>
<div id="attachment_504" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Toggle-Hidden-Files-Automator-Action.png" target="_blank"><img class="size-medium wp-image-504 " title="Toggle Hidden Files Automator Action" src="http://artofgeek.com/wp-content/uploads/2009/09/Toggle-Hidden-Files-Automator-Action-300x230.png" alt="Completed Automator action, ready to save (click to enlarge)" width="300" height="230" /></a><p class="wp-caption-text">Completed Automator action, ready to save (click to enlarge)</p></div>
<li>Choose File&#8211;&gt;Save, and give the new service a meaningful name like &#8220;Toggle Hidden Files&#8221; that will appear in the Services menu. Once you&#8217;ve done that, you can go to the Services menu (located in the current application menu, next to the Apple menu) and your newly created service should appear there. You can even run it, it&#8217;s already fuctional, just lacking a keyboard shortcut.</li>
<li>Open System Preferences&#8211;&gt;Keyboard&#8211;&gt;Keyboard Shortcuts and select Services in the left column.</li>
<div id="attachment_467" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Toggle-Hidden-Files-Keyboard-Shortcut.png" target="_blank"><img class="size-medium wp-image-467 " title="Toggle Hidden Files Keyboard Shortcut" src="http://artofgeek.com/wp-content/uploads/2009/09/Toggle-Hidden-Files-Keyboard-Shortcut-300x271.png" alt="Setting the keyboard shortcut (click to enlarge)" width="300" height="271" /></a><p class="wp-caption-text">Setting the keyboard shortcut (click to enlarge)</p></div>
<li>Scroll down to the bottom and under the General category, you should see your newly created service listed there. Select it, then Double-click close to the right side of the selected line to reveal a field where you can enter a custom keyboard shortcut. Enter &#8220;Shift+Command+.&#8221; (might as well keep it consistent with the shortcut used in open/save dialog boxes), and then quit System Preferences.</li>
</ol>
<p>That&#8217;s all there is to it. The really nice thing is built-in keyboard shortcuts override custom ones, so pressing  &#8220;Shift+Command+. (period)&#8221; in an open/save dialog will not execute this service.<br />
<div id="attachment_515" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Finder-Busy-Error.png"><img src="http://artofgeek.com/wp-content/uploads/2009/09/Finder-Busy-Error-300x143.png" alt="Finder Busy Error (click to enlarge)" title="Finder Busy Error" width="300" height="143" class="size-medium wp-image-515" /></a><p class="wp-caption-text">Finder Busy Error (click to enlarge)</p></div><br />
<div id="attachment_516" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Service-Execution-Error.png"><img src="http://artofgeek.com/wp-content/uploads/2009/09/Service-Execution-Error-300x139.png" alt="Service Execution Error (click to enlarge)" title="Service Execution Error" width="300" height="139" class="size-medium wp-image-516" /></a><p class="wp-caption-text">Service Execution Error (click to enlarge)</p></div>The way the script works is to toggle the state of a hidden Finder preference and restart the Finder so the changes take effect. So you will see Finder disappear momentarily when executing this service.</p>
<p>Since the Finder will be restarted cleanly (using an AppleScript call to request it to quit), any tasks it is currently executing such as  a copy operation, emptying the trash, etc. will prevent Finder from quitting and pop up the two error messages displayed on the right, without any modification to Finder&#8217;s preference plist file. If this happens, simply click &#8220;OK&#8221; to clear the two messages, wait for the Finder operation to complete (or cancel it) and try again.</p>
<p>I&#8217;ll reiterate how dumb it is that we have to implement this ourselves, but this oversight seems completely insignificant when we consider that instead of implementing a single keyboard shortcut that less than 1% of users will ever use, Apple have given all users a powerful and easy to use set of tools to add a keyboard shortcut for almost anything they could ever want to accomplish with one. Now go fish! <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a name="update_1"></a></p>
<hr /><a name="update_1"></a><strong><em>Update 1 &#8211; 9/17/2009, 11:20 pm:</em></strong> I&#8217;ve made a slight modification to the instructions, adding step 4 which makes the service (and keyboard shortcut) only active when Finder is the frontmost app. This greatly reduces the chances that the keyboard shortcut will interfere with one already assigned to an application, but also keeps the Services menu less cluttered when not in Finder. This also makes it impossible to accidentally activate the service unintentionally unless Finder is the active app. Seeing as you&#8217;d only really want/need to use this trick while using Finder, this made the most sense, but of course you&#8217;re welcome to leave this step out if you think you might want to toggle this while running any app.</p>
<p>I also added two extra lines at the end of the shells script to improve usabiliy. Previously, after the action was executed, Finder would in most cases not end up being the frontmost application anymore since upon quitting Finder, the next application that is running would now become frontmost. The added two lines simply add a quarter second pause so Finder has a chance to relaunch before running the open command which brings Finder back to the front if it isn&#8217;t already.</p>
<p><a name="update_2"></a></p>
<hr /><a name="update_2"></a><strong><em>Update 2 &#8211; 10/2/2009, 11:57 am:</em></strong> Special thanks to commenter &#8220;GlowingApple&#8221; for a suggested improvement to use the osascript command to politely quit the Finder rather than the killall command. The benefit is now Finder will throw up an error if it&#8217;s in the middle of doing something rather than simply imploding taking your copy or empty trash command with it. <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I also changed the execution order a little bit so that the Finder is quit first before the plist modification takes place. That way if the Finder can&#8217;t be quit because it&#8217;s busy, no change will take place. This will prevent the state of hidden file display from unexpectedly changing between reboots or logouts if you unsuccessfully executed the service and Finder couldn&#8217;t be quit. </p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2009/09/16/toggle-display-of-hidden-files-in-finder-with-keyboard-shortcut/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>Lock your Mac&#8217;s screen like in Windows, Snow Leopard edition</title>
		<link>http://artofgeek.com/2009/09/08/lock-your-macs-screen-like-in-windows-snow-leopard-edition/</link>
		<comments>http://artofgeek.com/2009/09/08/lock-your-macs-screen-like-in-windows-snow-leopard-edition/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[keyboard shortcut]]></category>
		<category><![CDATA[login window]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=438</guid>
		<description><![CDATA[<p>Wow. Didn&#8217;t take long for Snow Leopard to render my previous hint on how to lock your Mac&#8217;s screen utterly obsolete.</p>
<p>This is one of the things I love most about Mac OS X: Apple just keeps adding features that often eliminate the need for third party solutions to simple problems. In this particular case, we&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-446" title="Snow-Leopard-and-Friends" src="http://artofgeek.com/wp-content/uploads/2009/09/Snow-Leopard-and-Friends.png" alt="Snow-Leopard-and-Friends" width="300" height="233" />Wow. Didn&#8217;t take long for Snow Leopard to render <a href="http://artofgeek.com/2009/06/23/lock-your-macs-screen-like-in-windows/">my previous hint</a> on how to lock your Mac&#8217;s screen utterly obsolete.</p>
<p>This is one of the things I love most about Mac OS X: Apple just keeps adding features that often eliminate the need for third party solutions to simple problems. In this particular case, we&#8217;re going to use a combination of Automator, a terminal command, Snow Leopard&#8217;s new improved Services and a system-wide keyboard shortcut to enable a hotkey that will suspend the currently logged in user session and display the Login Window as though you had chosen the &#8220;Login Window…&#8221; option from the Fast User Switching menu extra.<span id="more-438"></span></p>
<p>I know, enough with the chatter, get on with the tutorial!  Just follow these steps and you&#8217;ll be locking your Mac running Mac OS X 10.6 Snow Leopard like it&#8217;s running Windows XP! Wait, did I just write that? <em>Shudder.</em> Sorry, I think I just threw up a little bit in my mouth. Here&#8217;s the tutorial:</p>
<div id="attachment_439" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Automator-Service-Selection.png" target="_blank"><img class="size-medium wp-image-439 " title="Automator Service Selection" src="http://artofgeek.com/wp-content/uploads/2009/09/Automator-Service-Selection-300x278.png" alt="Choosing a template for your Automator workflow (click to enlarge)" width="300" height="278" /></a><p class="wp-caption-text">Choosing a template for your Automator workflow</p></div>
<ol>
<li>Open Automator (in your Applications folder) and choose Service from the list of templates provided and click the Choose button.</li>
<li>In the left hand column under Library, select Utilities.</li>
<li>In the second column, drag &#8220;Run Shell Script&#8221; to the right hand pane.</li>
<li>At the top of the right hand pane where you dragged the Run Shell Script action, click on the menu next to &#8220;Service receives&#8221; and choose &#8220;no input&#8221;.</li>
<li>Copy and paste the following Terminal command into the empty text area of the Run Shell Script action:<br />
<blockquote><p><code><span style="color: #0000ff;">/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend</span></code></p></blockquote>
<p>The entire command should be entered on a single line and note there is a space after &#8220;/Menu\&#8221;.</li>
<div id="attachment_441" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Automator-Action.png" target="_blank"><img class="size-medium wp-image-441 " title="Automator Action" src="http://artofgeek.com/wp-content/uploads/2009/09/Automator-Action-300x199.png" alt="Completed Automator action, ready to save (click to enlarge)" width="300" height="199" /></a><p class="wp-caption-text">Completed Automator action, ready to save (click to enlarge)</p></div>
<li>Choose File&#8211;&gt;Save, and give the new service a meaningful name like &#8220;Lock Computer&#8221; that will appear in the Services menu. Once you&#8217;ve done that, you can go to the Services menu (located in the current application menu, next to the Apple menu) and your newly created service should appear there.</li>
<li>Next open System Preferences &#8211;&gt; Keyboard &#8211;&gt; Keyboard Shortcuts and select Services in the left column.</li>
<div id="attachment_443" class="wp-caption alignright" style="width: 310px"><a href="http://artofgeek.com/wp-content/uploads/2009/09/Setting-the-keyboard-shortcut.png" target="_blank"><img class="size-medium wp-image-443 " title="Setting the keyboard shortcut" src="http://artofgeek.com/wp-content/uploads/2009/09/Setting-the-keyboard-shortcut-300x271.png" alt="Setting the keyboard shortcut (click to enlarge)" width="300" height="271" /></a><p class="wp-caption-text">Setting the keyboard shortcut (click to enlarge)</p></div>
<li>Scroll down to the bottom and under the General category, you should see your newly created service listed there. Select it, then Double-click close to the right side of the selected line to reveal a field where you can enter a custom keyboard shortcut. Enter an easy to remember but unique keyboard shortcut (I decided to go with ctrl+option+command+L), and then quit System Preferences.</li>
</ol>
<p>That&#8217;s it! Go ahead and test your keyboard shortcut!</p>
<p>Welcome back! As you should have just seen, pressing the assigned keyboard shortcut fast user switches to the login screen leaving all your programs running in the background waiting for you to log back in again. If you&#8217;re more mouse inclined, you can of course also lock your screen by choosing your Automator action from the Services menu. All accomplished with the awesome customization tools included with Mac OS X 10.6 Snow Leopard!</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2009/09/08/lock-your-macs-screen-like-in-windows-snow-leopard-edition/feed/</wfw:commentRss>
		<slash:comments>102</slash:comments>
		</item>
		<item>
		<title>Lock your Mac&#8217;s screen like in Windows [Update 1]</title>
		<link>http://artofgeek.com/2009/06/23/lock-your-macs-screen-like-in-windows/</link>
		<comments>http://artofgeek.com/2009/06/23/lock-your-macs-screen-like-in-windows/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 13:14:26 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[fast user switching]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[lock screen]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=421</guid>
		<description><![CDATA[<p>[Update 1] Anyone who uses Windows at work is probably familiar with the old Ctrl-Alt-Del &#60;return&#62; trick to quickly lock your screen when you step away from your computer. This displays a &#8220;This computer is in use and has been locked.&#8221; message which instructs you to press Ctrl-Alt-Del again to unlock the computer. Doing so [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-423" title="LockSystem" src="http://artofgeek.com/wp-content/uploads/2009/06/LockSystem.png" alt="LockSystem" width="128" height="128" /><a href="http://artofgeek.com/2009/06/23/lock-your-macs-screen-like-in-windows/#update_1">[Update 1]</a> Anyone who uses Windows at work is probably familiar with the old Ctrl-Alt-Del &lt;return&gt; trick to quickly lock your screen when you step away from your computer. This displays a &#8220;This computer is in use and has been locked.&#8221; message which instructs you to press Ctrl-Alt-Del again to unlock the computer. Doing so presents you with a username/password prompt, which looks very much like the login screen.</p>
<p>In Mac OS X, the closest thing we have is the &#8220;Require password to wake this computer from sleep or screen saver&#8221; check box in the Security system preference pane (in Mac OS X 10.5 Leopard). Then what a lot of people do is set a screen corner to activate the screen saver (via the Exposé system preference pane). Then just before they walk away, they move the mouse into the designated corner, wait for the screensaver to kick in, then walk away.<span id="more-421"></span></p>
<p>If you have OS X&#8217;s Fast User Switching enabled (via the Accounts system preference pane), there&#8217;s a second way to lock your screen which is a bit more like the Windows method. By selecting the &#8220;Login Window…&#8221; option from the Fast User Switching (FUS) menu in the top-right corner of your screen, you are taken back to the login screen while your user session continues to run in the background.</p>
<p>While the Mac OS X solutions works fine, some of us regular Windows users just prefer a more direct method of locking the screen similar to what is offered in Windows. I was one of those people. I liked the Fast User Switching method for locking my screen, but didn&#8217;t want to have to enable FUS to get it because I&#8217;m the only person who uses my Mac, and I didn&#8217;t want to give up the extra menu bar real estate to the FUS menu. In addition, the FUS method requires two clicks, which is one too many clicks! Ideally I wanted a single click solution or one which can be quickly activated with a hotkey.</p>
<p>In my searching, I found a Terminal command on <a title="Mac OS X Hints" href="http://www.macosxhints.com/" target="_blank">MacOSXHints</a> (it&#8217;s been posted so many times in different hints and comments too numerous to give credit to individually) which activates the &#8220;Login Window…&#8221; function from the FUS menu, even if FUS isn&#8217;t enabled! The command is as follows:</p>
<pre>/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend</pre>
<p>&#8220;Now we&#8217;re getting somewhere&#8221;, I thought to myself upon finding that little gem. If I could turn that into a double-clickable script or application, I could add it to the Dock and could lock my system with a single click of the mouse. Even better, using keyboard automation software <a href="http://www.shadowlab.org/softwares/spark.php">like Spark</a> or similar, you could even map a keyboard shortcut that would launch the script or app with the press of a couple of keys.</p>
<p>So to cut an already long story short, I figured out how to create a shell script and using XCode bundled it as an application. I won&#8217;t go into details on exactly how I did either, mainly because I did it a long time ago, and frankly can&#8217;t exactly remember, and that wasn&#8217;t the point of this post. Not being an artist, I borrowed Apple&#8217;s icon from Mac OS X&#8217;s Security Preference pane (thanks Apple!) and made it the icon for my new application bundle which I called simply &#8220;Lock System&#8221;. You can download the Lock System application from the link at the end of this article.</p>
<p>Once you&#8217;ve downloaded and extracted the zip file. Just move the Lock System application to your Applications folder (or anywhere else you want to keep it). I keep mine in ~/Library/Scripts so I can access it via the AppleScript menu. Then add it to your Dock or put an Alias on your Desktop for quick access. Finally, create a keyboard shortcut in <a href="http://www.shadowlab.org/softwares/spark.php">Spark</a> (or similar) for launching Lock System (I like Command+Shift+L), and that&#8217;s it! You can now lock your Mac like you do on Windows. Enjoy!</p>
<h6><em>Lock System should be compatible with Mac OS X 10.3, 10.4 and 10.5. <del datetime="2009-09-09T01:35:52+00:00">Anyone out there who can confirm if it still works in Mac OS X 10.6 Snow Leopard, please post your results in the comments, thanks!</del><em> [Edit: See <a href="http://artofgeek.com/2009/06/23/lock-your-macs-screen-like-in-windows/#update_1">my update</a> at the end of the article. - madgunde]</em> This software is presented as is and with no guarantees. You use it at your own risk, so don&#8217;t be coming back to me to complain that it&#8217;s hosed your system (which would be hard to believe anyway). I&#8217;ve been using it for years now and am only sharing because I thought others might appreciate it.</em></h6>
<p><img class="size-full wp-image-423 alignnone" title="LockSystem" src="http://artofgeek.com/wp-content/uploads/2009/06/LockSystem.png" alt="LockSystem" width="128" height="128" /></p>
<p><a href="http://artofgeek.com/wp-content/uploads/2009/06/Lock-System.zip">Download Lock System (12KB .zip)</a></p>
<hr />
<a name="update_1" ></a><strong><em>Update 1 &#8211; 9/8/2009, 9:30 pm:</em></strong> If you&#8217;re running Mac OS X 10.6 Snow Leopard, there&#8217;s an <a href="http://artofgeek.com/2009/09/08/lock-your-macs-screen-like-in-windows-snow-leopard-edition/">even more elegant solution</a> that doesn&#8217;t require any third party software to accomplish the same task. If you&#8217;re not running Snow Leopard, you better have a darn good reason, like your Mac doesn&#8217;t have an Intel processor or something. <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2009/06/23/lock-your-macs-screen-like-in-windows/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WordPress for iPhone update fixes bugs, adds features</title>
		<link>http://artofgeek.com/2009/03/23/wordpress-for-iphone-update-fixes-bugs-adds-features/</link>
		<comments>http://artofgeek.com/2009/03/23/wordpress-for-iphone-update-fixes-bugs-adds-features/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 02:04:35 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=400</guid>
		<description><![CDATA[<p>A while back I wrote a review of the (then) new official iPhone blogging app from WordPress. Well, it&#8217;s been recently updated and from what I can see, they&#8217;ve resolved the limitations I identified back then, and added a bunch of new features to make it even more functional.</p>
<p>You can now edit your entire post, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://artofgeek.com/wp-content/uploads/2009/03/img_0001.png" target="_blank"><img class="alignleft size-medium wp-image-407" style="border: 1px solid #777;" title="WordPress for iPhone 1.21" src="http://artofgeek.com/wp-content/uploads/2009/03/img_0001-200x300.png" alt="WordPress for iPhone 1.21" width="200" height="300" /></a>A while back <a href="http://artofgeek.com/2008/07/22/wordpress_for_iphone/">I wrote a review</a> of the (then) new official iPhone blogging app from WordPress. Well, it&#8217;s been recently updated and from what I can see, they&#8217;ve resolved the limitations I identified back then, and added a bunch of new features to make it even more functional.</p>
<p>You can now edit your entire post, even if they contain the &#8220;more&#8221; tag. You still can&#8217;t add/edit optional excerpts though. The addition of a landscape keyboard will make this even easier. Previewing of blogs not hosted by WordPress.com works well, provided your theme supports this WordPress feature.</p>
<p>In my original review I mentioned that only wordpress.com hosted blogs supported mobile previewing, but I think it was simply my blogs theme which was the limitation. I&#8217;ve since moved to a theme which supports the latest WP features and I&#8217;m able to preview my posts as they will appear on my real blog. Very nice.<span id="more-400"></span></p>
<p>In addition to managing your posts, WordPress for iPhone now allows you to create/edit pages, as well as moderate comments, including marking comments as spam. The latter addition will be most welcome to any mobile blogger who gets a lot of comments as it gives you a convenient way to clear through your comment queue during idle time when you&#8217;re out and about rather than when you&#8217;re at home or work and busy with other stuff.</p>
<p>So nothing earth shattering. You still can&#8217;t use advanced editing tools and still no cut &amp; paste, but iPhone OS 3.0 will be taking care of the latter sometime this summer. In the meantime, if you&#8217;re a WordPress blogger and you haven&#8217;t already checked this app out, or haven&#8217;t touched it since it first came out, then it&#8217;s definitely worth a second look.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2009/03/23/wordpress-for-iphone-update-fixes-bugs-adds-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn your iPhone into a wireless keyboard &amp; mouse [Update]</title>
		<link>http://artofgeek.com/2009/03/05/turn-your-iphone-into-a-wireless-keyboard-and-mouse/</link>
		<comments>http://artofgeek.com/2009/03/05/turn-your-iphone-into-a-wireless-keyboard-and-mouse/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 19:27:16 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod/iTunes]]></category>
		<category><![CDATA[ControlPad]]></category>
		<category><![CDATA[iPod touch]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[remote control]]></category>
		<category><![CDATA[VNC]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=370</guid>
		<description><![CDATA[<p>[Update 1] Like a lot of tech-savvy people out there, I&#8217;m using a Mac mini as the heart of my home theatre to play music, view photos, watch downloaded TV shows and movies as well as DVDs. I also do the occasional web surfing with it. For most of those uses, the tiny white Apple [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-373" style="border: 1px solid #777;" title="controlpad_icon" src="http://artofgeek.com/wp-content/uploads/2009/03/controlpad_icon.png" alt="controlpad_icon" width="150" height="150" /><a href="http://artofgeek.com/2009/03/05/turn-your-iphone-into-a-wireless-keyboard-and-mouse/#update_1">[Update 1]</a> Like a lot of tech-savvy people out there, I&#8217;m using a Mac mini as the heart of my home theatre to play music, view photos, watch downloaded TV shows and movies as well as DVDs. I also do the occasional web surfing with it. For most of those uses, the tiny white Apple infrared remote control gets by just fine, since thanks to QuickTime&#8217;s extendability and a little plugin called Perian, I can play pretty much any video format I&#8217;m likely to come across in FrontRow. I can even use the same remote to command the most critical DVD Player functions when watching movies stored on my hard disk as Video TS folders or ISO images.</p>
<p>The Apple remote only handles so much unfortunately as we know all too well. Switching from Front Row to DVD Player or any other app can&#8217;t be done for instance. The little white device becomes nothing more than a poor paperweight in fact when trying to control any app that isn&#8217;t specifically a media or presentation tool. We normally get around this limitation by keeping a wireless keyboard and mouse handy, tucked away and out of sight until needed. Well I&#8217;m happy to report that our days of getting off the couch to reach for a keyboard or mouse are finally over because a handy little iPhone/iPod touch app has just rendered those battery sucking peripherals obsolete!<span id="more-370"></span></p>
<div id="attachment_371" class="wp-caption alignleft" style="width: 210px"><img class="size-medium wp-image-371  " title="controlpad_screenshot" src="http://artofgeek.com/wp-content/uploads/2009/03/controlpad_screenshot-200x300.jpg" alt="controlpad_screenshot" width="200" height="300" /><p class="wp-caption-text">ControlPad&#39;s user interface is simple and functional.</p></div>
<p><a href="http://www.tienshiao.org/iphone-apps/controlpad/">ControlPad by Tienshiao Ma</a> (link to developer&#8217;s blog) is a simple yet beautifully executed app that turns your multi-touch Apple iDevice into a wireless keyboard and mouse. As you can see from the image on the left, the interface divides the screen into a two button touch pad on top and a keyboard on the bottom. Communication is done using standard VNC protocols, so no installation is required on Macs running Mac OS X. However, because it&#8217;s VNC, it can be used to remote control any PC and OS that has a VNC server installed. The developers website even has step by step instructions for configuring your setup whether it be running Mac OS X, Windows or Ubuntu Linux.</p>
<p>Since I&#8217;ve already got my Macs set up to control via VNC and Screen Sharing, it took zero configuration on the computer end to start using ControlPad. It even automatically detected my Macs using Bonjour, so all I had to do was select my Mac from the list, enter my VNC password and within seconds I was controlling my Mac&#8217;s mouse and keyboard using my iPhone. It&#8217;s that simple. You can of course manually enter and save your PC or Mac&#8217;s network info and password to recall later with just one touch. If it wasn&#8217;t obvious, your Mac will need to be accessible over a WiFi network or via the internet and your iPhone or iPod touch will have to have network connectivity to be able to communicate with the computer. It even works on iPhones connected via a 3G or EDGE cell network over the internet.</p>
<p>The virtual touch pad is very responsive and allows you to do all the standard mouse click, double-click and drag operations.  It even supports tap to click and two finger drag to scroll like the trackpads on Apple&#8217;s notebooks, which is a godsend if you&#8217;re surfing the web. To round out the features, the virtual keyboard seems to support all they keys you&#8217;d find on a full-size keyboard, and even supports modifier keys for key combos like Command+Option+Esc or Command+Tab. So there&#8217;s almost nothing you can&#8217;t do with this that you could with a real wireless or wired keyboard.</p>
<p>It&#8217;s hard not to love ControlPad for iPhone/iPod touch. The app isn&#8217;t perfect, but there&#8217;s not much to gripe about either. In my testing it has been fast, stable and responsive. I don&#8217;t really have any complaints, but I do have a couple of suggestions for improvements I&#8217;d like to see in a future update:</p>
<ul>
<li><del datetime="2009-10-28T12:35:38+00:00">It only supports TCP/IP port numbers up to 32767, even though port numbers upwards of 50000 should be perfectly valid</del>. <span style="color: #0000ff;">Update: Since the original review was posted, ControlPad has gained support for the full range of TCP/IP port numbers.</span></li>
<li><del datetime="2009-10-28T12:35:38+00:00">As a Mac user, I&#8217;d like to see a per connection preference to have the &#8216;alt&#8217; key aptly renamed &#8216;option&#8217; when controlling a Mac.</del> <span style="color: #0000ff;">Update: The latest versions of ControlPad now seem to detect Mac hosts and displays a properly named &#8216;option&#8217; key instead of &#8216;alt&#8217;.</span></li>
<li><del datetime="2009-10-28T12:35:38+00:00">It would be nice if we could get a landscape keyboard when turning the device on it&#8217;s side. Since there wouldn&#8217;t be any room for the trackpad in landscape mode, it would be nice to be able to hide the keyboard to use a larger full-screen trackpad. Tilting the iPhone back to portrait mode could then return it to the default split-screen layout.</del> <span style="color: #0000ff;">Update: The developer did one better in a later release of ControlPad. Not only does turning the iPhone into landscape mode give you a landscape keyboard (thank-you!), but you can hide the keyboard and get a spacious full screen trackpad, great for doing extended complex mouse operations.</span></li>
<li>This is a bit of a long shot, but one thing that I miss while using ControlPad to type on my Mac is the iPhone&#8217;s predictive spell checker. Maybe in a future update they could add a little text entry buffer so you could type your text with spelling correction on the iPhone, make any corrections and then send it all to the computer as keystrokes. That way we could benefit from the iPhone&#8217;s excellent typo correction system. Something you only realize you rely on when it&#8217;s suddenly not there to fix your clumsy thumbs&#8217; mistakes.</li>
</ul>
<p>ControlPad is <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=301400438&amp;mt=8">available from the iTunes App Store</a> for $2.99 CDN.  In my opinion it is a must have app for any iPhone or iPod touch user who needs to control a Mac or PC that doesn&#8217;t have a keyboard or mouse within reach or if you want to do away with a mouse or keyboard altogether such as in a kiosk, presentation or home theatre setup. It works as advertised.</p>
<p><strong>Rating:</strong> <del datetime="2009-10-28T12:35:38+00:00">4.5/5</del> Upgraded to 5/5 because of improvements added in the latest releases.<br />
<strong>Product:</strong> ControlPad for iPhone and iPod touch<br />
<strong>Version:</strong> 1.1.2 (iPhone OS 3.0 tested)<br />
<strong>Price:</strong> $2.99 CDN<br />
<strong>Developer:</strong> Tienshiao Ma<br />
<strong>Website:</strong> <a href="http://www.tienshiao.org/iphone-apps/controlpad/">http://www.tienshiao.org/iphone-apps/controlpad/</a><br />
<strong>iTunes Link:</strong> <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=301400438&amp;mt=8">Download ControlPad</a></p>
<p><a name="update_1"></a></p>
<hr /><strong><em>Update 1 - 10/28/2009, 9:00 am:</em></strong> I&#8217;ve updated the review and review score to reflect improvements the developer made in newer versions of the app that were released after the initial review.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2009/03/05/turn-your-iphone-into-a-wireless-keyboard-and-mouse/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Blogging on the run with WordPress for iPhone</title>
		<link>http://artofgeek.com/2008/07/22/wordpress_for_iphone/</link>
		<comments>http://artofgeek.com/2008/07/22/wordpress_for_iphone/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 14:52:18 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/07/22/test/</guid>
		<description><![CDATA[<p>If you&#8217;re both an iPhone user, and have a blog hosted or powered by WordPress, then you have something new to get excited about. WordPress for iPhone and iPod touch was released late yesterday on the iTunes App Store!  I&#8217;m putting it through it&#8217;s paces by composing this post on my iPhone 3G.</p>
<p>While the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://artofgeek.com/wp-content/uploads/2008/07/wordpress-for-iphont-appstore.jpeg" alt="WordPress for iPhone in the App Store" width="280" class="alignleft attachment wp-att-193 " />If you&#8217;re both an iPhone user, and have a blog hosted or powered by WordPress, then you have something new to get excited about. WordPress for iPhone and iPod touch was released late yesterday on the iTunes App Store!  I&#8217;m putting it through it&#8217;s paces by composing this post on my iPhone 3G.</p>
<p>While the app is very light on features, it has all the basic essentials for writing and submitting new posts, as well a editing existing ones. If your blog is hosted on wordpress.com, then you can even see a preview of your post in your site&#8217;s theme, however, those who host with an alternate hosting provider (or like me, on their own server) will see their post displayed with a generic theme. Hopefully a future version will offer the option to launch Safari to view a preview generated by your own server.</p>
<p>It even let&#8217;s you insert photos from the photo library or camera roll on your iDevice as well as taking photos with the built-in camera, right from within the app. Coupled with firmware 2.0&#8242;s ability to take screenshots, this could become an iPhone software reviewer&#8217;s dream come true.<span id="more-188"></span></p>
<p>So what are the limitations? The app only let&#8217;s you edit existing or write new posts. That&#8217;s it. There are no features for doing any other administration of your site for now, so we&#8217;ll still need to use mobile Safari for viewing/editing comments and performing other administrative tasks. Also, those of you who have become spoiled by the GUI editor or even the basic editing toolbar are going to have to brush up on your HTML and CSS, because all formatting has to be applied the old fashioned way.</p>
<p>Another shortfall, or what appears to be more of a bug, is that if your post includes a &#8220;more&#8221; tag to display only an excerpt on the main page, you won&#8217;t be able to edit any part of the post that comes after the more tag.  It&#8217;s like the mobile WordPress app sees the more tag as the end of the article.  There also doesn&#8217;t seem to be any support for optional excerpts.  If like me, you like to only display an excerpt on your blog&#8217;s front page, this is going to be an issue.  You can still use the app to write the post, but you&#8217;ll have to apply the excerpt manually via the web editing tools before you can publish your final post.</p>
<p>Probably the greatest limitation is one not in the app itself but in the iPhone OS: the lack of cut and paste. I&#8217;m not sure if my writing style is rare or not, but frequently when penning longer posts, I tend to move sentences and paragraphs around a lot during the editing process. There&#8217;s simply no way to do this short of deleting and re-typing&#8230; A LOT. Something I&#8217;m just not likely to do. I suspect this will make me a better writer, as I&#8217;ll be forced to think more carefully about what I want to write before I type it.</p>
<p>Where the lack of cut and paste really hurts though is with inserted photos. Since the app inserts photos at the end of your existing post text, you can&#8217;t move them around without writing down and retyping a lot of HTML code.</p>
<p>Again, you could get around this by planning your post ahead of time and inserting photos at the exact points in your post as you are typing it.  If I decide I&#8217;d prefer to insert them earlier in the post, I&#8217;m SOL. Hopefully a future version of WordPress for iPhone/iPod touch will give you the option of inserting photos at any point in the post. But of course it would be better if Apple just got off their ass and gave us an elegant cut &#038; paste solution already.</p>
<p>Limitations aside, I highly recommend WordPress for iPhone and iPod touch to anyone who has a blog powered by WordPress and would like the freedom of submitting or editing posts while on the go.  Bloggers who use excerpts however may only find it useful for composing their post as they will still need to apply the finishing touches via the web interface. </p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/07/22/wordpress_for_iphone/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>A Canadian iPhone 3G launch day experience</title>
		<link>http://artofgeek.com/2008/07/11/an-iphone-3g-canadian-launch-day-experience/</link>
		<comments>http://artofgeek.com/2008/07/11/an-iphone-3g-canadian-launch-day-experience/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 00:58:28 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone 3G]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[Rogers]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=185</guid>
		<description><![CDATA[<p>Got up early this morning to ensure a spot near the front of the line of my local Rogers dealer for the iPhone 3G launch.  I was a man on a mission.  That mission, was to secure a black 16GB iPhone 3G for myself, and a white one for my wife.  Things [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://artofgeek.com/wp-content/uploads/2008/07/iphone-3g-boxsproduct-shot.png" alt="iPhone 3G and boxes" width="320" height="265" class="alignright attachment wp-att-186 " />Got up early this morning to ensure a spot near the front of the line of my local Rogers dealer for the iPhone 3G launch.  I was a man on a mission.  That mission, was to secure a black 16GB iPhone 3G for myself, and a white one for my wife.  Things got off to a bit of a rough start, as it was raining, a bit cold and otherwise miserable.  Dropped my wife off at work and got to the Rogers dealer by around 7:30am.  The upside of the crappy weather is that it was apparent when I got there that nobody really wanted to stand in the rain.  So I was the first person there.</p>
<p>I had staked out the establishment the evening before to confirm they had received their iPhone 3G shipment.  My earlier recon mission was a success, arriving just in time to catch them moving several nondescript boxes from the trunk of a car into the store.  Further interrogation revealed they had received 25-30 8GB units, and 5-10 16GB units.  This was all I needed to know.<br />
<span id="more-185"></span></p>
<p>So I was fairly well prepared this morning.  I had an umbrella, windbreaker and a little folding camping tri-pod seat (I don&#8217;t want to call it a stool, because of the obvious homonym which is just begging to have a joke made of it).  There I waited patiently for the store&#8217;s 10am opening.  In the pouring rain.  After about 30 minutes of waiting, one other soul pulled up and got in line behind me, but then got discouraged after 20 minutes of soakage and left.  At maybe 8:45am, another guy showed up, immediately followed by a third who had been waiting in his car for probably the last half-hour, but decided that being warm and dry was more important than being first or second.  I guess he drew the line at being 3rd.</p>
<p>Luckily, we didn&#8217;t have to wait that much longer as three employees showed up at around 9:20am, and agreed to let us wait inside after I asked really nicely (desperately).  Rather than keep us waiting until opening time (10am), they got started at 9:30, which was a smart move, considering that by this time there were now probably 8-10 people waiting behind me, and things were not going to go smoothly, as you&#8217;ll soon see&#8230;</p>
<p>So they brought out the two 16GB iPhones I asked for, got the account transfer completed for both mine and the missus&#8217; mobile numbers while I carefully opened the boxes and inspected the iPhones for any obvious visual defects.  While they were attempting to &#8216;unbrick&#8217; the white iPhone by connecting it to their PC running iTunes, I was miffed to see that my black unit had a small hairline crack leading from the headphone connector on the top.  Memories of <a href="http://artofgeek.com/2007/09/10/we-caved/">my experience buying the first iPhone in Buffalo</a> came back to haunt me as I asked them to go and grab a replacement unit for me before they allocate the last one to someone else.  It turned out they only had around five 16GB units in total.  Everyone in line behind me was waiting for the 16GB model.  Some poor schmuck just lost his chance of walking out with what he was hoping for&#8230;</p>
<p>They were still having no luck unbricking using iTunes on either of the two PCs in the store.  They told me they were pretty sure I could do it myself at home, so I packed up the wife&#8217;s iPhone and told them I&#8217;d do that.  I just had to wait while they transferred the account activation over from the iPhone with the crack in it to the replacement.  This is where my luck got worse.  Rogers dealer activation website was now inaccessible under what surely was an insurmountable load of requests to activate new iPhones.</p>
<p>They retried several times, and then said, &#8220;no problem, we&#8217;ll just call it in.&#8221;  BZZZZZZT, sorry, try again.  Now, the Rogers dealer activation phone line, which they had no problems getting through to minutes earlier was returning a busy signal.  But not just any busy signal, that fast busy signal that tells you that not only is the Rogers PBX system sitting in a corner in the fetal position sucking it&#8217;s thumb, but the Bell telephone circuit which feeds it is lying next to it unconcious and drooling.  Sigh.</p>
<p>So the result was, I had to leave my iPhone in the store so they could try activating it again later.  I took my wife&#8217;s with me so that I could attempt to unbrick it in iTunes myself at work.  The whole process thus far took around an hour and twenty minutes.  In that time, only one other person had walked out of the store with activated iPhones, the guy who was behind me in line.  Had my first iPhone not had a crack, I would have been the first.  I really felt for the 15-20 people who were now waiting in the store to get one, and getting impatient.  The store had resorted to filling out manual activation forms and telling customers to come back to pick up their iPhones later.</p>
<h3>To unbrick, or not to unbrick, that is the question</h3>
<p>As soon as I was able to do so, I connected my wife&#8217;s white iPhone into my MacBook Pro and launched iTunes to see if I could &#8216;unbrick&#8217; it.  It showed it was trying to connect to the iTunes Store, but after a minute or two, failed with the following error:</p>
<blockquote><p>&#8220;We could not complete your iTunes Store request. An unknown error occured (-4).&#8221;</p></blockquote>
<p>I found reports of others having the same error, so figured I&#8217;d keep trying, as someone had reported success after about 15 attempts.  After probably 10 attempts, it was partially successful, having unbricked the iPhone, but not completing the registration process in iTunes, so it wasn&#8217;t allowing me to sync the device with iTunes.  I was OK with that, since I didn&#8217;t want to sync it with my Mac anyway.  I just wanted to get the iPhone functioning.</p>
<p>I went back and picked up my black iPhone 3G from the store mid-afternoon, figuring that the store should have worked out it&#8217;s technical issues and/or the servers and customer service lines should be less stressed by then.  When I got there, they had already taken care of activation with Rogers but explained that they still couldn&#8217;t unbrick via iTunes and that it was an issue with the iTunes Store being overloaded.  Not a problem I told them, since I was successful in unbricking the first iPhone myself, I figured I&#8217;d get mine working with a bit of perseverance.</p>
<p>Coincidentally, as I was walking in the store, I ran into the guy who had been second in line this morning, who hadn&#8217;t been able to unbrick his two iPhone 3Gs.  I recounted my experience and suggested he just keep trying and it should eventually work.  He didn&#8217;t seem too happy, but at the same time was relieved and thankful for the information.</p>
<p>After getting back with my own iPhone, I had a bit more luck getting it unbricked than for my wife&#8217;s.  It still took close to 10 attempts to finally get through (getting the same -4 error message as the first one got), but when it did eventually work, it let me get through the full activation/registration process.  Once complete, I selected my syncing options, and was finally syncing all my contacts, calendars, mail accounts, music, photos, podcasts, videos and applications.  It took a while, as expected (I sync&#8217;d about 8GB of content), but otherwise had no issues. Mission accomplished.</p>
<p>I couldn&#8217;t help but wonder to myself and out loud in the store, why on earth did the stores insist or bother trying to unbrick the iPhones in-store if customers could do it themselves at home?  This would have reduced the wait times for customers waiting in line, and gotten customers home a lot quicker, even if they couldn&#8217;t use their iPhone right away.  I guess if the process had worked as planned (and the iTunes Store hadn&#8217;t buckled under the load), it would have only been about a 2 minute process, and customers would be able to start using their iPhones immediately.  I&#8217;m guessing this was one of the complaints that Apple had received from the previous iPhone launch, but it&#8217;s a good example of how the best intentioned procedure can end up backfiring if not implemented or planned properly. </p>
<h3>The takeaway for Rogers and Apple</h3>
<p>While we might cut Apple a bit of slack considering how large a product launch this was (it launched today in 21 countries) and even Rogers (they&#8217;ve probably never had to deal with a product that was in such high demand on day one), it&#8217;s a perfect example of why a lot of companies choose to do staggered product launches.  Apple compounded the problem by not only releasing the iPhone and iPod touch firmware 2.0 the same day, but also launching the App Store the day before.  So on top of the hundreds of thousands of new iPhones being sold and activated today, you had possibly millions of original iPhone and iPod touch owners hitting the iTunes Store&#8217;s servers as well to get the latest firmware and download the new mobile apps.</p>
<p>The official Canadian iPhone launch was a complete fiasco by any measure, and both Rogers and Apple have squandered a huge customer loyalty/satisfaction opportunity.  Instead of blowing away customer&#8217;s expectations, they have pissed a lot of customers off.  Most of those customers will most likely get over it, and once they have their iPhone in-hand will probably forget all about it or say it was all worth it because the iPhone itself will greatly exceed their expectations.  The only thing that probably helped limit the amount of unhappy customers is the fact that the iPhone  3G was in relatively limited supply. I hope for both Rogers and Apple&#8217;s sake that these issues get ironed out <em>tout de suite</em>!</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/07/11/an-iphone-3g-canadian-launch-day-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rogers announces it&#8217;s *real* iPhone data plan</title>
		<link>http://artofgeek.com/2008/07/09/rogers-announces-its-real-iphone-data-plan/</link>
		<comments>http://artofgeek.com/2008/07/09/rogers-announces-its-real-iphone-data-plan/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 17:11:55 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[data rates]]></category>
		<category><![CDATA[Fido]]></category>
		<category><![CDATA[GSM]]></category>
		<category><![CDATA[iPhone 3G]]></category>
		<category><![CDATA[Rogers]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=183</guid>
		<description><![CDATA[<p>WOOT!  Rogers has just announced a special &#8216;limited time&#8217; promotional 6GB data plan for anyone purchasing an iPhone 3G on any voice rate plan on a 3 year contract for only $30 extra per month!  From the press release:</p>
<p>Effective July 11, and as a limited time promotional offer for customers
who activate by August [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://artofgeek.com/wp-content/uploads/2008/07/iphone-3g-hearts-rogers.png" alt="iPhone 3G hearts Rogers" width="300" height="250"  />WOOT!  Rogers has <a href="http://micro.newswire.ca/release.cgi?rkey=1607093105&#038;view=84735-0&#038;Start=0">just announced</a> a special &#8216;limited time&#8217; promotional 6GB data plan for anyone purchasing an iPhone 3G on any voice rate plan on a 3 year contract for only $30 extra per month!  From the press release:</p>
<blockquote><p>Effective July 11, and as a limited time promotional offer for customers<br />
who activate by August 31 on a three year contract, a data-only offering of<br />
6GB of data for $30 per month is being made available that can be added to any<br />
in-market voice plan. For example, with 6GB of data, iPhone 3G users can visit<br />
35,952 web pages, or send and receive 157,286 emails, or watch 6,292 minutes<br />
of YouTube videos each and every month.(xx)</p></blockquote>
<p>Fido has <a href="http://micro.newswire.ca/release.cgi?rkey=1607093113&#038;view=84735-0&#038;Start=0">announced the same promotional offer</a>. I&#8217;m sure some will complain that it&#8217;s still not unlimited, but I really defy anyone to realistically use more than 6GB of data on an iPhone in a month.<span id="more-183"></span>  This my friends is the plan that is going to move a LOT of iPhones.  My only complaint is that it just got a lot harder to get your hands on an iPhone 3G this Friday.</p>
<p>Now the questions that&#8217;s nagging at the back of my mind is, is this an example of Rogers reacting to the will of the people and/or pressure from Apple Inc., or was this just the final step in a very well planned marketing/promotion plan?  I mean, think about all the free publicity Rogers has gotten, and consider the fact that they have spent next to nothing to promote the release of this market-changing device.  I&#8217;m beginning to think we&#8217;ve all fallen for a brilliant viral marketing campaign.  If this is the case, hats off to Rogers, well played sir, very well played indeed!  If not, then hats off anyway for showing that you do care what your customers think.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/07/09/rogers-announces-its-real-iphone-data-plan/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>A closer look at Rogers&#8217; iPhone voice/data rates</title>
		<link>http://artofgeek.com/2008/07/03/a-closer-look-at-rogers-iphone-voicedata-rates/</link>
		<comments>http://artofgeek.com/2008/07/03/a-closer-look-at-rogers-iphone-voicedata-rates/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 19:32:54 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[data rates]]></category>
		<category><![CDATA[Fido]]></category>
		<category><![CDATA[GSM]]></category>
		<category><![CDATA[iPhone 3G]]></category>
		<category><![CDATA[Rogers]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=180</guid>
		<description><![CDATA[<p>Rogers announced their new voice &#038; data rates this past weekend, and boy did it create quite the stir, first on the internet, and then getting coverage in mainstream newspaper and television news.  So what&#8217;s the big deal?  Essentially, that Rogers voice/data rate plans are some of the least competitive rates available in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://artofgeek.com/wp-content/uploads/2008/07/rogers_money_pile.jpg" alt="Rogers Money Pile" width=300px /></a>Rogers announced their new voice &#038; data rates this past weekend, and boy did it create quite the stir, first <a href="http://www.ruinediphone.com/">on the internet</a>, and then getting coverage in mainstream newspaper and television news.  So what&#8217;s the big deal?  Essentially, that Rogers voice/data rate plans are some of the least competitive rates available in the industrialized world, and despite monthly plans ranging as high as $115/month for the top-end plan, that still doesn&#8217;t get you unlimited data.  Unlike many other iPhone carriers, Rogers simply doesn&#8217;t offer unlimited data for the iPhone, period.</p>
<p>Rogers and Fido (owned by Rogers) essentially have identical service plans, which can be seen <a href="http://www.rogers.com/web/content/wireless-products/iphone_voice_data_packages">here</a> and <a href="http://www.fido.ca/portal/promos/personal/iphone/en/promotion.jsp">here</a> respectively. While the lack of an unlimited data plan on the surface might seem like a major issue, it&#8217;s important to put things in perspective.  Since no one can theoretically USE unlimited data in any given month, having an unlimited plan is really just a way to make people feel at ease that they will NEVER incur any data usage charges.  One can argue that the same thing is accomplished by simply having a plan that has a high enough data cap that you&#8217;d never have to worry about hitting it.<span id="more-180"></span></p>
<p>Unfortunately, Rogers data plans don&#8217;t even come close to satisfying this, but not all is doom and gloom.  With the entry-level data package&#8217;s 400MB per month of included data, you could check email, weather and stocks several times per day and do a bit of web surfing once a week or so and be fine.  Just avoid using YouTube, the iTunes Store or AppStore until you have a WiFi connection.  For those of you willing to dish out $115 to get the 2GB plan however, things don&#8217;t fare much better though.  Sure, you can do the above activities 5x more than those on the $60/400MB plan, and even enjoy a bit of daily YouTube or iTunes downloads while on the go, don&#8217;t expect to be able to watch YouTube videos every day to pass your 30 minute train ride to and from work, because you&#8217;ll use up that 2GB of data real fast.</p>
<p>OK, so our data plans suck compared to the US, who get unlimited data for $30/month.  So while we have a bit of breathing room to enjoy the features of the iPhone, we&#8217;re still stuck keeping an eye on our usage if we want to avoid expensive overage charges.  If it were any other cell phone, we wouldn&#8217;t mind so much, but the iPhone is such an internet-rich device, and so fun and useful, that it really is a shame that we don&#8217;t have plans that let us truly use and enjoy the device.</p>
<p>So what else is there to complain about?  Well, the lack of call display and a decent amount of included sent SMS text messages (only 75 on the $60 plan), which requires you to spend an extra $15 or more on an &#8220;iPhone value pack&#8221;.  SMS texting is another one of the iPhone&#8217;s strengths, with it&#8217;s IM-like interface.  Once again, Rogers iPhone plan stifles a great iPhone feature, rather than encouraging it&#8217;s use.  The lack of call display is frankly a joke in this day and age.  I&#8217;m surprised they aren&#8217;t charging us extra for &#8220;touch tone&#8221; service too.</p>
<p>Then there&#8217;s the matter of the unlimited evenings and weekends included with every plan.  Rogers defines &#8220;evenings&#8221; as after 9pm.  Me thinks they&#8217;re stretching the definition of evening pretty far.  To have your evenings start at a more reasonable 6pm is going to cost you an extra $20/month for an iPhone Value Pack that includes call display and 10,000 sent text messages.  Gee, thanks!</p>
<p>One positive to the Rogers and Fido plans is the inclusion of unlimited WiFi access at any Rogers or Fido WiFi hotspot.  For those living in urban areas where these hotspots are readily available, this will be a major benefit, but will be hit and miss depending on the individual.  Most people will likely not make any use of this feature whatsoever though, which means it adds very little value to the average user.</p>
<p>These plans frankly weren&#8217;t a big surprise to me.  Rogers is in a very different market situation here in Canada than say AT&#038;T south of the border.  AT&#038;T was in a floundering position and desperate to increase it&#8217;s market share, with other providers competing on the exact same GSM technology.  Here in Canada, Rogers is the only GSM provider, and is already in a dominant position.  They have zero competition for the iPhone, period.  Bell and Telus&#8217; networks are just not compatible with the iPhone&#8217;s GSM standard.  The situation isn&#8217;t going to get any better until either Bell or Telus convert their network to GSM, or Apple releases a version of the iPhone that&#8217;s compatible with the CDMA/EVDO technology that Bell and Telus use.</p>
<p>If there&#8217;s any upside to Rogers iPhone data plans however, it has to be that they&#8217;re a <em>major</em> improvement over any previous data plans Rogers has offered before.  When I <a href="http://artofgeek.com/2007/09/12/iphone-unlocked-and-operating-on-rogers-wireless-in-canada/">first covered</a> using an unlocked iPhone in Canada back in September of last year, we were paying $10 for 10MB per month, on top of your voice plan, and 3¢ per KB thereafter!  To put that in perspective, it would have cost nearly $12,000 to use 400MB of data on that plan, which could lead to some nasty surprises for anyone not savvy enough to watch their usage.</p>
<p>Rogers overage charges are now a much more affordable 50¢ per MB for the first 60 MB, 3¢ per MB thereafter.  Meaning that an overage of 100MB that used to cost $3072 would now only cost $31.20.  It&#8217;s hard not to argue this isn&#8217;t a huge leap in the right direction.  If there&#8217;s anything to be positive about with the introduction of the iPhone to Canada, this has got to be it.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/07/03/a-closer-look-at-rogers-iphone-voicedata-rates/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPhone officially dated for Canada</title>
		<link>http://artofgeek.com/2008/06/16/iphone-officially-dated-for-canada/</link>
		<comments>http://artofgeek.com/2008/06/16/iphone-officially-dated-for-canada/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 12:45:46 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Fido]]></category>
		<category><![CDATA[iPhone 3G]]></category>
		<category><![CDATA[Rogers]]></category>

		<guid isPermaLink="false">http://artofgeek.com/?p=176</guid>
		<description><![CDATA[<p>Back at the end of April, I mentioned that Rogers had announced that they would be bringing the iPhone to Canada &#8220;later this year&#8221;.  For those who maybe missed the news, &#8220;Later this year&#8221; means July 11.  Yep, after just over a very long year of waiting, us Canadians will be able to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://artofgeek.com/wp-content/uploads/2008/06/iphone-3g-finally-eh.png" alt="iPhone 3G - Finally, Eh?" title="iPhone 3G - Finally, Eh?" width="300" height="190" class="alignleft size-full wp-image-179" />Back at the end of April, <a href="http://artofgeek.com/2008/04/30/rogers-bringing-iphone-to-canada-later-this-year/">I mentioned that</a> Rogers had announced that they would be bringing the iPhone to Canada &#8220;later this year&#8221;.  For those who maybe <a href="http://www.cbc.ca/technology/story/2008/06/09/tech-apple.html?ref=rss">missed the news</a>, &#8220;Later this year&#8221; means July 11.  Yep, after just over a very long year of waiting, us Canadians will be able to walk into our local Rogers or Fido store and buy the new <a href="http://www.apple.com/ca/iphone/">iPhone 3G</a>!</p>
<p>Rogers, in what seems like a feeble attempt to instill suspense, is advertising that &#8220;Something really big is coming July 11th&#8221;, as though we&#8217;re all supposed to be in the dark about what that something is.  Someone should ring up Ted Rogers and let him know that mystery teaser ads are much less effective if everyone already knows what it is.<span id="more-176"></span>  OK, ribbing aside, clicking &#8220;Learn more&#8221; brings you to the Rogers press release archive, and if you scroll down to June 9, you just might find <a href="http://micro.newswire.ca/release.cgi?rkey=1606099873&#038;view=5804-0&#038;Start=0">this press release</a> which confirms the mystery device is the iPhone 3G.  Pricing is listed as $199 and $299 for the 8GB and 16GB models respectively, with a 3 year contract.</p>
<p><img src="http://artofgeek.com/wp-content/uploads/2008/06/big-static-526-150.gif" alt="Rogers \&quot;Something Really Big\&quot; web banner." title="Rogers Something Really Big" width="500" height="142" class="aligncenter" /></p>
<p>No plan pricing details are provided, so looks like we&#8217;ll have to wait a bit to find out how much they&#8217;re charging for data and if you have to sign a 3 year data contract in order to purchase the iPhone 3G at the discounted price.</p>
<p>Fido&#8217;s website on the other hand, is being ultra-original by announcing &#8220;Something really <em>cool</em> is coming July 11th&#8221;.  See what they did there?  They used the word &#8220;cool&#8221; in place of &#8220;big&#8221;, and suddenly they have a completely original advertising campaign.  Somebody worked overtime to come up with that I&#8217;m sure.  Clicking the ad on Fido&#8217;s website <a href="http://www.fido.ca/portal/promos/personal/iphone/en/promotion.jsp">links to this press release</a> which details the same handset prices as Rogers, but no additional details.</p>
<p><img src="http://artofgeek.com/wp-content/uploads/2008/06/banniere-web_an.jpg" alt="Fido \&quot;Something Really Cool\&quot; web banner" title="Fido Something Really Cool" width="500" height="189" class="aligncenter" /></p>
<p>Now the question that I&#8217;m sure many of my readers really want to know:  Once the iPhone officially comes to Canada, will owners of unlocked 1st gen iPhones be able to use their devices on Rogers or Fido without having to hack them anymore?  In other words, will we be able to install the firmware 2.0 update, plug in our SIM card and activate our iPhones through iTunes or will we have to keep playing the firmware update hack game?  I will be sure to update you all once I find out, but we probably won&#8217;t know for sure until shortly after July 11.</p>
<p>So, are you planning on buying the iPhone 3G once it comes out in Canada?  If so, are you new to iPhone or will you be upgrading from a hacked iPhone?  Let us know in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/06/16/iphone-officially-dated-for-canada/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Time Machine &amp; AirPort Update breaks 10.5.2 Combo Update [Update 2]</title>
		<link>http://artofgeek.com/2008/03/25/time-machine-airport-update-changes-mac-os-x-built-number/</link>
		<comments>http://artofgeek.com/2008/03/25/time-machine-airport-update-changes-mac-os-x-built-number/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 16:28:42 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Combo Update]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/03/25/time-machine-airport-update-changes-mac-os-x-built-number/</guid>
		<description><![CDATA[<img src='http://artofgeek.com/wp-content/uploads/2008/03/about_this_mac_build_9c7010.png' alt='About This Mac 9C7010' class="alignleft" /><a href="http://artofgeek.com/2008/03/25/time-machine-airport-update-changes-mac-os-x-built-number/#update_2">[Update 2]</a> So I recently attempted to re-apply the Mac OS X 10.5.2 Combo update to my MacBook Pro in the hopes that it would fix an annoying little bug that is preventing the contents of my Desktop folder to get dynamically updated.  To my surprise, when I went to select my boot volume to install on, the Installer wouldn't let me continue stating:
<blockquote>"You cannot install Mac OS X Update Combined on this volume.  This volume does not meet the requirements for this update."</blockquote>
At first I thought my OS installation was corrupted, but before I reached for my Leopard install DVD to do a clean install I decided to investigate whether one of the recent Apple software updates may have caused the problem.  Read on to see the results of my [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://artofgeek.com/2008/03/25/time-machine-airport-update-changes-mac-os-x-built-number/#update_2">[Update 2]</a> So I recently attempted to re-apply the Mac OS X 10.5.2 Combo update to my MacBook Pro in the hopes that it would fix an annoying little bug that is preventing the contents of my Desktop folder to get dynamically updated.  To my surprise, when I went to select my boot volume to install on, the Installer wouldn&#8217;t let me continue stating:</p>
<blockquote><p>&#8220;You cannot install Mac OS X Update Combined on this volume.  This volume does not meet the requirements for this update.&#8221;</p></blockquote>
<p><img src='http://artofgeek.com/wp-content/uploads/2008/03/1052_combo_installer_screenshot.png' alt='Combo Installer Screenshot' class="aligncenter" /></p>
<p>At first I thought my OS installation was corrupted, but before I reached for my Leopard install DVD to do a clean install I decided to investigate whether one of the recent Apple software updates may have caused the problem.  I hadn&#8217;t installed the recent Safari, Security and Time Machine &#038; AirPort updates on my Mac mini, so I installed each, one at at time, and then attempted to install the 10.5.2 Combo update after each to see if at any point it would give me the same problem I&#8217;m having on my MacBook Pro. I installed the Safari update first, followed by the latest security update, after both, I had no problems selecting the boot volume for the 10.5.2 Combo Update, but after installing the Time Machine &#038; AirPort Update, the Combo update now said my mini&#8217;s boot volume did not meet the requirements for the update, just like my MacBook Pro!</p>
<p>A quick search through Apple&#8217;s Support forums didn&#8217;t reveal any other reports about this issue, so I <a href="http://discussions.apple.com/thread.jspa?threadID=1451651">posted a topic there</a> and it quickly got responses from others who have run into the same problem.  One post lead us to the culprit, which was that the Time Machine &#038; AirPort Update changed the build number of Mac OS X from 9C31 to 9C7010.  Since the latest Combo Update available as of this writing is for build 9C31, it won&#8217;t let you install overtop of the newer build.</p>
<p>So great, we know what the cause is, but what&#8217;s the solution?  Unfortunately, we&#8217;ll have to wait until Apple either releases a new Combo updater for build 9C7010, or for Mac OS X 10.5.3 to be released, which will have a new Combo Updater.  Otherwise, right now, the only workaround if you really need a reinstall to fix a problem would be an Archive and Install or Format and Install using your original Leopard install DVD&#8211;which isn&#8217;t a solution at all.</p>
<p>Thankfully my problem is minor enough that I can wait, but for those who are having bigger issues, and for my own peace of mind, I hope we don&#8217;t have to wait too long for a proper solution from Apple.</p>
<hr />
<a name="update_1"></a><strong><em>Update 1 &#8211; 4/10/2008, 5:00 pm:</em></strong> I tried a workaround which was discussed in <a href="http://discussions.apple.com/thread.jspa?threadID=1452904&#038;start=60&#038;tstart=0">this Apple support forum topic</a> which seems to have worked for me.  Before you try this yourself, please note that I take no responsibility for any damage you do to your computer.  Proceed at your own risk, and before you try this, make sure you have a good backup!  I also only recommend trying this if you are comfortable working in Terminal.</p>
<ol>
<li>Enter the following command in Terminal:<br />
<code>sudo defaults write /System/Library/CoreServices/SystemVersion ProductBuildVersion 9C31</code><br />
 This is all one command.  Enter your admin password when prompted and hit return.<br />
If you&#8217;re typing manually, be 100% certain you type it correctly with all spaces and upper/lowercase letter exactly as shown.  If you are going to totally screw up your system, this is the most likely point it will happen!  This will change your OS X build number to the previous build so the Combo update will install.</li>
<li>Correct permissions on /System/Library/CoreServices/SystemVersion.plist using this command:<br />
<code>sudo chmod 644 /System/Library/CoreServices/SystemVersion.plist</code><br />
This is so you don&#8217;t get a javascript error trying to run Installer.  Again, this is all one command and be certain you type it exactly as shown, otherwise you could really screw something up.</li>
<li>Install the <a href="http://www.apple.com/support/downloads/macosx1052comboupdate.html">Mac OS X 10.5.2 Combo update</a> and reboot.</li>
<li>Install the <a href="http://www.apple.com/support/downloads/timemachineandairportupdatesv10.html">Time Machine &#038; AirPort Update</a> and reboot.</li>
<li>Install the <a href="http://www.apple.com/support/downloads/securityupdate2008002v11leopard.html">Security Update 2008-002 v.1.1 (Leopard)</a> and reboot.</li>
<li>Install the <a href="http://www.apple.com/support/downloads/safari311.html">Safari 3.1.1 Update</a> and reboot.</li>
<li>Repair disk permissions using Disk Utility.</li>
</ol>
<p>Everything seems to be working right so far, and I&#8217;ve confirmed that the permissions on /System/Library/CoreServices/SystemVersion.plist are correct.  You can check by entering the following command in Terminal:<br />
<code>ls -l /System/Library/CoreServices/SystemVersion.plist</code></p>
<p>The result should look exactly like this (although the date/time may be different):<br />
<code>-rw-r--r--  1 root  wheel  479 Mar 13 14:03 /System/Library/CoreServices/SystemVersion.plist</code></p>
<p>Good luck and if you&#8217;re brave enough to try this, post your results in the comments.</p>
<hr />
<a name="update_2"></a><strong><em>Update 2 &#8211; 5/28/2008, 2:10 pm:</em></strong> Apple has released the <a href="http://www.apple.com/support/downloads/macosx1053comboupdate.html">Mac OS X 10.5.3 Combo update</a>.  You&#8217;re better off installing the new version unless you have a specific application compatibility issue with 10.5.3.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/03/25/time-machine-airport-update-changes-mac-os-x-built-number/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Classic Lode Runner, on your Mac OS X Dashboard!</title>
		<link>http://artofgeek.com/2008/03/03/classic-lode-runner-on-your-mac-os-x-dashboard/</link>
		<comments>http://artofgeek.com/2008/03/03/classic-lode-runner-on-your-mac-os-x-dashboard/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 00:18:45 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Apple II]]></category>
		<category><![CDATA[AppleIIGo]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[emulation]]></category>
		<category><![CDATA[Lode Runner]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/03/03/classic-lode-runner-on-your-mac-os-x-dashboard/</guid>
		<description><![CDATA[<p>[Update 2] Mention &#8220;Lode Runner&#8221; to any veteran computer user and chances are they&#8217;ll not only be familiar with it, but they&#8217;ll have fond memories of playing it.  It&#8217;s been remade so many times and for so many platforms over the years that many younger gamers are probably familiar with it as well.  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://artofgeek.com/wp-content/uploads/2008/03/lode_runner_widget.png" alt="Lode Runner Dashboard Widget" /><a href="http://artofgeek.com/2008/03/03/classic-lode-runner-on-your-mac-os-x-dashboard/#update_2">[Update 2]</a> Mention &#8220;Lode Runner&#8221; to any veteran computer user and chances are they&#8217;ll not only be familiar with it, but they&#8217;ll have fond memories of playing it.  It&#8217;s been remade so many times and for so many platforms over the years that many younger gamers are probably familiar with it as well.  It was after the topic came up with a friend and fellow computer veteran earlier today that I became determined to find a version of the game I could run on my Mac.  While there are one or more Lode Runner-like shareware games for Mac OS X, it became clear to me after a bit of searching that if I wanted the original Lode Runner, I was going to have to run it under emulation.</p>
<p>The world of emulators on the Mac is very diverse.  I had a lot of choices available to me of which version of Lode Runner I wanted to run, on which computing platform and using which emulator.  I ended up choosing the original Lode Runner game running on the Apple II, and rather than using a traditional emulator, I decided to go with one that came packaged as a Dashboard widget, that way I could quickly jump into a game of Lode Runner no matter what I was in the middle of doing, and just as quickly put it away when I&#8217;ve had my fill.  Following these step by step instructions, you&#8217;ll be able to get your Lode Runner on too.<span id="more-148"></span></p>
<ol>
<li>Download the <a href="http://www-personal.umich.edu/~mressl/appleiigo/pub/Dashboard%20Widget/AppleIIGo-1.0.1.wdgt.zip">AppleIIGo Dashboard widget</a> from the developer&#8217;s website and then click &#8220;Install&#8221; and &#8220;Keep&#8221; when Mac OS X prompts you asking if you want to download and install the widget.</li>
<li>Download the Apple IIe ROM image from <a href="http://mirrors.apple2.org.za/ftp.apple.asimov.net/emulators/rom_images/apple_iie_rom.zip">here</a>.  Extract the zip file if Mac OS X doesn&#8217;t do this for you automatically.</li>
<li>Download Lode Runner for the Apple II from <a href="http://home.mieweb.com/jsfiles/lrfiles/ap_lode.zip">here</a> and unzip it.</li>
<li>Call up Dashboard, and click the bottom right hand corner of the AppleIIGo widget where the little &#8220;<em>i</em>&#8221; is.</li>
<li>On the backside of the AppleIIGo widget, click the &#8220;Disks&#8221; button, followed by the &#8220;ROMs&#8221; button.  Two Finder windows will open. Click the &#8220;Done&#8221; button to flip the widget over.</li>
<li>Drag the file APPLE2E.ROM file that you unstuffed in step 2 to the Finder window named &#8220;ROMs&#8221;.</li>
<li>Drag the file named loderunner.dsk that you downloaded and unzipped in step 3 to the Finder window named &#8220;Disks&#8221;.</li>
<li>Call up Dashboard again and click on the little &#8220;<em>i</em>&#8221; to bring up the AppleIIGo settings again.</li>
<li>Select &#8220;loderunner.dsk&#8221; from the &#8220;Disk Drive 1:&#8221; popup menu, and then click the &#8220;Restart&#8221; button.</li>
<li>Play Lode Runner.</li>
</ol>
<p>Here are the controls:</p>
<table border="0">
<tbody>
<tr>
<th>Action</th>
<th>Key</th>
</tr>
<tr>
<td>Up, Down, Left, Right</td>
<td>I, K, J, L</td>
</tr>
<tr>
<td>Dig left, Dig right</td>
<td>U, O</td>
</tr>
<tr>
<td>Stop moving</td>
<td>Space</td>
</tr>
<tr>
<td>Switch to keyboard controls</td>
<td>Ctrl-K</td>
</tr>
<tr>
<td>Switch to joystick controls</td>
<td>Ctrl-J</td>
</tr>
<tr>
<td>Suicide</td>
<td>Ctrl-A</td>
</tr>
<tr>
<td>End game</td>
<td>Ctrl-R</td>
</tr>
<tr>
<td>Pause game</td>
<td>Esc or Stop or Ctrl-M</td>
</tr>
<tr>
<td>View High Scores</td>
<td>Return</td>
</tr>
</tbody>
</table>
<p>A more complete list of controls and commands are available <a href="http://entropymine.com/jason/lr/misc/controls.html">here</a>, including editing commands for creating/modifying your own levels.</p>
<p>Hit any key to start a game.  Collect all the barrels until the exit ladder appears, then climb up the ladder to move onto the next level, all while avoiding the bad guys chasing you.  Remember that bad guys will pick up barrels they walk over, which they will drop sometimes on their own or when they fall into one of the holes you&#8217;ve dug.</p>
<p>The only two caveats with playing Lode Runner like this is that there is no sound (the AppleIIGo emulator doesn&#8217;t support sound), and the screen can be a bit small.  Those shouldn&#8217;t really get in the way of some good old school fun though, since the sound isn&#8217;t important to gameplay, and the graphics are simple enough that you shouldn&#8217;t have a problem seeing all the detail you need.  Of course, you can theoretically play any Apple II game using the AppleIIGo Dashboard widget.  If you successfully get any other classics running, tell our readers about it in the comments!</p>
<p>Have fun, and let me know what level you manage to reach.  So far, I&#8217;m up to level 5.</p>
<hr />
<a name="update_1"></a><strong><em>Update 1 &#8211; 2/27/2009, 11:00 am:</em></strong> Updated the download link for the Apple IIe ROM because it looks like the original site is no longer live.</p>
<hr />
<a name="update_2"></a><strong><em>Update 2 &#8211; 3/24/2009, 12:25 pm:</em></strong> If you want to download other Apple II classic game disks, check out <a href="http://www.virtualapple.org/">Virtual Apple 4.0</a>. This is an awesome website with a great archive and a fully functional web based Apple II emulator! So if you don&#8217;t feel like messing with the Dashboard trick, or want to get your fix when you&#8217;re away from your Mac, you can play all those classic Apple II games anywhere you have internet access!</p>
<p>To play or download an Apple II game at Virtual Apple, click on a letter at the top to browse their archive, then click the title of a game you want to play/download. The download links are in the right hand column.</p>
<p>If you get any other games working in the Apple IIGo Dashboard widget, let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/03/03/classic-lode-runner-on-your-mac-os-x-dashboard/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>Set Safari&#8217;s window size with one click of the mouse</title>
		<link>http://artofgeek.com/2008/02/29/set-safaris-window-size-with-one-click-of-the-mouse/</link>
		<comments>http://artofgeek.com/2008/02/29/set-safaris-window-size-with-one-click-of-the-mouse/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 03:36:48 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/02/29/set-safaris-window-size-with-one-click-of-the-mouse/</guid>
		<description><![CDATA[<p>OK, here&#8217;s a hint I think a lot of you Windows switchers are going to love, and I&#8217;m sure more than a few long time Mac users will appreciate as well.  I love Safari.  I think it&#8217;s the best web browser out there.  My primary Mac is a MacBook Pro that I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://artofgeek.com/wp-content/uploads/2008/02/safari-window-size.png" alt="Safari window size" />OK, here&#8217;s a hint I think a lot of you Windows switchers are going to love, and I&#8217;m sure more than a few long time Mac users will appreciate as well.  I love Safari.  I think it&#8217;s the best web browser out there.  My primary Mac is a MacBook Pro that I use in a dual monitor setup at home, connected to a 24&#8243; widescreen monitor, and on it&#8217;s own when at work or on the road.  I use Safari all the time, no matter where I&#8217;m at, and one thing that can be annoying is having to manually move/resize my Safari window whenever I switch between single and dual monitor set up.  Since Safari is always running, this is something I have to deal with at least twice a day.</p>
<p>For the longest time I got around this by using an AppleScript, which I placed inside my ~/Library/Scripts/Applications/Safari/ folder (where &#8220;~&#8221; represents my home folder).  Then whenever I&#8217;d switch monitor setups, I&#8217;d simply run that script from within Safari via the AppleScript menu on the top right side of the menubar.  The AppleScript menu can be enabled using AppleScript Utility located in the /Applications/AppleScript/ folder.<span id="more-143"></span> For those interested, this is the script I used:</p>
<ul> <code>tell application "Safari"<br />
set the properties of front window to {bounds:{1, 23, 1200, 1194}}<br />
end tell</code></ul>
<p>You can copy and past that code into Script Editor and save as a script with an appropriate name like &#8220;Set Window Size &#8211; External Display&#8221;.  Just substitute your own values inside the curly brackets.  The values correspond with x,y screen coordinates measured in pixels from the top-left edge of the screen, and indicate the location of the top left and bottom right corners of the window.  In this case, my script told Safari to set the top left corner of the front window to 1 pixel from the left and 23 pixels down (to accomodate the menu bar), and the bottom right corner to 1200 pixels from the left and 1194 pixels down.</p>
<p>This script has worked well for me for several years, but it wasn&#8217;t quite as convenient as I would have liked since it required me to navigate and click on the Script menu, then click on the script I wanted to run.  Being the lazy computer user I am, I&#8217;ve longed for a solution that would take one less click and would be even easier to activate.  Then one day, I came across a useful hint in the ehmac.com forums about this simple javascript that you could save as a bookmark that would make Safari&#8217;s window full-screen:</p>
<ul><code>javascript:self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);</code></ul>
<p>This was in response to a Windows switcher who really missed a simple way to make his browser window go full screen like Windows does when you click the maximize window.  Thought it was pretty handy, so I added it to my Safari Bookmarks bar and called it &#8220;Full Screen&#8221; and left it there untouched for several weeks.  Turns out I never want my Safari window to fill my screen since my displays are all fairly large and wide.</p>
<p>I guess today I had an epiphany.  Lightning had just struck my brain (that had to hurt)*.  If a Javascript can set my window full-size, then it should be able to set the window to any arbitrary size.  Looking at the full screen javascript, it was ridiculously obvious how to modify it to fit my needs.  Simply substitute the desired width and height in the resizeTo section like so:</p>
<ul><code>javascript:self.moveTo(0,0);self.resizeTo(1200,1170);</code></ul>
<p>You could even specify a custom window position by changing the x,y coordinates in the moveTo section if you wish.</p>
<p><img class="alignright" src="http://artofgeek.com/wp-content/uploads/2008/02/bookmark_bar_icons.png" alt="Bookmark bar icons" />This in itself is quite brilliant, but still a bit inelegant having bookmarks named &#8220;Full Screen&#8221; and &#8220;Big Monitor&#8221; taking up all that space on your Bookmark bar.  So I came up with some nice simple bookmark names that visually represented what I wanted to accomplish in a way that would look a bit like an icon, and take a minimal amount of space on my bookmark bar, as seen in the image to the right.  So from left to right, I have |-| to resize the Safari window for my small display, |+| to resize the window for my large display and |‹ ›| to resize the window full screen.</p>
<p>This is how they appear in my Bookmarks window:</p>
<div class="wp-caption aligncenter" style="width: 464px"><a href="http://artofgeek.com/wp-content/uploads/2008/02/window_bookmarks.png" target="_blank"><img class=" " style="border: 1px solid black;" src="http://artofgeek.com/wp-content/uploads/2008/02/window_bookmarks.png" border="1" alt="Window bookmarks" width="454" height="50" /></a><p class="wp-caption-text">(Click to enlarge)</p></div>
<p>Just to clarify, the &#8220;|&#8221; character is achieved by pressing shift+\, and the ‹ › characters are created by pressing shift+option+3 and shift+option+4 separated by a space on a Mac.  These symbols are smaller than the standard less than and greater than symbols &#8220;&lt; &gt;&#8221; and make for a nicer looking icon in my opinion.  I was also trying to make all three &#8220;icons&#8221; appear as similar in size as possible for consistency sake and to strengthen the illusion that they are icons.  What you name your bookmarks doesn&#8217;t make any difference to how they work, so be creative if my choices don&#8217;t fit your likes or needs.  If you think you&#8217;ve improved on my names, let me know in the comments!</p>
<p>Having one-click access to these controls directly within the window is not only more convenient, but also more intuitive.  It may not seem like a huge improvement over my previous AppleScript solution, but when you do the same operation multiple times a day, every day of your life, all those clicks really add up.  Sometimes, it&#8217;s the little things that make all the difference.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/02/29/set-safaris-window-size-with-one-click-of-the-mouse/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Show your colours, Canadian iPhone owners!</title>
		<link>http://artofgeek.com/2008/02/08/show-your-colours-canadian-iphone-owners/</link>
		<comments>http://artofgeek.com/2008/02/08/show-your-colours-canadian-iphone-owners/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 00:42:19 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Canadian]]></category>
		<category><![CDATA[flag]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/02/08/show-your-colours-canadian-iphone-owners/</guid>
		<description><![CDATA[<p>Hey there fellow Canadians!  Do you have an unlocked iPhone operating on a Canadian GSM network?  If the answer is yes, then stand proud as you&#8217;re a member of an elite group of people who are willing to stop at nothing to talk, text, surf, work and play on the best mobile phone [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2008/02/iphone-canadian.png' alt='Canadian iPhone' class="alignright" />Hey there fellow Canadians!  Do you have an unlocked iPhone operating on a Canadian GSM network?  If the answer is yes, then stand proud as you&#8217;re a member of an elite group of people who are willing to stop at nothing to talk, text, surf, work and play on the best mobile phone out there!  So what better way to show others you&#8217;re proud to be part of this distinguished group but to plaster the Canadian flag across your screen for all the world (or just passers-by) to see!</p>
<p>I did some searching and couldn&#8217;t find a Canadian flag wallpaper anywhere on the web, so I decided to take matters (and PhotoShop) into my own hands and create one.  I figured I&#8217;m probably not the only one who has wanted to do this, so I&#8217;m making my simple creation available for others to download and enjoy.<span id="more-131"></span></p>
<p><a href='http://artofgeek.com/wp-content/uploads/2008/02/canadian-flag-320x480.png' title='Canadian Flag iPhone Wallpaper' target="_blank"><img src='http://artofgeek.com/wp-content/uploads/2008/02/canadian-flag-320x480.thumbnail.png' alt='Canadian Flag iPhone Wallpaper' class="alignleft" /></a>So how do you get it on your iPhone?  Just right-click (or ctrl+click) the image on the left and choose &#8220;Save linked file&#8221; (or whatever the equivalent is on your browser/OS of choice) or click the image to open the full size version in a new window and drag it to your Desktop.  Then add it to iPhoto and put it in a Photo Album that you have set to sync with your iPhone in iTunes and sync your iPhone to transfer it over.  On the iPhone, open Settings&#8211;>Wallpaper and choose the image from the appropriate photo album and voila!  Windows users, just do the equivalent steps for Windows using your photo organization/sync method of choice.</p>
<p>More advanced users may choose to copy the file directly to the iPhone&#8217;s wallpaper folder using scp or sftp.  If you fall into this category, then you already know what you&#8217;re doing, so you don&#8217;t need me to spell it out for you.</p>
<p>Enjoy!</p>
<p>P.S. If you&#8217;re wondering how I got the screenshot of the iPhone lock screen, I followed <a href="http://blogs.zdnet.com/ip-telephony/?p=2767">this hint from ZDNet</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/02/08/show-your-colours-canadian-iphone-owners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unlock for 1.1.2/1.1.3 out of the box iPhones released [Update 1]</title>
		<link>http://artofgeek.com/2008/02/08/unlock-for-112113-out-of-the-box-iphones-just-released/</link>
		<comments>http://artofgeek.com/2008/02/08/unlock-for-112113-out-of-the-box-iphones-just-released/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 16:48:57 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[unlock]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/02/08/unlock-for-112113-out-of-the-box-iphones-just-released/</guid>
		<description><![CDATA[<p>[Update 1] Good news for those who have been waiting for an unlock solution for iPhones that ship with firmware 1.1.2 or 1.1.3 out of the box.  An iPhone hacker named George Hotz (a.k.a. geohot) has just posted an unlock solution for you.</p>
<p>Details and instructions are a little technical though, so unless you understand [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2008/02/112_113_oob_iphones_unlock.png' alt='1.1.2, 1.1.3 OOB iPhones unlocked' class="alignleft" /><a href="http://artofgeek.com/2008/02/08/unlock-for-112113-out-of-the-box-iphones-just-released/#update_1">[Update 1]</a> Good news for those who have been waiting for an unlock solution for iPhones that ship with firmware 1.1.2 or 1.1.3 out of the box.  An iPhone hacker named George Hotz (a.k.a. geohot) has <a href="http://iphonejtag.blogspot.com/2008/02/11246unlock-good-enough-for-prize.html">just posted an unlock solution</a> for you.</p>
<p>Details and instructions are a little technical though, so unless you understand everything that he says in his blog post, you might want to hold off until someone posts an easy to follow tutorial and we have more reports from people who have done it successfully.  Reading through the comments on geohot&#8217;s blog post, someone posted <a href="http://www.hackint0sh.org/forum/showthread.php?t=28441&#038;page=29">this link to one page</a> in a very long thread on the Hackint0sh forums which explains things step by step, but please note that I haven&#8217;t tried this myself.  I cannot vouch for the quality of the unlock or the accuracy of the tutorials, so proceed at your own risk.<br />
<span id="more-128"></span><br />
Most users will want to hold off until someone packages this unlock into a simple one-button iPhone application.  I&#8217;ll post an update once I&#8217;ve seen one.</p>
<hr />
<a name="update_1"></a><strong><em>Update 1 &#8211; 2/8/2008, 2:12 pm:</em></strong>  A reported success story was posted in <a href="http://www.ehmac.ca/ipod-itunes-iphone-apple-tv/61282-bootloader-4-6-hacked-sw-unlock-1-1-2otb.html">this ehmac.ca thread</a>.  They did a pretty good job of documenting the steps they used, so for those brave souls who want to try it, hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/02/08/unlock-for-112113-out-of-the-box-iphones-just-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rogers new $20 unlimited mobile browsing plan an error? [Update 5]</title>
		<link>http://artofgeek.com/2008/02/05/rogers-new-20-unlimited-mobile-browsing-an-error/</link>
		<comments>http://artofgeek.com/2008/02/05/rogers-new-20-unlimited-mobile-browsing-an-error/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 18:52:13 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Communicate Value Pack]]></category>
		<category><![CDATA[data plan]]></category>
		<category><![CDATA[Rogers]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/02/05/rogers-new-20-unlimited-mobile-browsing-an-error/</guid>
		<description><![CDATA[<p>[Update 5] AppleInsider&#8217;s report today on a new Rogers wireless $20 unlimited on-device browsing package called the $20 Communicate Value Pack got me super excited about finally having a data plan worthy of my iPhone:</p>
<p>Canadian wireless carrier Rogers Communications, often criticized for its exorbitant data rates, has just introduced a $20 per month unlimited data [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2008/02/the-plan-is-a-lie.png' alt='The plan is a lie!' class="alignright" /><a href="http://artofgeek.com/2008/02/05/rogers-new-20-unlimited-mobile-browsing-an-error/#update_5">[Update 5]</a> <a href="http://www.appleinsider.com/articles/08/02/05/rogers_unlimited_data_plan_an_inroad_for_iphone_in_canada.html">AppleInsider&#8217;s report today</a> on a new Rogers wireless $20 unlimited on-device browsing package called the $20 Communicate Value Pack got me super excited about finally having a data plan worthy of my iPhone:</p>
<blockquote><p>Canadian wireless carrier Rogers Communications, often criticized for its exorbitant data rates, has just introduced a $20 per month unlimited data plan that could knock out one more barrier to an official iPhone launch in Canada.</p>
<p>The Toronto, Ontario-based carrier said customers could start adopting the new plan, dubbed the $20 Communicate Value Pack, beginning today. In addition to unlimited on-device mobile browsing, it also offers 2500 standard outgoing text messages, 1000 outgoing picture or video messages, call display and voicemail.</p></blockquote>
<p>I immediately called Rogers to find out more about the package and sign up if it was true.  I was connected with a sales rep who seemed adamant that the unlimited browsing was limited to a 3 month promotion period, afterwhich it was limited to 5MB of data.<span id="more-120"></span>  So I jumped on Rogers website and found the plan listed exactly as AppleInsider had reported <a href="http://www.rogers.com/web/content/wireless-plans/essentials?content10=compare_value_packs#start">here</a> and <a href="http://www.rogers.com/web/content/wireless-plans/essentials?content10=20_comm#start">here</a>.  I took the following screenshots, just to prove it, in case the website changes:</p>
<p><img src='http://artofgeek.com/wp-content/uploads/2008/02/value-pack-table.png' alt='Value Pack Comparison Table' class="aligncenter" border="1" /></p>
<p><img src='http://artofgeek.com/wp-content/uploads/2008/02/value-pack-details.png' alt='$20 Value Pack Details' class="aligncenter" border="1" /></p>
<p>I pointed this out to the customer service rep, and she seemed to disagree on what the website actually said, continuing to argue that the unlimited browsing was for the promotion period only, no matter how hard I tried to convince her that the website didn&#8217;t mention that at all.  So I asked to speak with a supervisor.  After a good five minutes on hold, the supervisor finally came on and after she was sure where I was coming from, she put me on hold for another five to ten minutes before coming back, apologized sincerely and explained that it was an error on the Rogers.com website.  The plan is only a 5MB data plan, with unlimited browsing for only the first 3 months.  Apparently I raised a serious shitstorm over at Rogers HQ, because she said they were working to have the error corrected on the website, and thanked me for bringing it to their attention.</p>
<p>Needless to say, I was quite disappointed, but pleasantly surprised when she then offered to credit my current $10/10MB data plan AND give me unlimited data for the next 6 months.  I guess I couldn&#8217;t argue with that deal.  I would have rather been able to pay $20/month for unlimited data <em>forever</em>, but 6 months of unlimited data for free is a pretty good consolation prize.  I guess I was so pleasantly surprised because for once Rogers actually offered to try and make me happy without me having to get mad or threaten to cancel my service.  If I&#8217;m really lucky, Rogers will actually start offering an unlimited data plan for $20/month by the time my 6 month freebie expires. <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>If any of you actually manage to get the $20 plan as was advertised above, or a sweet payout like I got, please post your experience in the comments below or <a href="http://artofgeek.com/forums/viewtopic.php?p=7644#p7644">discuss it in the Art Of Geek forums</a>!</p>
<hr />
<strong><em>Update 1 &#8211; 2/6/2008, 2:35 pm:</em></strong>  Well, if the plan posting on Rogers website is a mistake, they&#8217;re taking their sweet ass time correcting it.  I&#8217;m starting to doubt the information provided by the rogers reps I spoke to, but I would caution anyone adding this plan to their iPhone to be extra careful that you have them confirm that it will work with an iPhone, and make a note of the person&#8217;s name and the date and time of your call to Rogers in case they try to bill you additional charges.  The fine print listed on the first page I link to above states the following:</p>
<blockquote><p>* Plan includes unlimited on-device mobile browsing only. Plan is available on select phones only (PDAs such as Blackberry or Windows Mobile devices, PC cards and non-Rogers certified devices are not eligible). Data usage incurred on ineligible devices, incurred while tethering (using device as wireless modem for laptop) or incurred using non-Rogers (3rd party) applications downloaded to your device will be subject to pay-per-use charges of 5 cents/KB.</p></blockquote>
<p>That sounds a lot like Rogers might very well be able to get out of honoring the &#8220;unlimited on-device browsing&#8221; for iPhone customers by claiming that it&#8217;s not one of the &#8216;select phones&#8217;, or is classified as a PDA, or is &#8216;a non-Rogers certified&#8217; device.  I have to say though, if they do want to play hardball, they&#8217;re going to have a bit of a legal issue if their customer service reps aren&#8217;t explaining this to customers and the fine print is missing from the 2nd link I posted detailing what&#8217;s included in the plan.</p>
<hr />
<strong><em>Update 2 &#8211; 2/11/2008, 4:05 pm:</em></strong> The news has finally been picked up by the mainstream media.  CBC.ca posted this article earlier today: <a href="http://www.cbc.ca/technology/story/2008/02/11/tech-rogers.html">Rogers &#8216;unlimited&#8217; cellphone plans draw fire</a>.</p>
<hr />
<strong><em>Update 3 &#8211; 2/11/2008, 4:25 pm:</em></strong> Ars Technica is covering the story as well: <a href="http://arstechnica.com/news.ars/post/20080211-rogers-unlimited-data-plan-not-so-unlimited-after-all.html">Rogers Unlimited data plan not so unlimited after all</a>.  Do you think if they get enough bad publicity over this that they might do something about it?  Yeah, I know, wishful thinking.  This is Rogers we&#8217;re talking about&#8230;</p>
<hr />
<strong><em>Update 4 &#8211; 2/12/2008, 6:20 pm:</em></strong> The Register, a little late to the party, has also picked up this story: <a href="http://www.theregister.co.uk/2008/02/12/rogers_new_unlimited_data_plan/">Rogers wraps &#8216;unlimited&#8217; mobile browsing in small print</a></p>
<hr />
<a name="update_5"></a><strong><em>Update 5 &#8211; 3/7/2008, 1:30 pm:</em></strong> Well, I just got screwed.  Just got my Rogers bill, and they have switched me to the $20 Communicate Value Pack, even though I had explicitly told them I didn&#8217;t want my plan to change.  Now I&#8217;m being told they can&#8217;t put things back the way they were because the $10 Mobile Internet Plan no longer exists.  They still can&#8217;t give me a straight answer about the iPhone and the $20 Communicate Value Pack or $7 Unlimited on-device mobile browsing.  So in 6 months when my unlimited data runs out, I&#8217;m probably going to have to either take a cut in data usage, or start paying more than I used to, maybe even for less data than I was getting before.  The Data representative told me they only have $30/8MB or $60/30MB plans available now.  This is progress?!?</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/02/05/rogers-new-20-unlimited-mobile-browsing-an-error/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>1.1.3 iPhone jailbreak released, iHackers rejoice!</title>
		<link>http://artofgeek.com/2008/01/26/113-iphone-jailbreak-released-hackers-rejoice/</link>
		<comments>http://artofgeek.com/2008/01/26/113-iphone-jailbreak-released-hackers-rejoice/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 19:30:33 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/01/26/113-iphone-jailbreak-released-hackers-rejoice/</guid>
		<description><![CDATA[<img src='http://artofgeek.com/wp-content/uploads/2008/01/firmware-113-jailbroken.png' alt='Firmware 1.1.3 jailbroken' class="alignright" /><a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/222526107/">News broke</a> late Thursday night on TUAW that a 1.1.3 jailbreak solution for Windows had been released to the public by Nate True, a former iPhone dev team member who went rogue.  About five hours later, <a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/222651410/">they reported that a Mac solution</a> had been released by Nate.

This most recent jailbreak solution is probably the easiest yet, although there's good reason for that:  it requires that your iPhone be running either firmware 1.1.1 or 1.1.2, and already be jailbroken with Installer.app already installed.  Regardless, I highly recommend that you read the appropriate article for your OS of choice, as well as all the user comments before undertaking it yourself.  Could save you from making a big mistake.

I took the plunge yesterday.  Continue reading for all the [...]]]></description>
			<content:encoded><![CDATA[<p><strong><u>Disclaimer of liability:</u> The information provided in this article is provided as-is and without warranty for information purposes only.  Art Of Geek is not responsible for any damage you may cause to your hardware or software as a result of this information.  Also please note that performing any of the steps outlined in this article will very likely void your iPhone&#8217;s warranty.  It&#8217;s recommended that you sync your iPhone and backup any photos or other data before performing any firmware updates or restores.  Proceed at your own risk!</strong></p>
<p><img src='http://artofgeek.com/wp-content/uploads/2008/01/firmware-113-jailbroken.png' alt='Firmware 1.1.3 jailbroken' class="alignright" /><a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/222526107/">News broke</a> late Thursday night on TUAW that a 1.1.3 jailbreak solution for Windows had been released to the public by Nate True, a former iPhone dev team member who went rogue.  About five hours later, <a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/222651410/">they reported that a Mac solution</a> had been released by Nate.</p>
<p>This most recent jailbreak solution is probably the easiest yet, although there&#8217;s good reason for that:  it requires that your iPhone be running either firmware 1.1.1 or 1.1.2, and already be jailbroken with Installer.app already installed.  Also note that as of this writing, the Mac version of the jailbreak is compatible with Intel Macs ONLY, so if you have a PowerPC Mac, you&#8217;ll have to wait until a universal version is released, or borrow a friend&#8217;s Intel Mac or Windows PC.  Regardless, I highly recommend that you read the appropriate article for your OS of choice, as well as all the user comments before undertaking it yourself.  Could save you from making a big mistake.</p>
<p>The jailbreak and instructions are available on <a href="http://cre.ations.net/blog/post/iphone-113-jailbreak-released">Nate True&#8217;s blog</a>, but I found a great tutorial on iClarified.com for both <a href="http://www.iclarified.com/entry/index.php?enid=606">Mac</a> and <a href="http://www.iclarified.com/entry/index.php?enid=604">Windows</a> which I used to do my upgrade.  Fellow Canadians and others wishing to use their unlocked iPhones on non-approved carriers will be happy to know that this jailbreak solution also handles activation, and software-based sim unlocks remain in place.  I can at least confirm that the iPhoneSimFree unlock I used to unlock my iPhone is still in place.</p>
<p>Before performing the update/jailbreak, I uninstalled any third party software leaving only SSH, BSD subsystem and Intaller.app on.  I recommend doing the same if you&#8217;re planning this operation as it appears that any software left on the iPhone will need to be uninstalled and installed again to function.  I also made sure to sync my iPhone one last time with iTunes to backup any data.  Once done, I began the update/jailbreak process.</p>
<p>For those interested and haven&#8217;t been following my experiences from day one, here are the deets on my iPhone:</p>
<ul>
<li>8GB model, firmware 1.0.2 out of the box.</li>
<li><a href="http://artofgeek.com/category/apple/iphone/page/2/">Jailbroken, activated and unlocked</a> with iNdependence and iPhoneSimFree.</li>
<li>Updated to firmware 1.1.1 and jailbroken/activated <a href="http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/">using iNdependence</a>.</li>
<li>Updated to firmware 1.1.2 and jailbroken/activated <a href="http://artofgeek.com/2007/11/19/somewhat-easy-iphone-firmware-112-unlockactivation-finally-available/">using the iPhone Dev Team solution</a>.</li>
<li>Operating on Rogers in Canada with a current Rogers SIM card.</li>
</ul>
<p>During the upgrade, when the jailbreak terminal script was attempting to download the 1.1.3 firmware from Apple, as well as the patch file, I got a curl error and it appeared as though the download failed.  Then, uploading the modified firmware to my iPhone completed nearly instantaneously, instead of taking minutes as per the instructions.  I confirmed my suspicion that something was wrong when I checked my Mac&#8217;s /tmp/data directory for the firmware file and patch files, and found both were 0KB in size.  Suspecting that the company firewall I was connecting from behind was preventing the script from downloading the files, I deleted the entire /tmp/data directory and started over from the beginning using a different internet connection and the files downloaded normally.</p>
<p>So if you are seeing curl errors and/or the firmware upload to your iPhone is happening too quickly, you might be having internet connectivity issues.  This is proof that this initial jailbreak solution doesn&#8217;t have many checks in place to make sure each step is successful before proceeding to the next step, which means you need to be extra vigilant that you&#8217;ve read and understand all the requirements and follow the instructions carefully!</p>
<p>My upgrade went pretty much as detailed in the iClarified tutorial, including the &#8220;Main script execution failed&#8221; error while installing the 1.1.3 soft upgrade, which many users are reporting, after which it appeared as though my iPhone was trying to shut down (got the spinning cogwheel).  After waiting at least 10 minutes for it to reboot, I force rebooted it by holding the sleep/wake and home buttons.  After rebooting, I was greeted with a friendly message explaining how to edit the home screen.  My iPhone was successfully updated, as can be seen from the Settings&#8211;>General&#8211;>About screen:</p>
<p><img src='http://artofgeek.com/wp-content/uploads/2008/01/113_about_screen.png' alt='1.1.3 about screen' class="aligncenter" /></p>
<p>Post update, these are the issues I ran into, and how I solved them:</p>
<ul>
<li>EDGE settings got wiped and Settings would crash when attempting to re-enter my Rogers EDGE APN info.  Resetting the network settings in <strong>Settings&#8211;>General&#8211;>Reset&#8211;>Reset Network Settings</strong> solved this issue and I was able to enter my EDGE and WiFi settings without issue afterwards.  EDGE and WiFi both work fine.</li>
<li>The OpenSSH server didn&#8217;t work.  I reinstalled the BSD subsystem, rebooted my iPhone and then re-installed OpenSSH.  Had to do this twice to get it to work, but it&#8217;s fine now.</li>
</ul>
<p>Otherwise, everything is working great and as expected.  Here&#8217;s what I&#8217;ve tested:</p>
<ul>
<li>I can send and receive telephone calls normally and I get notification of missed calls.</li>
<li>Voicemail notification continues to work, pressing the voicemail button dials my Rogers voicemail number as it did before.</li>
<li>I can send and receive SMS text messages, sending to multiple recipients work!</li>
<li>Seems to sync without issues using iTunes 7.6.</li>
<li>Safari works fine, including the new web clips on the home page feature!  All my bookmarks and cookies are still there.</li>
<li>Mail works fine and all my mail and settings are still there.</li>
<li>iPod feature works fine, music, video podcasts tested OK.  All my content was untouched.</li>
<li>The wiggly icons/icon rearrangement feature on the home screen works great!</li>
<li>Calendar and reminders work fine.  My Calendar data was intact after updating.</li>
<li>Stocks &#038; Weather widgets functioning fine.  My settings were untouched.</li>
<li>Google Maps works, but locate me doesn&#8217;t function at all (expected and noted by others).  My map bookmarks are intact.  The new hybrid view seemed not to be working at first, but I suspect it was displaying cached information or was a problem on Google&#8217;s end as it&#8217;s started working fine.</li>
<li>Camera, Photos, Contacts, Clock, Calculator, YouTube and iTunes WiFi store work fine. All my settings and data are intact.</li>
<li>Installer.app works fine as do the third party programs I&#8217;ve installed and tested so far, although there are some minor glitches I&#8217;ve encountered, which are to be expected.  Some apps are no doubt going to need to be updated, but my most important ones, iSolitaire, Converter, Books and mobileChat seem to work fine.  The HP series of calculators work mostly, but don&#8217;t display the options correctly when you tap the HP logo.
</ul>
<p>So that&#8217;s it in a nutshell.  I hope I haven&#8217;t forgotten anything.  Please post your own experiences and/or questions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/01/26/113-iphone-jailbreak-released-hackers-rejoice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone firmware 1.1.3 is out, hacked iPhones need not apply (yet)</title>
		<link>http://artofgeek.com/2008/01/15/iphone-firmware-113-is-out-hacked-iphones-need-not-apply-yet/</link>
		<comments>http://artofgeek.com/2008/01/15/iphone-firmware-113-is-out-hacked-iphones-need-not-apply-yet/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 02:47:14 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[iTunes]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2008/01/15/iphone-firmware-113-is-out-hacked-iphones-need-not-apply-yet/</guid>
		<description><![CDATA[<p>]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/09/dont_panic_iphone.jpg' alt='Unlocked iPhones - Don't Panic!' class="alignleft" />Apple released iTunes 7.6 today along with the much anticipated iPhone &#038; iPod Touch firmware 1.1.3.  It&#8217;s <a href="http://artofgeek.com/2007/09/26/inform-yourself-before-updating-the-firmware-on-your-unlocked-iphone/">worth repeating</a> that if you have hacked your iPhone or iPod Touch (jailbroken it, unlocked it, etc.), then you SHOULD NOT install the new 1.1.3 firmware.  Use common sense and let the experts have a crack at it first.</p>
<p>Now iTunes 7.6 appears to be safe.  I&#8217;ve installed it and have synchronized my jailbroken and iPhoneSimFree unlocked 1.1.2 firmware iPhone without any apparent issues.  Might be a good idea to hold off a few days just to be sure, but so far so good.  If you have a hacked iPhone and have updated iTunes to 7.6, let us know in the comments how it went.  Please include details about your hacked iPhone (firmware, hacks applied and unlock method if applicable).</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2008/01/15/iphone-firmware-113-is-out-hacked-iphones-need-not-apply-yet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A glossary of terms for iPhone hacking newbies</title>
		<link>http://artofgeek.com/2007/11/19/a-glossary-of-terms-for-iphone-newbies/</link>
		<comments>http://artofgeek.com/2007/11/19/a-glossary-of-terms-for-iphone-newbies/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 19:26:11 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod/iTunes]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/11/19/a-glossary-of-terms-for-iphone-newbies/</guid>
		<description><![CDATA[<p>For those not up on the iPhone hacking lingo, here&#8217;s a glossary of important technical terms related to hacking and/or using the iPhone.  If you&#8217;re fairly tech savvy or have already done some research into hacking the iPhone, you probably won&#8217;t benefit from reading on.  If you are completely new to the iPhone [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/11/iphone-hacking-for-newbies.png' alt='iPhone Hacking For Newbies' class="alignright" />For those not up on the iPhone hacking lingo, here&#8217;s a glossary of important technical terms related to hacking and/or using the iPhone.  If you&#8217;re fairly tech savvy or have already done some research into hacking the iPhone, you probably won&#8217;t benefit from reading on.  If you are completely new to the iPhone and hacking however, this may make it easier to understand a lot of the stuff you will read on the internet about unlocking or hacking the iPhone, including some of my own articles, which often assume you already know the basics.  I was inspired to write this glossary after I noticed a lot of the same questions being asked in article comments and internet forums.<span id="more-110"></span></p>
<p>This really is &#8216;the basics&#8217; and is designed to be a README FIRST for someone who just started thinking about buying and unlocking an iPhone.  This glossary assumes you know what an iPhone is, are pretty familiar with cell phones and their features and are a competent computer user.  If you&#8217;re the type of person who can&#8217;t get anything done on your computer or cell phone without calling someone for help, then this isn&#8217;t for you, but if you were that technically challenged, you probably wouldn&#8217;t be reading this in the first place. <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So without further ado, on to the glossary!</p>
<h4>Jailbreak</h4>
<p>Apple designed the iPhone to make it difficult to hack for both security reasons, and so they could maintain greater control over how it was used.  As such, they have not provided any means for end users to modify the built-in OS X operating system or install additional applications.  Jailbreaking refers to the act of circumventing those controls or locks to enable write access the the iPhone&#8217;s OS and storage. An iPhone that has had this done to it is considered <em>jailbroken</em>.</p>
<h4>Activation</h4>
<p>Activation is the act of plugging your iPhone into your computer and running iTunes in order to &#8216;activate&#8217; it&#8217;s features, something you need to do when you first take it out of the box or restore it&#8217;s firmware using iTunes. Activation in iTunes is usually a one-click process, but only if you have an officially supported carrier SIM card inserted.  If it detects your SIM card is not an approved one, it will simply not allow you to activate your iPhone, which makes it pretty much useless except for placing emergency calls (e.g. 911).  This is where the activation crack is needed. You need to jailbreak before you can crack it&#8217;s activation since it requires you to modify the iPhone&#8217;s software.  Often the tool you use to jailbreak will also crack the activation.</p>
<h4>Unlock</h4>
<p>Most cell phone providers in North America sell mobile phones that have been locked to only work on their own cellular network in order to make it inconvenient for customers to switch to competing cellular providers.  The iPhone is no exception.  So if you buy an iPhone from the U.S., it&#8217;s locked to only work on the AT&#038;T network in the U.S., even though the GSM technology the iPhone was built on was originally designed to make it simple to switch networks simply by swapping out a little chip called a SIM card.  Basically, if a non-AT&#038;T SIM card is inserted in an unmodified iPhone, it will be rejected by the phone and you won&#8217;t be able to connect to any cell phone network for voice or data. Unlocking is the act of modifying an iPhone to make it function with SIM cards from other GSM providers.</p>
<p>There are several different methods that can be used to unlock an iPhone, including a hardware unlock which requires you to physically open the iPhone and solder some connections, a &#8220;TurboSIM&#8221; method, which uses a special SIM card which must be purchased and most popularly, software unlocks which simply require you to run an unlock program on a jailbroken and activated iPhone. There are both commercial (e.g. iPhoneSimFree) and free (e.g. AnySIM, iUnlock) software unlock solutions available.</p>
<h4>Firmware</h4>
<p>The firmware is simply the iPhone&#8217;s operating system and software that makes the iPhone work.  Apple periodically releases firmware updates which fix bugs and add new features via iTunes for Mac OS X or Windows.  So far, Apple has not forced users to update their iPhone to newer firmware versions, but that doesn&#8217;t mean it might not happen in the future.  Updating is of course mandatory if you want to take advantage of any new features they contain.</p>
<p>So far, each new iPhone firmware update Apple has released has undone the jailbreak and activation crack, requiring new solutions to be developed.  Even restoring your iPhone with the current firmware requires you to re-apply the current jailbreak and activation crack, which sometimes requires you to downgrade your firmware first.  The unlock may or may not have to be re-applied however, depending on which solution you use.  So far the <a href="http://www.iphonesimfree.com/">iPhoneSimFree</a> solution has survived every firmware update Apple has released to date, and this is the one I&#8217;ve used on mine and my wife&#8217;s iPhones.  Newer free unlock programs seem to survive now as well, but don&#8217;t have as proven a track record as the commercial iPhoneSimFree solution and even got a bit of negative publicity for rendering iPhones inoperable when firmware version 1.1.1 was first released, although a fix was eventually released weeks later.</p>
<p>Keep in mind that just because an unlock has survived firmware updates in the past, that&#8217;s no guarantee that it will survive all future firmware updates, but it does bode well.  As always, unless you&#8217;re the adventurous type and doesn&#8217;t mind being the guinea pig, wait for others to update their firmware and run the new jailbreak/activation cracks and give the all-clear before proceeding with it yourself.</p>
<h4>Baseband modem firmware</h4>
<p>Like most complex gadgets these days, the iPhone is made up of many smaller complex components, each of which may have it&#8217;s own little bits of software driving them.  One such component is the iPhone&#8217;s cellular modem or &#8216;baseband modem&#8217;, which is what allows the iPhone to connect and communicate via voice and data on the GSM network.  The baseband modem has it&#8217;s own firmware (often referred to simply as baseband, or the baseband) that is periodically updated by the main iPhone firmware updates.  You shouldn&#8217;t really have to worry about dealing with this at all, unless something has gone horribly wrong and you now either have a corrupt or damaged baseband modem firmware, or a firmware version mismatch, which happens when you downgrade the iPhone&#8217;s firmware in iTunes, since iTunes will not downgrade the baseband modem firmware.  In either of these cases, symptoms will generally be problems or a complete inability to accept/make incoming or outgoing calls, SMS messages and access EDGE data services.</p>
<h4>EDGE</h4>
<p>EDGE is the cellular data network that the iPhone uses to connect to the internet from almost anywhere you can make a cell phone call.  Any iPhone data application such as email, Safari, the Stocks and Weather widgets, YouTube and iTunes Store will use the EDGE network, if available, to connect to the internet and send/retrieve information.  Note that like all other cellular services, you do have to pay extra for EDGE data usage, and it can be VERY expensive, especially if you don&#8217;t have an EDGE data plan, or you go over your plan limit.  You can check your EDGE data usage under Settings&#8211;>Usage from your iPhone&#8217;s main screen.  Accessing the EDGE data network normally requires you to have the correct APN settings entered in Settings&#8211;>General&#8211;>Network&#8211;>EDGE.  If you want to make sure you never access the EDGE network, to avoid usage charges for instance, simply leave these settings blank.</p>
<h4>Wi-Fi</h4>
<p>Wi-Fi is your common wireless computer network that many homes, schools and businesses use to network computers.  The iPhone will prompt you to connect to any available Wi-Fi network it detects when it attempts to connect to the internet BEFORE it will use an available EDGE network.  This is great, since using Wi-Fi doesn&#8217;t incur any airtime charges on your cellular phone bill.  The downside is free Wi-Fi networks may be limited where you go, especially outside of urban areas.  Some Wi-Fi networks cost money to use, but are easy to spot, since you&#8217;ll be prompted by a web page to log in or purchase time when you try to visit any page in Safari. Many hotels, airports, coffee shops, conference centres and even some large urban areas have such paid wireless networks available and they can be really worthwhile if you have some time to kill or really need to get access to some web sites where EDGE would be too expensive.  You&#8217;ll have to do the math and decide for yourself depending on your carrier&#8217;s rates and your data plan, if any.</p>
<h4><em>Epilogue</em></h4>
<p>I&#8217;m guessing that if/when my carrier here in Canada (Rogers) officially begins offering the iPhone for sale, that I will no longer have to deal with cracking the activation of my iPhone since iTunes will recognize my Rogers SIM card as an approved one.  From that point on, if I have no desire to install my own software hacks, I <em>should</em> be able to upgrade my firmware without having to worry about re-hacking my iPhone.  Since Apple has already committed to opening the iPhone to 3rd party software development beginning sometime early next year, my days of hacking my iPhone to install the programs I want on it will hopefully be numbered.  I really look forward to the day when updating my iPhone&#8217;s firmware is as simple as Apple intended, but in the meantime, I&#8217;m thankful to all those hard working individuals who have made it possible for me to own and use this wonderful device in Canada now.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/11/19/a-glossary-of-terms-for-iphone-newbies/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>(Somewhat) easy iPhone firmware 1.1.2 unlock/activation finally available for updated iPhones [Update 1]</title>
		<link>http://artofgeek.com/2007/11/19/somewhat-easy-iphone-firmware-112-unlockactivation-finally-available/</link>
		<comments>http://artofgeek.com/2007/11/19/somewhat-easy-iphone-firmware-112-unlockactivation-finally-available/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 17:19:54 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/11/19/somewhat-easy-iphone-firmware-112-unlockactivation-finally-available/</guid>
		<description><![CDATA[<p>[Update 1] Good news for all those iPhone aficionados who visit my blog: there is now a relatively simple jailbreak procedure that also handles activation for those of you looking to use an unlocked iPhone on unsanctioned networks.  The older version only handled jailbreaking, but not the very important activation step, something I found [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/11/firmware-112-jailbreak-activation-crack.png' alt='Firmware 1.1.2 jailbreak &#038; activation crack' class="alignleft" /><a href="http://artofgeek.com/2007/11/19/somewhat-easy-iphone-firmware-112-unlockactivation-finally-available/#update_1">[Update 1]</a> Good news for all those iPhone aficionados who visit my blog: there is now a relatively simple jailbreak procedure that also handles activation for those of you looking to use an unlocked iPhone on unsanctioned networks.  The older version only handled jailbreaking, but not the very important activation step, something I found out the hard way.  Thankfully I was able locate instructions for manually cracking activation by replacing the /usr/libexec/lockdownd file with a hacked version via SSH/SFTP.  Not fun.<span id="more-108"></span>  So do yourself a favor and use the <a href="http://conceitedsoftware.com/iphone/site/112jb.html">new, improved jailbreak/activation method</a> and save yourself the hassle.  Instructions are in the included README.txt file.</p>
<p>Please note that I have not tested the new version myself, so run it at your own risk.  I&#8217;d suggest reading through the comments on <a href="http://www.tuaw.com/2007/11/16/1-1-2-jailbreak-updated-to-include-activation-ppc-support/">this TUAW article</a> and maybe scanning the posts in the <a href="http://www.hackint0sh.org/forum/forumdisplay.php?f=123">Hackint0sh forums</a> to see if anyone is having any problems before proceeding.  Please note that this jailbreak/activation solution DOES NOT handle unlocking.  This will require an extra step using an unlocking program such as <a href="http://www.iphonesimfree.com/">iPhoneSimFree</a>.</p>
<p>Now I say it&#8217;s <em>relatively</em> simple because it is somewhat lengthy, with many steps to follow, but the hard stuff is automated, so as long as you are comfortable following step by step instructions and are fairly familiar with your OS of choice (Mac OS X or Windows), you should be OK.  Whether or not it&#8217;s worth upgrading to the latest firmware really depends on who you are and how you want to use your iPhone, or more specifically, in what language.  Besides the likely bug and security fixes (like the Safari TIFF file exploit, which has been closed), the only new features seem to be better support for typing and using your iPhone in other languages. So unless you want/need the better language support, have bought a new iPhone that came with firmware 1.1.2 out of the box, or, like me, you absolutely have to know you&#8217;re running the latest firmware &#8220;just because&#8221;, you may want to just sit this one out and wait for the next firmware update.</p>
<hr />
<a name="update_1"></a><em><strong>Update 1 &#8211; 12/22/2007:</strong> Please note that as of this writing, there is no software unlocking solution for out of box version 1.1.2 iPhones.  The above article is referring to iPhones that are updated to firmware 1.1.2 from earlier versions.  Thanks to reader &#8220;TM&#8221; for bringing this to my attention.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/11/19/somewhat-easy-iphone-firmware-112-unlockactivation-finally-available/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iNdependence v1.2.3 enables latest firmware on some unlocked iPhones [Update 2]</title>
		<link>http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/</link>
		<comments>http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 16:30:16 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/</guid>
		<description><![CDATA[<img src='http://artofgeek.com/wp-content/uploads/2007/10/firmware-111-compatible-unlock.png' alt='Firmware 1.1.1 Compatible Unlock' class="alignright" /><a href="http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/#update_2">[Update 2]</a> A lot has happened in the iPhone hacking world in the past week.  On October 10, the iPhone Dev Team <a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/168130440/">published detailed instructions</a> for jailbreaking and activating iPhone firmware 1.1.1.  Within 24 hours, the folks at <a href="http://www.iphonesimfree.com/">iPhoneSimFree</a>, <a href=;http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/168488834/">confirmed that their unlock solution</a> in conjunction with the iPhone Dev Team's hack would enable unlocked phones to be fully operational running the latest firmware.  They also released an update to their SimFree application which repaired iPhones that had previously been bricked due to corruption of the baseband radio firmware caused by some of the free unlock solutions.

Yesterday, an update to <a href="http://code.google.com/p/independence/">iNdependence for Mac OS X</a> was released that makes the process of updating, activating and jailbreaking iPhones a whole lot easier.  I tried both the old manual instructions as well as using iNdependence 1.2.3 to update mine and my wife's unlocked iPhones to the latest firmware with a high degree of success.  Read all about my experiences in the full [...]]]></description>
			<content:encoded><![CDATA[<p><strong><u>Disclaimer of liability:</u> The information provided in this article is provided as-is and without warranty for information purposes only.  Art Of Geek is not responsible for any damage you may cause to your hardware or software as a result of this information.  Also please note that performing any of the steps outlined in this article will very likely void your iPhone&#8217;s warranty.  It&#8217;s recommended that you sync your iPhone and backup any photos or other data before performing any firmware updates or restores.  Proceed at your own risk!</strong></p>
<p><img src='http://artofgeek.com/wp-content/uploads/2007/10/firmware-111-compatible-unlock.png' alt='Firmware 1.1.1 Compatible Unlock' class="alignright" /><a href="http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/#update_2">[Update 2]</a> A lot has happened in the iPhone hacking world in the past week.  On October 10, the iPhone Dev Team <a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/168130440/">published detailed instructions</a> for jailbreaking and activating iPhone firmware 1.1.1.  Within 24 hours, the folks at <a href="http://www.iphonesimfree.com/">iPhoneSimFree</a>, <a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/168488834/" target="_blank">confirmed that their unlock solution</a> in conjunction with the iPhone Dev Team&#8217;s hack would enable unlocked phones to be fully operational running the latest firmware.  They also released an update to their SimFree application which repaired iPhones that had previously been bricked due to corruption of the baseband radio firmware caused by some of the free unlock solutions.  I can confirm that the combination of hack and iPhoneSimFree does in fact work, and quite well.</p>
<p>The main problem is it a very lengthy process and I wouldn&#8217;t recommend it for anyone without at least a basic understanding of Unix terminal operation.  It&#8217;s also risky&#8211;one small mistake could mean having to start all over from scratch or worse, permanently damaging your iPhone.  I performed the operation on my iPhone, and it took the better part of half a day to complete, with lots of waiting and a fair share of frustrating moments.  The instructions make some assumptions about your level of knowledge, which will require you to fill in the blanks yourself in a couple of steps. I also found a slight error in one step dealing with the jailbreak operation which I found I had to skip in order for the jailbreak to work.  The solution also leaves you with an inoperable YouTube application, which is a bummer.  Otherwise, the operation was a success<strong>*</strong>, but the ordeal made me hesitant to go through it all again with my wife&#8217;s iPhone, so I decided to hold off updating hers until an easier solution became available.</p>
<p>Thankfully for me, my wife and other Mac users holding off updating their iPhones, a <a href="http://code.google.com/p/independence/">new version of iNdependence</a> for Mac OS X (currently version 1.2.3) makes the process of updating your iPhoneSimFree unlocked iPhone much easier, and much less risky.  It&#8217;s still a multi-step process, but the documentation, located in the application&#8217;s Help menu, is very well written and the entire operation is handled by the application in conjunction with iTunes&#8211;no terminal commands required! Better yet, iNdependence activates your iPhone correctly so the mobile YouTube app works!</p>
<p>Here are screenshots of iNdependence&#8217;s five tabs (click each to enlarge):</p>
<p><a href='http://artofgeek.com/wp-content/uploads/2007/10/independence-activation-tab.png' title='iNdependence Activation Tab' target="_blank"><img src='http://artofgeek.com/wp-content/uploads/2007/10/independence-activation-tab.thumbnail.png' alt='iNdependence Activation Tab' />  </a><a href='http://artofgeek.com/wp-content/uploads/2007/10/independence-jailbreak-tab.png' title='iNdependence Jailbreak Tab' target="_blank"><img src='http://artofgeek.com/wp-content/uploads/2007/10/independence-jailbreak-tab.thumbnail.png' alt='iNdependence Jailbreak Tab' /></a>  <a href='http://artofgeek.com/wp-content/uploads/2007/10/independence-ssh-tab.png' title='iNdependence SSH Tab' target="_blank"><img src='http://artofgeek.com/wp-content/uploads/2007/10/independence-ssh-tab.thumbnail.png' alt='iNdependence SSH Tab' /></a>  <a href='http://artofgeek.com/wp-content/uploads/2007/10/independence-customize-tab.png' title='iNdependence Customize Tab' target="_blank"><img src='http://artofgeek.com/wp-content/uploads/2007/10/independence-customize-tab.thumbnail.png' alt='iNdependence Customize Tab' /></a>  <a href='http://artofgeek.com/wp-content/uploads/2007/10/independence-firmware-tab.png' title='iNdependence Firmware Tab' target="_blank"><img src='http://artofgeek.com/wp-content/uploads/2007/10/independence-firmware-tab.thumbnail.png' alt='iNdependence Firmware Tab' /></a></p>
<p>Before using the app to update my wife&#8217;s iPhone (firmware 1.0.2), I wanted to test the solution on my own iPhone already updated to firmware 1.1.1.  Following the easy instructions provided by iNdependence 1.2.3, I restored and downgraded iPhone back to firmware 1.0.2, then proceeded to update back to firmware 1.1.1, activate and jailbreak.  The entire operation took about 1-1/2 hours, but I was taking my time, making sure to read each instruction more than once just to be safe.  When I was finished, I had a fully functional<strong>*</strong> unlocked iPhone running firmware 1.1.1, that still supported the installation of third party applications.</p>
<p>Last night I used iNdependence to update my wife&#8217;s iPhone from firmware 1.0.2 to 1.1.1.  It took about an hour, and the steps were the same, only I was able to skip the firmware downgrade steps, since her iPhone was still running the older 1.0.2 firmware.  The update went without a hitch, and she is now happy that her iPhone is just as up to date as mine.  Since I&#8217;ve performed the update on two iPhone&#8217;s now, I&#8217;m confident in recommending iNdependence 1.2.3 to those of you who have iPhones that were unlocked using iPhoneSimFree&#8217;s solution provided you are somewhat knowledgeable about computers and are comfortable following detailed instructions.</p>
<p><strong>Please note that this solution is currently only tested with the iPhoneSimFree unlock solution, and from what I&#8217;ve read DOES NOT support any of the other software unlock solutions.</strong>  My understanding is that iPhones unlocked using the free unlock solutions (AnySim, iUnlock) will be returned to a locked state once updated to firmware 1.1.1.  There is some news reported today about an <a href="http://www.tuaw.com/2007/10/16/iphone-dev-team-announces-free-unlock/">updated free unlock solution</a> that supposedly works on iPhones that have not had their baseband firmware tampered with yet.  Unfortunately, I can&#8217;t vouch for it since I haven&#8217;t used it, so proceed with caution. Since the commercial iPhoneSimFree solution is the only software solution that not only has survived the 1.1.1 firmware update, but even managed to repair iPhones that were damaged by other solutions, it may be worth paying the $60+ just for the peace of mind, at least until the other solutions can prove themselves.</p>
<p><em>* <strong>Note: </strong>There is one little glitch that exists regardless of whether you use the manual or iNdependence method to update your hacked iPhone&#8217;s firmware to version 1.1.1: the iPhone keeps forgetting the EDGE APN settings (Settings&#8211;>General&#8211;>Network&#8211;>EDGE) every time you reboot your iPhone. Thankfully, there is a <a href="http://www.hackint0sh.org/forum/showthread.php?t=10965">relatively easy fix</a> courtesy of the Hackint0sh forums which entails manually entering the settings in the /var/root/Library/Preferences/com.apple.carrier.plist file.<em></p>
<hr />
<strong>Update 1:</strong> It appears that the voicemail waiting indicator no longer works on firmware 1.1.1.  I just noticed I don&#8217;t get the little red dot indicating voicemail is waiting.  I&#8217;m not the only one either, there&#8217;s a <a href="http://www.hackint0sh.org/forum/showthread.php?t=10964&#038;highlight=voicemail">forum topic on the issue</a> at the Hackint0sh forums.  This is a bummer, and could be a major issue for some.  I&#8217;ll continue to research the issue and will post an update if/when a fix is found.</p>
<hr />
<a name="update_2"></a><strong>Update 2 &#8211; 11/5/2007:</strong> The voicemail indicator has suddenly started working again.  First time I noticed was on Saturday, Nov. 3.  Since I haven&#8217;t changed anything on my iPhone, I&#8217;m going to assume that Rogers has done something on their end to get it to work.  My guess is they have enough iPhone users on their network that called and complained that they found it worthwhile implementing a fix.  Regardless of the reason, it&#8217;s all good now.  Let&#8217;s just hope it doesn&#8217;t stop working again&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/10/17/updated-independence-enables-latest-firmware-on-some-unlocked-iphones/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Inform yourself before updating the firmware on your unlocked iPhone [Update 1]</title>
		<link>http://artofgeek.com/2007/09/26/inform-yourself-before-updating-the-firmware-on-your-unlocked-iphone/</link>
		<comments>http://artofgeek.com/2007/09/26/inform-yourself-before-updating-the-firmware-on-your-unlocked-iphone/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 15:15:07 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/09/26/inform-yourself-before-updating-the-firmware-on-your-unlocked-iphone/</guid>
		<description><![CDATA[<p>]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/09/dont_panic_iphone.jpg' alt='Unlocked iPhones - Don't Panic!' class="alignleft" /><a href="http://artofgeek.com/2007/09/26/inform-yourself-before-updating-the-firmware-on-your-unlocked-iphone/#update_1">[Update 1]</a> Just a quick warning to anyone who may have followed my exploits and unlocked their iPhone to work with non-AT&#038;T SIM cards: DO NOT update your unlocked iPhone&#8217;s firmware past version 1.0.2 until you&#8217;ve confirmed that it&#8217;s either safe to do so, or find verified instructions detailing what steps need to be taken to avoid permanent damage to the device.**</p>
<p><a href="http://money.cnn.com/2007/09/24/technology/iphone.ap/index.htm?source=yahoo_quote">You&#8217;ve most likely heard</a> Apple&#8217;s warning that the next firmware update (rumored to be version 1.1.1), will likely cause permanent damage to any iPhone that has been unlocked.  Furthermore, they have stated that any such damage will not be covered under the iPhone&#8217;s warranty.  OK, before you panic, take a moment and breath.  This isn&#8217;t such a big deal, and should not have been unexpected.  You should have already known the risks that are involved in hacking your iPhone, and been prepared to take the necessary steps to void them, namely not updating your firmware until you know it&#8217;s safe to do so.<span id="more-97"></span></p>
<p>But hot on the heels of Apple&#8217;s statement, the iPhone Dev Team <a href="http://www.tuaw.com/2007/09/25/iphone-dev-team-issues-statement/">has responded</a>:</p>
<blockquote><p>Based on download numbers, the iPhone Dev Team believes that, worldwide, several hundred thousand people have unlocked their iPhones. That number continues growing every day. The removal of the lock, a bug, was a major step forward in the iPhone development. It made the iPhone free and useful to anyone, not only to those in certain countries.</p>
<p>Apple now announces that the next firmware update, expected later this week, will possibly break the handset of all of us free users in the World. It speaks of &#8220;damage&#8221; done to the firmware and &#8220;unauthorized access&#8221; to our own property, The removal of those firmware problems, which were built in in favor for AT&#038;T, does not cause &#8220;damage&#8221; as they want to make us believe.</p>
<p>We will provide you with a tool in the next week which will be able to recover your nck counter and seczones and even enables you to restore your phone to a Factory-like state.</p>
<p>In the meantime we advise you not to update your free iPhone with the upcoming firmware. Wait for the next version to be fixed to work properly with your carrier and not break your phone.</p></blockquote>
<p>So there you have it.  Be patient, don&#8217;t rush to install the new firmware when it comes out, and keep an eye on this space (or any other useful source of iPhone hacking/unlocking news) for updated information on how to proceed. I recommend against trying any of the premature manual re-lock methods.  There&#8217;s no need to rush.  You have control over when you update your iPhone&#8217;s firmware, so there&#8217;s no sense rushing to implement a risky hack that may do real permanent damage to your iPhone.  An easy solution will come in time, so relax and enjoy your iPhone in the meantime.</p>
<p>Worst case scenario I foresee is you&#8217;ll need to re-lock your iPhone, install the new firmware update, then unlock it again using a new version of the unlock tool that will no doubt be released shortly after the new firmware hits the interwebs.</p>
<hr />
<a name="update_1"></a><strong><em>Update 1 &#8211; 9/29/2007, 12:55 pm:</em></strong> It is <a href="http://www.engadget.com/2007/09/28/iphone-update-facts-and-fiction/">NOT safe to update your unlocked iPhone</a> to firmware 1.1.1! DON&#8217;T DO IT unless you want to end up with an expensive brick. I suggest disabling &#8220;Check for updates automatically&#8221; in iTunes preferences, and do not click the &#8220;Check for Update&#8221; button on the iPhone screen in iTunes. I also recommend NOT updating iTunes past version 7.4.2 until we know what it does exactly. If you have to restore your iPhone&#8217;s 1.0.2 firmware, disable your network connection first so iTunes can&#8217;t check for the update. If iTunes has already downloaded the updated firmware, deleting the 1.1.1 .ipsw files from <code>~/Library/Application Support/iTunes/iPhone Software Updates</code> (that&#8217;s the Library in your home folder, not the one at the top level of your hard drive) should allow you to install the older 1.0.2 version as long as it&#8217;s files exist in that directory already. I make no guarantees though, so proceed at your own risk.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/09/26/inform-yourself-before-updating-the-firmware-on-your-unlocked-iphone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iNdependence 1.2.1 enables YouTube on non-AT&amp;T activated iPhones</title>
		<link>http://artofgeek.com/2007/09/15/independence-121-enables-youtube-on-non-att-activated-iphones/</link>
		<comments>http://artofgeek.com/2007/09/15/independence-121-enables-youtube-on-non-att-activated-iphones/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 04:24:08 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/09/15/independence-121-enables-youtube-on-non-att-activated-iphones/</guid>
		<description><![CDATA[<p>The iPhone development community has released iNdependence 1.2.1, an update to the iPhone activation/hacking tool that now enables YouTube functionality on non-AT&#038;T activated iPhones.  I&#8217;ve tested it and it works beautifully.  This program is in my opinion the most important tool for hacking the iPhone using a Mac.</p>
<p>You can download the latest version [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/09/independence_icon.png' alt='iNdependence Icon' class="alignright" />The iPhone development community has released iNdependence 1.2.1, an update to the iPhone activation/hacking tool that now enables YouTube functionality on non-AT&#038;T activated iPhones.  I&#8217;ve tested it and it works beautifully.  This program is in my opinion the most important tool for hacking the iPhone using a Mac.</p>
<p>You can download the latest version from the <a href="http://code.google.com/p/independence/">iNdependence project page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/09/15/independence-121-enables-youtube-on-non-att-activated-iphones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone unlocked, operating on Rogers Wireless in Canada [Update 3]</title>
		<link>http://artofgeek.com/2007/09/12/iphone-unlocked-and-operating-on-rogers-wireless-in-canada/</link>
		<comments>http://artofgeek.com/2007/09/12/iphone-unlocked-and-operating-on-rogers-wireless-in-canada/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 18:49:36 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/09/12/iphone-unlocked-and-operating-on-rogers-wireless-in-canada/</guid>
		<description><![CDATA[<p>[Update 3] Well, that didn&#8217;t take long.  Two days after we bought our iPhones, I was able to find an online reseller who was providing the iPhoneSimFree unlock service without any delays.  We went with FreeOuriPhones.com, a European reseller who was listed as an iPhoneSimFree authorized reseller.  Within minutes of sending off [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/09/iphone-unlocked-on-rogers-in-canada.png' alt='iPhone Unlocked on Rogers in Canada' class="alignleft" /><a href="http://artofgeek.com/2007/09/12/iphone-unlocked-and-operating-on-rogers-wireless-in-canada/#update_3">[Update 3]</a> Well, that didn&#8217;t take long.  Two days after we bought our iPhones, I was able to find an online reseller who was providing the iPhoneSimFree unlock service without any delays.  We went with <a href="http://www.freeouriphones.com/">FreeOuriPhones.com</a>, a European reseller who was listed as an <a href="http://www.iphonesimfree.com/cgi-bin/iphonesimfree/engine.pl?page=buy">iPhoneSimFree authorized reseller</a>.  Within minutes of sending off my PayPal payment of $59.99US, including my iPhone&#8217;s IMEI number in the PayPal notes, I received an email back with a link to the iPhoneSimFree software and instructions for installing and performing the unlock.  The email catered to Windows users, but the reseller was quite helpful when I asked Mac specific questions, responding to my emails within minutes each time.</p>
<p>As stated on many other blogs already, the process requires you to have already jailbreaked (jailbroken?) and activated your iPhone.  I recommend using <a href="http://code.google.com/p/independence/">iNdependence version 1.2</a> (or newer) to accomplish this, as well as updating the firmware of the iPhone to the latest 1.0.2 version.  Then you copy the SimFree application to your iPhone&#8217;s /Applications folder using whatever method you prefer (iNdependence offers this functionality, but I used SFTP myself), install your new SIM card, run the SimFree app and press the Apple logo that appears on the screen.  The actual unlocking process takes 2-3 minutes, and the software keeps you informed of it&#8217;s process quite nicely.  Once it&#8217;s done, it will inform you that your phone was unlocked successfully, but you&#8217;ll have to re-activate your new SIM card using iNdependence before you can start using it.<span id="more-87"></span></p>
<p>Once you&#8217;ve done all of that, you will be able to make and receive calls, send/receive text messages, and even use EDGE internet access, once you&#8217;ve entered your carrier&#8217;s specific APN server, username and password in the appropriate fields under Settings&#8211;>General&#8211;>Network&#8211;>EDGE.  For Rogers, these are:</p>
<ul>APN: internet.com<br />
Username: wapuser1<br />
Password: wap</ul>
<p>Also note that you may have to upgrade your SIM card, if it&#8217;s an older one.  Rogers recommended a SIM card version of 8930 2720 4000 or greater.  If you have problems, check to see if your SIM is an older one.</p>
<p>So what doesn&#8217;t work?  Visual voicemail, which is an AT&#038;T specific feature, but you do get standard voicemail notifications, and tapping the voicemail icon on the Phone screen will automatically call your provider&#8217;s voicemail number.  The YouTube app also doesn&#8217;t work, which is a known issue for which there is <a href="http://www.hackint0sh.org/forum/showthread.php?t=5582" target="_blank">apparently a workaround</a>.  Otherwise, it&#8217;s functioning as one would expect, and functioning well.  A word of caution to Rogers customers though: Rogers data rates are VERY expensive.  These are the rates I was quoted by Rogers on the phone:</p>
<ol>
<a href="http://www.shoprogers.com/store/wireless/services/voice/navigate-mobile-internet.asp">Rogers Mobile Internet Data Plans</a>:<br />
$5/month for 5MB combined upload and download, 3¢/KB thereafter<br />
$10/month for 10MB combined upload and download, 3¢/KB thereafter</ol>
<ol><a href="http://www.shoprogers.com/business/wireless/plans_services/business_plans.asp?plan=dataservice&#038;cat=2&#038;typ=2">Rogers MyMail Email Data Plans</a>:<br />
$15/month for 1.5MB combined upload and download, $21/MB prorated thereafter<br />
$25/month for 3MB combined upload and download, $10/MB prorated thereafter<br />
$40/month for 7MB combined upload and download,  $6/MB prorated thereafter<br />
$60/month for 25MB combined upload and download, $7/MB prorated thereafter<br />
$100/month for 200MB combined upload and download, $5/MB prorated thereafter<br />
$210/month for 500MB combined upload and download, $5/MB prorated thereafter</ol>
<p>To give you an idea of how much data certain features use, I checked the weather for 4 cities using the Weather widget, and updating the Stocks widget for 5 stocks used up 14KB of combined data (5KB upload and 9KB download).  Not too bad, then I loaded two web pages, one from a forum post on ehmac.ca, and then the home page of the Art Of Geek blog.  The usage jumped to 347KB (29KB upload and 318KB download).  I signed up for the $10/10MB Mobile Internet plan, which appear to be the best value, provided you don&#8217;t go over your limit in a month since each extra MB will cost you $30.  Ouch!  Checking and receiving about 40 emails added another couple hundred KB to the usage, most likely because the iPhone has a full mail client which downloads all the new emails rather than just mail headers like some other smart-phones do.  It&#8217;s clear that Apple intends users to have an unlimited data plan like that offered by AT&#038;T, as they haven&#8217;t gifted iPhone with many features to help the user limit data use such as only downloading headers in Mail, or disabling the loading of  images on web pages in Safari.  So anyone planning on using an iPhone on Rogers in Canada should be conscious about what features they&#8217;re using and whether they are connected to EDGE or a free WiFi network.</p>
<p>I was fully aware of these issues when I decided to buy the iPhone, and had it not had WiFi built-in, this would have been a deal-breaker for me.  But all this isn&#8217;t new to anyone who has an internet enabled smart-phone in Canada.  I had the same issues to contend with on <a href="http://artofgeek.com/2007/03/14/reason-1687592-why-apple-rocks/">my previous mobile phone</a>, a Nokia E61, which also had WiFi.  But the iPhone&#8217;s larger, higher resolution screen, and far superior desktop-like web browser, email and Google Maps clients make the iPhone a far more useful and capable mobile internet device than the Nokia E61, which was considerably slower and woefully underpowered, occasionally unable to load certain web pages due to lack of memory.  In contrast, the iPhone loads full emails with inline images and browses complex web pages very efficiently, even over the Rogers EDGE network.</p>
<p>I suspect we&#8217;ll be seeing a lot more iPhones roaming the streets of Canadian cities in the weeks to come. The Rogers rep I spoke to on the phone said I was the third person he had spoken to this morning.  This is likely to grow since Apple slashed the price by a third and affordable software unlocking becomes widely publicized.  In fact, just today, news broke about a free software unlock solution having been released, available <a href="http://www.freeiphoneunlock.com/">here</a>.  I knew it was only a matter of time before this would happen, but certainly didn&#8217;t expect it just a day or two after the iPhoneSimFree solution was released.  Had I known, I could have saved the $64CDN I paid to have my phone unlocked.  Thus is the price of early adoption, and it&#8217;s a price that I was not only fully prepared to pay, but in my opinion, was worth every penny.</p>
<hr />
<strong><em>Update 1 &#8211; 9/16/2007, 12:01 am:</em></strong> added the $100 and $210 Rogers data plans to the list of plans. Thanks to DataGridDotRedraw for providing the info.</p>
<hr />
<strong><em>Update 2 &#8211; 9/16/2007, 6:33 pm:</em></strong> added the $5 and $10 Rogers &#8220;Mobile Internet&#8221; plans to the list and updated the article to indicate I&#8217;ve signed up for the $10/10MB plan.</p>
<hr />
<a name="update_3"></a><strong><em>Update 3 &#8211; 10/4/2007, 11:10 pm:</em></strong> I&#8217;ve been <a href="http://www.ehmac.ca/ipod-itunes-iphone-apple-tv/56198-just-signed-rogers-3-months-unlimited-data.html">reading on the ehMac forums</a> that Rogers has a $65/1GB data package which was originally intended for PC Card cellular modems but is being offered to iPhone customers.  This is the first package that seems somewhat realistic if you want to use the iPhone&#8217;s capabilities to it&#8217;s fullest. I&#8217;m tempted, but just can&#8217;t justify spending that much just for mobile data. When added to a voice plan, that would push my monthly cell phone bill over $100.  If/when it drops down to below $40, I&#8217;ll probably jump all over it.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/09/12/iphone-unlocked-and-operating-on-rogers-wireless-in-canada/feed/</wfw:commentRss>
		<slash:comments>104</slash:comments>
		</item>
		<item>
		<title>They can sense it&#8217;s presence!</title>
		<link>http://artofgeek.com/2007/09/11/they-can-sense-its-presence/</link>
		<comments>http://artofgeek.com/2007/09/11/they-can-sense-its-presence/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 14:45:12 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/09/11/they-can-sense-its-presence/</guid>
		<description><![CDATA[<p>Last Sunday, my wife and I drove down to Buffalo and bought ourselves iPhones.  I chronicled our experience in a previous Art Of Geek blog post if you&#8217;re interested in reading about it and my first impressions.</p>
<p>One thing that I&#8217;m not looking forward to, is people asking &#8220;IS THAT AN iPHONE???&#8221; every time I [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/09/eye_of_sauron.jpg' alt='Eye of Sauron' class="alignright"  />Last Sunday, my wife and I drove down to Buffalo and bought ourselves iPhones.  I chronicled our experience in <a href="http://artofgeek.com/2007/09/10/we-caved/">a previous Art Of Geek blog post</a> if you&#8217;re interested in reading about it and my first impressions.</p>
<p>One thing that I&#8217;m not looking forward to, is people asking &#8220;IS THAT AN iPHONE???&#8221; every time I pull it out in public.  I seriously don&#8217;t want the attention from total strangers (unless they&#8217;re really hot girls, then I&#8217;ll make an exception).  I was waiting for a doctor&#8217;s appointment yesterday, and my appointment was delayed, so I thought it was a perfect time to pull out the iPhone and maybe watch an episode of Family Guy.  But then I looked up and saw a cop, a businessman and a guy who looked like he worked on either a cruise ship or an airline (his white shirt had those black bars with yellow stripes on them) waiting around me (true story!).  I knew if I pulled the iPhone out, it would get the attention of all three of them for sure, and probably even the three women working behind the counter.  Chances were pretty good that at least one of them would have the courage to ask me about it.<span id="more-86"></span></p>
<p>You see, I didn&#8217;t buy the iPhone as a status symbol, or to look cool, or pick up chicks (although it would probably be pretty useful for the latter).  I bought it because I want to experience mobile computing nirvana, and I get a warm fuzzy feeling when I have something that makes me feel like I&#8217;m living in the future.  It&#8217;s not about having something that other people don&#8217;t have, it&#8217;s just about having and enjoying it.  If I had bought it for any of those other reasons, I&#8217;d probably pull the iPhone out in public on purpose.  Because I didn&#8217;t buy it for those reasons and am fully aware that it WILL get annoying to have total strangers approach me often and ask about the device in my hands, I&#8217;m reluctant to reveal the iPhone in public, at least for the time being.  In my mind, I&#8217;m worried that if I start to get annoyed by the amount of attention the iPhone attracts, it will diminish my appreciation for the device.  Since I&#8217;m an early adopter of many gadgets, I&#8217;ve felt this way many times before, but never as strongly as for the iPhone.  I think it&#8217;s because of all the new gadgets I&#8217;ve bought before, none has been so widely hyped or had so much consumer awareness.  Also, the fact that the iPhone isn&#8217;t officially available in Canada means the number of people with the device will remain limited for quite some time.</p>
<p>I definitely envy the Americans.  Since the iPhone has been on the market for a couple of months and Apple has sold over 1 million already, Americans can feel comfortable using their iPhone in public without drawing so much attention anymore.  In time, the novelty will wear off and iPhone sightings will be common enough in Canada that they won&#8217;t draw the attention of everyone within a 10m radius.  In the meantime, I&#8217;m just going to have to get used to it I guess&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/09/11/they-can-sense-its-presence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We caved&#8230;</title>
		<link>http://artofgeek.com/2007/09/10/we-caved/</link>
		<comments>http://artofgeek.com/2007/09/10/we-caved/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 19:17:23 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/09/10/we-caved/</guid>
		<description><![CDATA[<p>So for some unknown reason, I woke up at 4 am on Sunday morning and couldn&#8217;t fall back asleep.  As I lay in bed, my mind wandered, as it&#8217;s oft to do when it&#8217;s bored.  I started thinking about the iPhone, and some of the news I had read the week before about [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/09/iphone_in_hand.gif' alt='iPhone In Hand' class="alignleft"  />So for some unknown reason, I woke up at 4 am on Sunday morning and couldn&#8217;t fall back asleep.  As I lay in bed, my mind wandered, as it&#8217;s oft to do when it&#8217;s bored.  I started thinking about the iPhone, and some of the news I had read the week before about a software unlock possibly being released today.  I also weighed the pros and cons of buying an iPod touch to keep me satisfied until the iPhone comes to Canada, or at least an inexpensive (and warranty friendly) iPhone unlock method is widely available.</p>
<p>If I were to buy an iPod touch, I&#8217;d of course get the 16GB model, which is $399US, which happens to be exactly the same price as the 8GB iPhone.  I decided that even if the iPhone couldn&#8217;t be unlocked anytime soon, I&#8217;d still get everything (and more) that the iPod touch can do, just with less storage capacity.  So my logic was that I should just get myself an iPhone, since it&#8217;s the same price, and I&#8217;ll eventually be able to unlock it to work on the Rogers network here in Canada.<span id="more-85"></span></p>
<p>It was then I woke my wife up and pitched the idea of an early morning road trip to the Walden Galleria mall in Buffalo, NY.  Being a gadget junkie herself, my wife of course was all for it (yes, I&#8217;m a lucky bastard, yes, she has a sister and no, her sister is not available).  So by 5:35 am, we were well on our way, equipped with Google maps directions in hand.  I had checked Apple&#8217;s handy <a href="http://www.apple.com/retail/iphone/">iPhone availability page</a> to confirm that the Walden Galleria store did in fact have them in stock.</p>
<p>By leaving so early, we not only ensured we didn&#8217;t hit any traffic, but also that we zipped through the US Customs border checkpoint.  Unfortunately, we also ensured we&#8217;d have to wait over 3 hours before the mall (and Apple Store) opened for business.  So we stopped at a nearby Tim Hortons for a bite, picked up a couple of magazines at Rite-Aid and hung out at the Walden Galleria mall until it opened.  Needless to say, we had time to window shop the entire mall, and read our magazines with about 45 minutes to spare.  These may have been the longest 45 minutes of my life.  On the positive side, we knew it wasn&#8217;t in vane, because when we first arrived at the mall at about 7:45 am, an Apple employee was already in the store.  We were able to get his attention and he kindly confirmed that they did in fact have 8GB iPhones in stock.  A good thing, since I had my Google maps directions to the Syracuse NY Apple Store, and was fully prepared to execute them if necessary.  Thankfully I didn&#8217;t have to.</p>
<p>Within 10 minutes of the store opening we got up from the uncomfortable mall bench where we were perched to mark our territory in front of the Apple Store entrance, since the beginnings of what would become a small crowd started to form in front of the store.  While we waited, we spoke to another couple from our home town of Brampton, Ontario, who coincidentally enough, had the exact same inspiration to take the drive to Buffalo and buy an iPhone as we did.  They had somehow managed to call the store and get them to put two iPhones aside for them.  As they told me this, I felt a moment of worry since the clerk we had spoken to hadn&#8217;t confirmed HOW MANY iPhones they in fact had in stock.  Turns out any such worry on my part was unwarranted.</p>
<p>The store opened promptly at 11 am, and we were able to quickly secure two 8GB iPhones from a gentleman named Sean behind the counter, who rang us up in short order.  In order to avoid having to make the drive back to Buffalo anytime soon, we opened our iPhones in the store and made sure they turned on and didn&#8217;t have any visible issues.  My wife&#8217;s was fine, but mine unfortunately seemed to be frozen once it booted up, as it was not responding to any inputs.  Sean force restarted it, and it locked up again.  He did it again, and this time it appeared to be working.  I was able to power it off and on again a few times without it locking up again.  So we were on our way.</p>
<p>As we pulled out of the parking space, I felt compelled to test my iPhone again.  I powered it on, and it promptly froze again.  I made the decision to return to the store and ask for a replacement.  Sean was courteous and said he would ask a technician about the issue.  He returned and said that this was a known issue and that once I updated to the latest firmware, it wouldn&#8217;t happen anymore.  I told him that since I came so far, I wasn&#8217;t willing to take that chance.  Sean continued to insist there was nothing wrong and even made reference to me having to pay a restocking fee if I wanted to replace it, but he then quickly offered to speak to a manager without me having to ask to do so.</p>
<p>After about 5 minutes, Sean returned from the back room with a new, unopened iPhone and said he would replace it for me free of charge (as he should!).  I promptly opened up the new one, and tested to make sure it was functioning properly.  It looked great and Sean rung up a new receipt for me.  That&#8217;s when I flipped the new unit over and noticed what appeared to be a little scratch on the aluminum casing.  This can&#8217;t be, I thought, and promptly tried my best to remove what I was hoping was just a smudge of some unidentified goop left over from the assembly line.  I tried my thumb. I tried my shirt. I tried using a little spit on my thumb, and even using my thumb nail.  My heart sank as I realized it was not coming off.  It was one of those little marks that was almost too small to make a fuss about, but nonetheless one that I knew was going to bother me every time I looked at it from now until the end of it&#8217;s useful life.</p>
<p>I motioned Sean over and with a very apologetic tone (and my most convincing puppy dog eyes), told him I was going to have to ask for another unit, since this one had a scratch.  I was expecting to get a look, or a sigh, or an argument, or that he&#8217;d have to have the manager take a look at the &#8216;scratch&#8217;.  But instead, Sean just said, &#8220;No problem&#8221;.  He then went into the back room for what seemed like maybe 5 minutes (probably to clear it with the manager), before returning to exchange my iPhone for the second time.  I thanked him for his handling of the situation and he said it wasn&#8217;t a problem, and that my satisfaction was very important to them.  We completed the transaction and I inspected the unit and confirmed, with a sigh of relief, that it was both functional and free of visual defects.</p>
<p>With that I returned to the car and we headed home.  Not wanting to test our luck any further, we fully declared our purchases to Canada Customs and paid our outstanding taxes, which amounted to 14% PST+GST charged on the after-tax price we paid.  For those curious about the total cost, the $399US iPhone was $433.91US after 8.75% NY State sales tax.  Assuming a 1.06 exchange rate, that&#8217;s about $460CDN, plus another $65CDN in sales tax when we crossed the border back to Canada, for a total cost of $525CDN, or about $13 more than it would have cost us for the 16GB iPod touch at retail.</p>
<p>After some digging on the internet to find the appropriate software and instructions, our iPhones are now activated and hacked to allow the installation of third party apps.  We aren&#8217;t able to use the devices as a phone yet though, but anticipate there will be affordable, software-based unlocking services available within the next week or two that will allow us to use our Rogers SIM cards with the unit.  The only other feature we can&#8217;t use is the built-in YouTube viewer, apparently because it requires a working EDGE cell network connection for it&#8217;s first connection.  iTunes syncs Address Book contacts, iCal calendars, Safari bookmarks, email accounts, music, video and podcasts as expected.  I also had no problems browsing the web and sending/receiving email via our home WiFi network.</p>
<p>So how is it?  Lets just say that all the positive stuff you may have read about the iPhone is true.  It has far and away the most advanced user interface ever implemented in a consumer electronics device, and is an utter joy to use.  Surfing the web is fantastic, with web pages rendering identically to the way they do in Safari on the Mac.  It is the best damn iPod Apple has ever made and watching videos and podcasts on it&#8217;s large screen is a treat.  But I have to say, as awesome a product as the iPhone is, it&#8217;s made even more awesome with the help of all the unauthorized third party development being done for the device.  I have already installed an ebook reader, a terminal shell, an ssh client and server, an AIM IM client, RSS news reader, Minesweeper game and IRC chat client.  All of the third party apps I&#8217;ve installed have fantastic user interfaces, although some are a little buggy.  The best part of it all is all these apps can be easily installed, updated and uninstalled using another unauthorized third party app called <a href="http://iphone.nullriver.com/beta/">AppTap by NullRiver software</a>, which installs an iPhone app called &#8220;Installer&#8221; that presents you with an up to the minute list of applications that you can install over WiFi.  No muss, no fuss.  This is a very unique situation where the open source community has been able to deliver a better application deployment, update and uninstall environment than ANY consumer electronics OS vendor has ever done.  This is, in fact, the way every open smartphone should handle third party app installation.</p>
<p>Caveats?  Sure, there are a few.  For instance, there is a possibility that Apple will release a firmware update that locks out third party software hacks and SIM unlocking methods, but I&#8217;m confident that Apple is more interested in selling iPhones than blocking their most enthusiastic iPhone fans.  The iPhone isn&#8217;t perfect either.  There are areas where it can see improvement, like in text editing, copy &#038; paste, voice dialling, etc.  But those have all been covered before by countless bloggers, and I agree with the majority who say that the iPhone&#8217;s shortfalls seem insignificant compared to it&#8217;s overall functionality and usability.  Besides, Apple has a history of, and has gone on record as saying they plan to improve the iPhone over time via software.  Like for the iPod before it, I&#8217;m looking forward to every firmware update Apple releases to see how they improve usability and add functionality.  In the meantime though, I&#8217;m very impressed with what Apple has been able to deliver thus far.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/09/10/we-caved/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPhone Canada-bound in September?</title>
		<link>http://artofgeek.com/2007/06/27/iphone-canada-bound-in-september/</link>
		<comments>http://artofgeek.com/2007/06/27/iphone-canada-bound-in-september/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 15:54:20 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Rumor]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/06/27/iphone-canada-bound-in-september/</guid>
		<description><![CDATA[<p>OK, take this with a grain of salt, but this is a true story.</p>
<p>My mother in-law, who lives in Texas, is coming up to visit next week, and she asked my wife if she could bring anything as a gift for me.  My wife, being the dutiful little Apple fan that she is, jokingly [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/06/iphone-coming-to-canada.png' alt='iPhone Coming To Canada'  class="alignleft" />OK, take this with a grain of salt, but this is a true story.</p>
<p>My mother in-law, who lives in Texas, is coming up to visit next week, and she asked my wife if she could bring anything as a gift for me.  My wife, being the dutiful little Apple fan that she is, jokingly responded that her mother could bring us both an iPhone if she wants.  My wife proceeded to try to talk her mother out of trying to get us iPhones because of how expensive they are, how impossible it will be to get one in the first few days and the likelihood that it wouldn&#8217;t work in Canada anyway.</p>
<p>They ended the call and my wife thought nothing more of it.</p>
<p>A little while later, my mother in-law calls back to say she had telephoned Apple in Cupertino and spoke to a very nice lady in customer service<span id="more-81"></span> who explained that the iPhone was only initially being launched in the U.S. and was exclusive to the AT&amp;T network, but that <strong>Apple was planning on launching in Canada in September on the Rogers network</strong>. Now last I remember, Apple has not made any statements specific to when the iPhone would be available in Canada, and neither has Rogers.  It&#8217;s important to point out that my mother in-law is neither an Apple fan, or an iPod or Mac user.  She didn&#8217;t even know what the iPhone was until my wife told her about it today.</p>
<p>If this turns out to be true, then my mother in-law may have just gotten the scoop first on what is sure to be the biggest Canadian consumer electronics story of the year.  A scoop that is yet to be reported by any of the typical Apple blogs and rumor sites, nor the mainstream press.  Maybe all these years Apple has trained it&#8217;s staff how to avoid being tricked into spilling the beans on company secrets from conventional geek journalists and paparazzi, but have failed to anticipate the threat from unassuming grandmothers.  Who knows.  If my mother in-law ever gets tired of nursing, I think she has a shot as an investigative technology journalist!  </p>
<p>I certainly hope this rumor is true, because I think 3 months is about as long as I&#8217;m willing to wait for the iPhone before I break down, get one from the U.S. and spend whatever amount of time and money is necessary to get it unlocked to work in Canada. Â Now lets just hope when the iPhone does come to Rogers, that it brings those <a href="http://macdailynews.com/index.php/weblog/comments/14036/">affordable unlimited data packages</a> with it.  Hey, a guy can dream, can&#8217;t he?</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/06/27/iphone-canada-bound-in-september/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How Apple killed Microsoft&#8217;s music format monopoly dreams</title>
		<link>http://artofgeek.com/2007/04/02/how-apple-killed-microsofts-music-format-monopoly-dreams/</link>
		<comments>http://artofgeek.com/2007/04/02/how-apple-killed-microsofts-music-format-monopoly-dreams/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 23:03:09 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPod/iTunes]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/04/02/how-apple-killed-microsofts-music-format-monopoly-dreams/</guid>
		<description><![CDATA[<p>Today&#8217;s announcement by Apple &#38; EMI about plans to offer EMI&#8217;s music catalogue in higher bitrate, DRM-free versions on the iTunes Store for $1.29 per song is huge.  I don&#8217;t think it&#8217;s quite sunk in yet to the majority of people in the industry, or the web, just how huge it is.  It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://artofgeek.com/wp-content/uploads/2007/04/itunes_killing_wma.jpg" alt="iTunes smashing PlaysForSure Logo" class="alignleft" />Today&#8217;s <a href="http://edition.cnn.com/2007/SHOWBIZ/Music/04/02/emi.apple/index.html">announcement by Apple &amp; EMI</a> about plans to offer EMI&#8217;s music catalogue in higher bitrate, DRM-free versions on the iTunes Store for $1.29 per song is huge.  I don&#8217;t think it&#8217;s quite sunk in yet to the majority of people in the industry, or the web, just how huge it is.  It&#8217;s pretty much a given that the rest of the music labels will be forced to follow EMI&#8217;s lead and open up their catalogues to high-quality DRM-less music downloads as well.  Not only because they&#8217;ll bow to the competitive pressure from EMI&#8217;s soon-to-be success, but because they&#8217;re too greedy to pass up the opportunity to boost digital revenues by an extra 30% almost overnight.  So it&#8217;s only a matter of time before all music sold through iTunes is offered in higher-quality 256kbps Advanced Audio Coding (AAC) format, completely free of digital rights management.<span id="more-73"></span></p>
<p>There seems to be a big misconception about the AAC format.  Many people seem to think it&#8217;s an Apple owned format, but that is incorrect.  AAC is an open standard, and was developed by Dolby, Fraunhofer, AT&amp;T, Sony and Nokia to replace MP3; it was declared a standard by the MPEG group back in 1997.  Apple chose AAC for it&#8217;s iTunes Store because it was the logical industry standard format for their needs.  It offers better quality audio at smaller file  sizes and supports features like 5.1 surround sound and DRM.  Apple&#8217;s DRM solution is called FairPlay, and is used to encrypt the AAC file so it&#8217;s playback can be limited to authorized devices.  Remove FairPlay and you&#8217;re left with an open, industry-standard music file which will never, and can never, be controlled by Apple or any other single company.Â AAC has already gaining widespread support in the consumer electronics industry â€“ even Microsoft&#8217;s Zune can play DRM-free AAC audio files.</p>
<p>Microsoft&#8217;s Windows Media Audio (WMA) format, in contrast, is a proprietary format.  Only companies and devices that license it from Microsoft can use it.  It was created so people would require Microsoft&#8217;s products in order to play back their music and by extension, make Microsoft lots of money.  But in order to convince third party music sellers and device makers to support WMA, they needed to offer value.  That value came in the form of a digital rights management system that could be licensed, saving everyone from having to make their own DRM system, the way Apple did.  The record labels wouldn&#8217;t allow their music catalog to be sold digitally without some form of copy protection, fearing it would contribute to online piracy.  So company after company came knocking on Microsoft&#8217;s door seeking to license their WMA/DRM solution, later branded &#8220;PlaysForSure&#8221;, in order to get a slice of the music download action.  The record labels were set to hand Microsoft it&#8217;s music monopoly.</p>
<p>Apple no doubt saw the risk of letting Microsoft take over the digital music market.  They were already seeing what Microsoft&#8217;s domination in the web browser and office suite markets was doing to lock people into the Windows OS.  To combat the WMA threat, Apple at first decided to try promoting the MP3 format by releasing iTunes in early 2001 and the iPod, later that year for the Macintosh â€“ both of which were promoted as &#8220;MP3 players&#8221;.  But it was Apple&#8217;s decision to take iTunes and the iPod to the Windows platform a year later that was the trojan horse that would eventually lead to the death of WMA.  In 2003, Apple launched the iTunes Music Store, later renamed the iTunes Store, and cemented their position as the leader in digital media, bringing AAC along for the ride.  The rest is, as they say, history.</p>
<p>Once iTunes goes completely DRM free, competing stores will be forced to go DRM free as well, in order to compete.  They&#8217;ll also jump at the chance to finally be able to sell music to iPod owners, something they&#8217;ve been begging for ever since the iTunes/iPod duo took over the market.  But there&#8217;s one little thingâ€“the iPod doesn&#8217;t play WMA formatted music.  So one by one, Microsoft&#8217;s former media partners, no doubt still smarting from being locked out of Microsoft&#8217;s Zune party, will start selling DRM-free music in AAC format.  Why?  Because WMA, and even MP3, require royalty payments to use.  AAC does not.  There&#8217;s no point whatsoever in continuing to sell WMA formatted music, if you aren&#8217;t using Microsoft&#8217;s DRM copy protection.</p>
<p>So as the whole world adopts industry standard audio formats over the coming years, where does that leave Microsoft and their closed, proprietary WMA audio format?  Dead in the water.  Microsoft will be forced to adopt AAC for their Zune Marketplace, otherwise they&#8217;ll lock themselves out of all the consumer devices that are developed to support AAC, but won&#8217;t support WMA.  Not to mention, even Zune owners won&#8217;t want to buy WMA formatted music for fear of not being compatible with future device purchases.  WMA has lost it&#8217;s value proposition and will die a slow death along with Microsoft&#8217;s aspirations of obtaining a music format monopoly.  It&#8217;s a great day for music lovers as well as the consumer electronics and music industries, and no doubt will be seen as the day Microsoft lost the music format war.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/04/02/how-apple-killed-microsofts-music-format-monopoly-dreams/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reason #1,687,592 why Apple ROCKS</title>
		<link>http://artofgeek.com/2007/03/14/reason-1687592-why-apple-rocks/</link>
		<comments>http://artofgeek.com/2007/03/14/reason-1687592-why-apple-rocks/#comments</comments>
		<pubDate>Wed, 14 Mar 2007 18:53:29 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/03/14/reason-1687592-why-apple-rocks/</guid>
		<description><![CDATA[<p>I have been on a quest for the &#8216;perfect&#8217; mobile phone for several years now, buying a new one every 6-9 months, but never being quite satisfied with any of them.  I think the quest started back in 2003 when I bought a Sony Ericsson T68i, my first BlueTooth equipped phone, and was able [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/03/isync-smiley-e61.png' alt='iSync Smiley E61' class="alignright" />I have been on a quest for the &#8216;perfect&#8217; mobile phone for several years now, buying a new one every 6-9 months, but never being quite satisfied with any of them.  I think the quest started back in 2003 when I bought a Sony Ericsson T68i, my first BlueTooth equipped phone, and was able to synchronize it wirelessly with my Mac using iSync.  Every phone I bought since then could sync contact names and phone numbers with Mac OS X&#8217;s Address Book, and appointments with iCal but I have been forever plagued by a desire for a phone that can sync full addresses and contact notes with the same simplicity.  In other words, I wanted something that could finally allow me to ditch my Palm PDA in the garbage forever.<span id="more-70"></span></p>
<p>Back in November of last year, a friend of mine IM&#8217;d me and told me about this new smartphone he had purchased.  I told him what I was looking for in a phone, and he told me his phone would do all that, and synchronize contact photos to boot.  I was skeptical, because I was starting to give up hope that any device could live up to my high expectations, short of Apple making a phone of their own*.  But I was curious to see what benevolent creation my friend possessed.  That phone was a Nokia E61, and after a short demonstration and a bit of a test drive, I was convinced.  The next day I bought an unlocked Nokia E61 from a local reseller, and kissed my Motorola RAZR V3i and Palm TX goodbye.</p>
<p>The latest version of Mac OS X&#8217;s iSync at the time didn&#8217;t directly support the Nokia E61, but a free plugin available off the Internet quickly solved that problem.  I just had to drag the plugin into a specific location on my hard drive, and iSync suddenly recognized and worked with my phone, like they were designed for each other from the beginning.</p>
<p>So last night, the Mac OS X 10.4.9 update dropped via Software Update, and I quickly went about downloading and installing it.  The installation went without issue as expected and I was quickly back up and running with no muss or fuss.  But this morning, when I went to launch iSync to sync up my phones with my MacBook Pro, I was greeted with this message:</p>
<p><a href='http://artofgeek.com/wp-content/uploads/2007/03/isync-plugin-error.png' title='iSync Plugin Error'><img src='http://artofgeek.com/wp-content/uploads/2007/03/isync-plugin-error.png' class="aligncenter"  alt='iSync Plugin Error' /></a></p>
<p>My first thought was, &#8220;where the heck did I install that plugin?&#8221;  My second was, &#8220;oh no, I might not be able to sync my E61 until an updated plugin gets released!&#8221;  Well, looks like Apple&#8217;s iSync developers read my mind because they seem to have anticipated my concerns and dealt with them ahead of time.  I proceeded to click on the little arrow to the right of the plugin name in the dialog box, and was pleasantly surprised to see a Finder window pop open with the offending plugin highlighted. All I had to do was drag the file to my Desktop to disable it.  Then I relaunched iSync, re-added the Nokia E61 to the list and it was instantly recognized.  Seconds later, I was syncing it without issue.  I no longer need to use a third party plug-in because iSync now has built-in support for the Nokia E61.</p>
<p>Once again, Apple has exceeded my expectations by obsessing over the little details so I don&#8217;t have to waste my time.  After this positive experience, I couldn&#8217;t help but wonder what it would have been like had I gone through the same ordeal on Windows or Linux.  Having used and supported the former for years, and dabbled a bit with the latter, I think I&#8217;ve got a pretty good idea what that would have been like.</p>
<p><em>*Of course, we all know Apple has decided to make their own smartphone, the iPhone, which is slated for release in the US in June.  No firm release date has been given for Canada, although Rogers Wireless has apparently said they would be the exclusive carrier in the Great White North.  For the record, as much as I do like my Nokia E61, I do plan on replacing it with an iPhone as soon as they arrive north of the border.  A mobile phone that is as well thought out as Apple&#8217;s other products is, will be utter mobile nirvana.</em> </p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/03/14/reason-1687592-why-apple-rocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blog Sighting: Display The Date In The Mac OS X Menu Bar</title>
		<link>http://artofgeek.com/2007/02/20/blog-sighting-display-the-date-in-the-mac-os-x-menu-bar/</link>
		<comments>http://artofgeek.com/2007/02/20/blog-sighting-display-the-date-in-the-mac-os-x-menu-bar/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 19:13:59 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2007/02/20/blog-sighting-display-the-date-in-the-mac-os-x-menu-bar/</guid>
		<description><![CDATA[<p>Any Mac user knows you can display the current time in the right side of the menu bar.  Most even know you can set it to also display the day of the week, and that clicking the clock will pull down a menu which displays today&#8217;s date.</p>
<p>If you&#8217;re like me, you often want to [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://artofgeek.com/wp-content/uploads/2007/02/menubardate.png' class="alignright"  alt='Menubar Clock' border="1" />Any Mac user knows you can display the current time in the right side of the menu bar.  Most even know you can set it to also display the day of the week, and that clicking the clock will pull down a menu which displays today&#8217;s date.</p>
<p>If you&#8217;re like me, you often want to know what today&#8217;s date is, and you find having to click the clock or bring up Dashboard to check the Calendar widget to be a tad inconvenient.  Sure you could leave iCal running, which will display today&#8217;s date in it&#8217;s Dock icon, and you can&#8217;t be sure you&#8217;ll leave it running all the time. <span id="more-63"></span></p>
<p>Today I came across a great hint on <a href="http://www.macinstruct.com/">Macinstruct</a> (by way of <a href="http://www.macdailynews.com/index.php/weblog/comments/how_to_display_the_date_in_mac_os_x_menu_bar/">MacDailyNews</a>), which explains how to get the date to display with the time in the menu bar, by customizing the time format in the International preference pane.  Click the following link to read the full step-by-step instructions.</p>
<p><a href="http://www.macinstruct.com/node/53">Macinstruct Tutorial: How to Display the Date in the Menu Bar</a></p>
<p>Macinstruct seems to be a new website, so they don&#8217;t have too much content up yet, but I&#8217;m going to keep my eye on it as it looks like it might be a great resource for useful Mac OS X hints in the future.  They have a few other hints and tutorials in their <a href="http://www.macinstruct.com/tutorials">How-Tos section</a>, so check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2007/02/20/blog-sighting-display-the-date-in-the-mac-os-x-menu-bar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Safari 3.0: Leopard can&#8217;t come too soon!</title>
		<link>http://artofgeek.com/2006/10/05/safari-30-leopard-cant-come-too-soon/</link>
		<comments>http://artofgeek.com/2006/10/05/safari-30-leopard-cant-come-too-soon/#comments</comments>
		<pubDate>Thu, 05 Oct 2006 14:44:25 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[pre-release]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[sneak-peak]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2006/10/05/safari-30-leopard-cant-come-too-soon/</guid>
		<description><![CDATA[<p>If you&#8217;re like me, you spend a crazy amount of your waking hours in a web browser.  For me, that browser is Apple&#8217;s Safari, and despite some enticing features of other browsers for Mac OS X (there are quite a few), I stick with Safari because I love it&#8217;s uncluttered interface, excellent support for [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image56" src="http://artofgeek.com/wp-content/uploads/2006/10/safari_icon.png" class="alignleft" alt="Safari Icon" />If you&#8217;re like me, you spend a crazy amount of your waking hours in a web browser.  For me, that browser is Apple&#8217;s Safari, and despite some enticing features of other browsers for Mac OS X (there are quite a few), I stick with Safari because I love it&#8217;s uncluttered interface, excellent support for web standards and Apple look/feel that the other browsers just seem to be lacking.</p>
<p>Well, a few weeks back a video showed up on YouTube purporting to show off new drag-able tabs in the upcoming version of Safari in Mac OS X Leopard, but there was much reason to be skeptical, given all the fake Leopard screenshots and movies that made the rounds leading up to WWDC&#8217;06.  Well kids, it looks like drag-able tabs are coming to Safari 3.0, as well as a couple of other really cool features, according to <a href="http://www.musingsfrommars.org/2006/10/three-new-safari-30-tricks-are-producing-leopard-lust.html" target="_blank">an article on Musings From Mars blog</a>.  The article includes videos demonstrating the three features, so I highly recommend you check it out!<span id="more-57"></span></p>
<p>Drag-able tabs, much improved in-page search and resizable form text fields!  Very nice.  Now the one feature that I&#8217;d still like to see is true zooming in and out on a page.  Not simply changing text size, I want all page components to scale proportionately.  Opera is the only browser that I know of that does this.  Very handy for people with lots of screen real estate who wants to enlarge a page to make it more easily read from further back, or those with notebooks who want to be able to see more of a web page on the screen at once.  Give me that and site-specific settings, and I&#8217;ll be a really happy camper.  Of course, drag-able tabs, improved in-page find and resizable form text fields go a long way to helping me forget about the other stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/10/05/safari-30-leopard-cant-come-too-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zune Update</title>
		<link>http://artofgeek.com/2006/10/02/zune-update/</link>
		<comments>http://artofgeek.com/2006/10/02/zune-update/#comments</comments>
		<pubDate>Mon, 02 Oct 2006 22:49:24 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPod/iTunes]]></category>
		<category><![CDATA[DAP]]></category>
		<category><![CDATA[digital audio player]]></category>
		<category><![CDATA[media player]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Zune]]></category>
		<category><![CDATA[Zune Marketplace]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2006/10/02/zune-update/</guid>
		<description><![CDATA[<p>In my previous article about Microsoft&#8217;s latest attempt to catch up to the iPod, no pricing, ship date or official dimensions were available.  Since then, more concrete details have become available.  First off, Microsoft has finalized the price for their 30GB POS device: $249.99 US.  That&#8217;s just 99Â¢ more than the equivalent [...]]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://artofgeek.com/2006/09/15/microsoft-releases-zune-details-world-yawns/">previous article</a> about Microsoft&#8217;s latest attempt to catch up to the iPod, no pricing, ship date or official dimensions were available.  Since then, more concrete details have become available.  First off, Microsoft has <a href="http://today.reuters.com/news/articlenews.aspx?type=technologyNews&#038;storyID=2006-09-28T143003Z_01_WAD000153_RTRUKOC_0_US-MICROSOFT-ZUNE.xml">finalized the price</a> for their 30GB <del datetime="2006-10-02T21:52:36+00:00">POS</del> device: $249.99 US.  That&#8217;s just 99Â¢ more than the equivalent capacity iPod.  The device will go on sale on November 14.</p>
<p>Zune Marketplace will sell music for 79 Microsoft points per track, which works out to 98.75Â¢, since 80 Microsoft points will cost you a buck.  So for all intents and purposes, songs are the same price as they are on Apple&#8217;s iTunes Store (99Â¢).  There will also be an all you can eat subscription service for $14.99/month.  This is more expensive than some of the PlaysForSure subscription services available from other vendors.  Microsoft Marketplace will launch with only music for sale.  Video will come down the road.<span id="more-55"></span></p>
<p>The shipping Zune player is considerably bigger than I had estimated based on the publicity photos previously released.  Of course, any time you have to estimate, you&#8217;re bound to be off a tad, not to mention publicity photos could be misleading.  My guess was that the device would be between the size of an iPod 30GB and iPod 80GB.  The reality is <a href="http://www.gizmodo.com/gadgets/portable-media/ipod-vs-zune-size-contest-204483.php">it&#8217;s bigger than even the 80GB iPod</a>, so owners of that wonderful device can still brag they have 50GB more storage AND a smaller device.  The actual dimensions are 4.4 inches x 2.4 inches x 0.58 inch with a weight of 5.6 ounces.  That makes it 13% bigger/2% heavier than the iPod 80GB, and 45% bigger/30% heavier than iPod 30GB it&#8217;s trying to compete directly with.</p>
<p>So all that extra bulk must be for a bigger battery that will beat the iPod&#8217;s battery life, right?  Wrong.  According to Engadget:</p>
<blockquote><p> They were pretty tight lipped about it, but our new pal and independent analyst for Directions on Microsoft, Matt Rosoff, let us know that according to his contacts, with wireless off we can expect a 12 hours of music playback at 128Kbps, 3.5 hours for video playback, and 4.5 hours when running a slide show. Compare that to the 30GB iPod&#8217;s 14/4 hours and the 80GB iPod&#8217;s 20/6 hours, and it&#8217;s a little difficult to fully envision the payoff for that added thickness and height.</p></blockquote>
<p>So iPod 80GB owners can also brag they have nearly double the battery life of the Zune as well.  We can only imagine what the battery must be like with WiFi turned on.</p>
<p>Does Microsoft really think people will buy a bigger, uglier device that has worse battery life JUST because it has a bigger screen and gimmicky WiFi that is next to useless?  Anyone serious about video is going to prefer the higher capacity and longer battery life of the 80GB iPod, and the casual video user will really notice how much smaller/lighter the iPod 30GB model is.  Microsoft is going to learn a hard lesson from the Zune this holiday shopping season.  But hey, they have to spend that cash hoard on something, nothing says it has to be successful.  One thing is obvious:  the Zune isn&#8217;t even fit to compete against other products on the market from the likes of Creative and iRiver, against the iPod it&#8217;s DOA.</p>
<p><em>[Edit 10/3/2006, 11:18 am: Changed "for all intensive purposes" to "for all intents and purposes".  Thanks to reader "Poppycock" for catching that error.]</em></p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/10/02/zune-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Useful Mac OS X Terminal Commands</title>
		<link>http://artofgeek.com/2006/09/22/useful-mac-os-x-terminal-commands/</link>
		<comments>http://artofgeek.com/2006/09/22/useful-mac-os-x-terminal-commands/#comments</comments>
		<pubDate>Fri, 22 Sep 2006 15:01:28 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Terminal commands]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Unix commands]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2006/09/22/useful-mac-os-x-terminal-commands/</guid>
		<description><![CDATA[<p>Mac OS X is a very powerful OS.  One of it&#8217;s most amazing traits is how well it scales from being dead easy to use for novice users to allowing power users near unlimited capabilities.  The former comes from the excellent UI design and GUI tools that Apple has built, the latter from [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image51" src="http://artofgeek.com/wp-content/uploads/2006/09/terminal-icon.jpg" class="alignright" alt="Terminal.app icon" />Mac OS X is a very powerful OS.  One of it&#8217;s most amazing traits is how well it scales from being dead easy to use for novice users to allowing power users near unlimited capabilities.  The former comes from the excellent UI design and GUI tools that Apple has built, the latter from Mac OS X&#8217;s FreeBSD Unix underpinnings.  While most users will never have to touch the Mac OS X Terminal application to go about their day to day computing, those who like to push the limits of what they can do will most likely spend at least a bit of time at the command prompt.  This article is for those aspiring command line gurus, like myself.</p>
<p>I&#8217;ve been using Mac OS X since the Public Beta was released in 2000.  Over the years, as I&#8217;ve delved further into learning about the operating system&#8217;s Unix underpinnings, I&#8217;ve always kept a Stickies note handy where I would paste terminal commands that I thought might come in handy at some point in the future.<span id="more-50"></span>  Every one of these commands required countless Google searches and time scouring the results to find solutions to the problem I had at the time.  It&#8217;s in the interest of saving others from spending too much time searching that I present my Stickies Mac OS X terminal command list.  I hope these help all of you as much as they have helped me.</p>
<h3>A warning for newbies:</h3>
<p>If you&#8217;re not familiar with the Mac OS X Terminal, it&#8217;s an application that allows a user to directly execute Unix commands by typing them into text based command prompt.  You can find the Terminal application in /Applications/Utilities on your hard disk.  <strong>Please be aware that the terminal and Unix commands are very unforgiving.  A simple typo or misplaced punctuation can mean the difference between your command working and you deleting or overwriting something important, especially when executing commands with administrator rights (via the <code>sudo</code> command).</strong>  If you aren&#8217;t sure what you&#8217;re doing, it&#8217;s better to take the time to research the answer than to simply guess and possibly mess something up you won&#8217;t know how to fix.  This article is not meant to be a tutorial on how to use the Terminal.  If have never used the terminal, may I suggest you visit O&#8217;Reilly&#8217;s MacDevCenter which has <a href="http://www.macdevcenter.com/pub/ct/51">some good tutorials</a> to get you started.</p>
<h3>The Commands</h3>
<p><strong><u>Disclaimer:</u></strong> Please note that I cannot be held responsible for anything bad you do to your computer while attempting to use any of these commands.  Use them at your own risk!</p>
<h4>Eject Stubborn CDs</h4>
<ul>
<code>disktool -e disk#</code></ul>
<p>I found myself one day with a CDROM stuck in my CDROM drive, but no way to eject it.  It didn&#8217;t show up in the Finder or on the Desktop, and hitting the &#8220;Eject&#8221; button on the keyboard did nothing.  I found and tried two or three other terminal and GUI based solutions from sites like Mac OS X Hints, but none of them worked except this little gem.  I haven&#8217;t had to use it for years and it may not work for every stuck CD, but this one saved me from having to reboot my computer to get a bad CD out.  Type <code>disktool</code> by itself to get help.</p>
<h4>Unmount Stubborn Network Volumes</h4>
<ul>
<code>umount -f /Volumes/volumename</code></ul>
<p>Like the stuck CD issue above, I have once or twice come across a network volume that I could not disconnect.  Substitute the stuck network share&#8217;s name in place of &#8220;volumename&#8221; in this command.    You can view the pdisk man page to get help by typing <code>man umount</code> at the prompt and hitting return.</p>
<h4>Delete partition table on iPod</h4>
<ul>
<code>pdisk</code></ul>
<p>This menu based terminal app saved a dead iPod.  I once made the mistake of formatting my iPod as an external FireWire drive as some non-standard format (maybe NTFS or Unix File System).  After doing that, I couldn&#8217;t re-initialize the iPod using the latest iPod updater.  While I don&#8217;t remember exactly the steps I used to get the iPod working again (it had to do with deleting the partition table), this tool is what did the trick for me.  You can view the pdisk man page to get help by typing <code>man pdisk</code> at the prompt and hitting return.</p>
<h4>Restart Bonjour service</h4>
<ul>
Stop Bonjour service:<br />
<code>sudo launchctl unload /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist</code></ul>
<ul>
Start Bonjour service:<br />
<code>sudo launchctl load /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist</code></ul>
<p>A while back I had a problem where one of my Macs would periodically fail to broadcast it&#8217;s Bonjour name for things like print and file serving.  Rebooting the computer would resolve the problem for a time, but it would always come back.  Rather than having to reboot my computer all the time, I searched for and found this handy set of commands for stopping and starting the Bonjour service which would do the trick until the problem occurred again.  Since this was a service, it was great not having to reboot.  I eventually solved the problem, which if memory serves was caused by my router, but I felt it was handy to hold onto this in case I ever needed to stop or restart the Bonjour service again.  These commands need to be run as administrator, which is why they are prefixed with the <code>sudo</code> command.  You will be prompted to enter your admin password to execute them.</p>
<h4>Restart Apple Remote Desktop (ARD) service</h4>
<ul>
<code>sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -restart -agent -menu</code><br />
<em>Note: This is a very long command that should all be typed or copied/pasted as one line.</em></ul>
<p>I had a problem with Apple Remote Desktop once where if I left a remote control session running for too long (say overnight), the remote display would no longer refresh automatically.  In my quest to avoid rebooting my server, I found this handy command that restarts the ARD service, which listens for and manages remote control requests.  This has to be run on the machine you want to control normally.  Since I was having problems remote controlling said computer, I would log in remotely via SSH by typing <code>ssh ip_address</code> and execute the command while logged in remotely.  Very handy indeed.  Being able to remotely login via SSH is no doubt one of the most useful reasons to learn the command line.  All terminal commands that are covered in this article can be executed remotely.  You can view the SSH man page to get help by typing <code>man ssh</code> at the prompt and hitting return.</p>
<h4>Reset Network Interface</h4>
<ul>
Shut down network interface:<br />
<code>sudo ifconfig en0 down</code></ul>
<ul>
Start up network interface:<br />
<code>sudo ifconfig en0 up</code></ul>
<ul>
<em>Note: Substitute en0 for appropriate network interface id (a.k.a. BSD device name).  You can use System Profiler (in the /Applications/Utilities folder) to find the BSD device name for the network connection you want to reset.</em></ul>
<p>I can&#8217;t remember why I needed to do this.  Might have been while I was troubleshooting that Bonjour service issue, or maybe I was trying to change the connection&#8217;s MAC hardware address.  Doesn&#8217;t really matter.  The point is you can use this combination of commands to restart a network interface.  These commands use the SUDO command to run using administrator rights and so you will be prompted for your admin password.</p>
<p>[Edit: Thanks to commenter "why o why" for pointing out, <em>"it should be noted that if you remotely shutdown the ethernet interface you are using, it will be difficult to get it back up remotely <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  "</em>]</p>
<h4>Restart Apache Webserver</h4>
<ul>
<code>sudo apachectl graceful</code></ul>
<p>While restarting Mac OS X&#8217;s built-in Apache web server is as easy as toggling the &#8220;Personal Web Sharing&#8221; service&#8217;s status in the Sharing preference pane, you can&#8217;t do this easily remotely unless you can remote control the server in question.  Over a modem connection, this can be near impossible or at least very painful.  This command comes in handy if you&#8217;ve modified the Apache configuration file via a remote SSH connection as the changes only take effect after the Apache service is restarted.</p>
<h4>Restart MySQL Server</h4>
<ul>
Stop MySQL Server<br />
<code>sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop</code></ul>
<ul>
Start MySQL Server<br />
<code>sudo /Library/StartupItems/MySQLCOM/MySQLCOM start</code></ul>
<p>Not so long ago I installed the MySQL open source SQL database on my web server so I could run a phpBB based forum site.  MySQL also happens to be the database that runs the Art Of Geek blog.  These two commands are useful for stopping or restarting the MySQL service via SSH, or if like me you have ever broken your MySQL installation just enough for the MySQL preference pane to stop working.</p>
<h4>Change a file&#8217;s type code to make an AAC file an iTunes/iPod audio book</h4>
<ul>
<code>/Developer/Tools/SetFile -t 'm4b ' filename.m4b</code><br />
<em>Note: You must have the Mac OS X developer tools installed for this command to work!</em></ul>
<p>This gem of a command will set the type code of a file to &#8216;m4b &#8216; (there is a space after the &#8216;b&#8217;), which tells iTunes it&#8217;s an audio book.  This is required if you have ever ripped an audio book from CD, and want iTunes to see it as an audio book.  The file must be an AAC file, and you need to change the file extension to .m4b.  The truth is, this command can come in handy any time you need to implicitly set a file&#8217;s &#8216;type&#8217; or &#8216;creator&#8217; codes.  You can view the SetFile man page for help by typing <code>man SetFile</code> at the terminal prompt and hitting return.</p>
<p>That&#8217;s all the time (and commands) we have for today folks!  I&#8217;ll post more in a future article!</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/22/useful-mac-os-x-terminal-commands/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>The Register&#8217;s Achilles Heel: Andrew Orlowski?</title>
		<link>http://artofgeek.com/2006/09/17/the-registers-achilles-heel-andrew-orlowski/</link>
		<comments>http://artofgeek.com/2006/09/17/the-registers-achilles-heel-andrew-orlowski/#comments</comments>
		<pubDate>Sun, 17 Sep 2006 20:50:31 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPod/iTunes]]></category>
		<category><![CDATA[Andrew Orlowski]]></category>
		<category><![CDATA[eMusic]]></category>
		<category><![CDATA[iTunes Store]]></category>
		<category><![CDATA[Napster]]></category>
		<category><![CDATA[The Register]]></category>
		<category><![CDATA[Urge]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2006/09/17/the-registers-achilles-heel-andrew-orlowski/</guid>
		<description><![CDATA[<p>Last Friday, The Register, one of my regular reads posted an article by frequent contributor Andrew Orlowski titled The iPod&#8217;s Achilles Heel? It&#8217;s er&#8230; Reader&#8217;s Digest.  I took objection to so many of the points Mr. Orlowski made, that I set out to write a rebuttal here on Art Of Geek.</p>
<p>The article in question [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image42" src="http://artofgeek.com/wp-content/uploads/2006/09/zuneemusic-questions.jpg" class="alignright" alt="Zune + eMusic, what about the rest?" />Last Friday, <a href="http://www.theregister.co.uk/" target="_blank">The Register</a>, one of my regular reads posted an article by frequent contributor Andrew Orlowski titled <a href="http://www.theregister.co.uk/2006/09/15/zune_vs_ipod_readers_digest/" target="_blank">The iPod&#8217;s Achilles Heel? It&#8217;s er&#8230; Reader&#8217;s Digest</a>.  I took objection to so many of the points Mr. Orlowski made, that I set out to write a rebuttal here on Art Of Geek.</p>
<p>The article in question brings up quite a few points, most of which are wrong, misleading or inaccurate.  It attempts to identify the one major weakness the iPod has (it&#8217;s Achilles heel, to use a mythological metaphor), and make a point about how the Microsoft Zune or eMusic (or maybe both) have a chance to gain traction in the market by taking advantage of this weakness.  Orlowski sums this weakness up at the beginning of the article as such:</p>
<blockquote><p>â€But someone at Microsoft thinks they&#8217;ve found what may be the Achilles heel of Apple&#8217;s end-to-end music delivery system, of which the iPod is simply the best known part.</p>
<p>And it&#8217;s all about how you acquire music.â€</p></blockquote>
<p>Sounds good so far.  I read on expecting to find some yet undiscovered digital music strategy, or maybe an in-depth explanation of how the Zune&#8217;s Wi-Fi music sharing feature would be more than a gimmick and help Microsoft take some major market share back from Apple.<span id="more-41"></span>  Instead, what Mr. Orlowski presents is old news regurgitated in a not so new way.  I got the impression of Mr. Orlowski as someone who has joined the party extremely late and proceeded to tell stories or jokes that everyone has already heard.  Unfortunately for him, he gets the stories wrong, and ruins the punch-lines of the jokes.</p>
<p>The inaccuracies start right from the beginning, where he is wrong on two points:</p>
<blockquote><p>â€œThe iTunes store has been vital to the iPod&#8217;s success, which in turn has been the engine behind Apple&#8217;s recent growth. iTunes dominates the legal download market in the same way the iPod dominates the MP3 player business. It&#8217;s hard to remember now that for the first year of its life the iPod was a flop. But once Apple introduced iTunes for Windows, the mass market perception of the device changed from one of expensive luxury to convenience item.â€</p></blockquote>
<p>First off, the iTunes Store has NOT been vital to the iPod&#8217;s success, it&#8217;s the other way around, the iPod has been vital to the iTunes Store&#8217;s success.  The vast majority of people do not buy an iPod so they can use the iTunes store.  They buy one to listen to their own existing library of music, either ripped from CDs or acquired through file-sharing services.  It&#8217;s only after one installs iTunes that they will begin to discover the iTunes store.  It&#8217;s iTunes, the software, which has been vital to the iPod&#8217;s success, ensuring a streamlined consumer-friendly interface and simple, reliable syncing with the iPod.  Orlowski even debunks this inaccuracy later in the same article with this statement:</p>
<blockquote><p>â€œThe average iPod owner has done little more than dabble with Apple&#8217;s store, figures show, carrying an average of 21 iTunes-purchased songs. Extrapolate those numbers to the wider market and you&#8217;d have figures suggesting the public has suddenly stopped acquiring music. That clearly isn&#8217;t true &#8211; they&#8217;re simply getting it from other channels: physical and illegal-digital.â€</p></blockquote>
<p>So which is it Andrew?  Is the iTunes Store vital to the iPod&#8217;s success or is it just something that the average iPod owner simply dabbles with?  It clearly can&#8217;t be both.</p>
<p>Furthermore, describing the iPod as a flop in it&#8217;s first year is complete hogwash.  Compared to where it is now, it might be construed as such, but considering the iPod was first launched as a Macintosh only device, it was a roaring success, which explains why Apple even considered releasing a version for Windows.  In fact, <a href="http://en.wikipedia.org/wiki/Ipod#Sales" target="_blank">Apple sold over 1 million iPods</a> before releasing the Windows version in October, 2003, and nearly three-quarter million in it&#8217;s first year.  Only in Orlowski&#8217;s world can selling that many of something to a market that was only around 2% of the whole be considered a flop.</p>
<p>The article continues with a description of what the author believes the key factor in the iPodâ€™s success was: the convenience factor of not having to burn CDs.  Describing Apple&#8217;s original Rip, Mix and Burn campaign and how with the iPod it became simply Rip and Mix.  An accurate account in my opinion, but he fumbles badly with this lie:</p>
<blockquote><p>â€œOf course the cost of this convenience is pretty high &#8211; and is still born by the punter eventually &#8211; but the consumer perception of ease and convenience had to be there for the iPod to be a success.â€</p></blockquote>
<p>Of course the author is referring to the price of the iPod in his reference to the cost being pretty high.  Andrew Orlowski either doesn&#8217;t get paid very well by The Register for his articles, or he&#8217;s been hiding under a rock for the last few years of the iPod&#8217;s success.  The iPod shuffle launched in January 2005 for as little at $99 US, and the entry price <a href="http://www.ilounge.com/index.php/news/comments/apple-intros-1gb-ipod-nano-drops-shuffle-price/" target="_blank">dropped to $69 US</a> in February 2006.  The 2nd generation iPod shuffle, which ships next month <a href="http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wo/0.RSLID?mco=7F013154&#038;nclm=iPodshuffle" target="_blank">costs just $79 US</a>.</p>
<p>The dementia and misinformation continues:</p>
<blockquote><p>â€œToday, if you can get music industry types to agree on anything &#8211; and don&#8217;t forget the jostling between indies and majors, between publishers and recording rights holders puts any flame war in the shade &#8211; it&#8217;s that the iTunes Store isn&#8217;t the future of music. And after more than three years, this is a consensus that&#8217;s based not on wishful thinking, but empirical evidence.</p>
<p>Principally this is because iTunes doesn&#8217;t make money for anyone except Apple. In itself, the iTunes Store barely breaks even &#8211; but it fuels the much more lucrative downstream bit of the delivery system. iTunes sales remain vanishingly small as a proportion of the music business, but most importantly of all, iTunes doesn&#8217;t generate money for anyone except Apple. Broadband providers, PC manufacturers, insurance companies, and the battery-replacement services have all profited in some way from the iPod&#8217;s success &#8211; but no one in the music value chain. Steve Jobs doesn&#8217;t even leave crumbs on the table.â€</p></blockquote>
<p>Interesting.  Orlowski is obviously ignoring the fact that Apple&#8217;s iTunes Store sells 88% of all legal online music and that it is the number 5 retailer of ALL music (including physical media sales) in the US, <a href="http://arstechnica.com/news.ars/post/20051122-5611.html" target="_blank">up from number 10</a> just 10 short months ago.  Apple said they are on track to unseat the #4 position holder, Amazon.com, in 1H2007.  Back when they were only the number ten reseller, they were expected to account for 3.5% of all music sales in the US.  Now that they are the number 5 reseller, where does that put them?</p>
<p>But the big lie from that last quote is his assertion that iTunes doesn&#8217;t generate money for anyone except Apple.  A statement that seems perplexing given that in the very same paragraph, Orlowski states that the iTunes Store barely breaks even.  It&#8217;s already been <a href="http://www.time.com/time/2003/inventions/invmusic.html" target="_blank">public knowledge for a long time</a> that of the 99Â¢ Apple charges for an individual track on the iTunes store, 65Â¢ goes to the music label, 25Â¢ is distribution costs, leaving 10Â¢ for Apple, which gets eaten up by credit card fees and their own R&#038;D and infrastructure costs.  Of the 65Â¢ the record label gets, <a href="http://www.narip.com/index.php?page=article/Shrinking" target="_blank">the artist apparently gets 10Â¢</a>, which leaves the label with 55Â¢.  So it seams that contrary to the BS that Orlowski would have his readers believe, the artists make as much as Apple does, and the labels make about 5 times as much, while assuming none of the financial risks of the sales model, or any of the distribution costs.</p>
<p>Orlowski goes on to try to minimize the impact that the iTunes store has had by using misleading statistics, and throws in another lie to boot: </p>
<blockquote><p>â€œThe average iPod owner has done little more than dabble with Apple&#8217;s store, figures show, carrying an average of 21 iTunes-purchased songs. Extrapolate those numbers to the wider market and you&#8217;d have figures suggesting the public has suddenly stopped acquiring music. That clearly isn&#8217;t true &#8211; they&#8217;re simply getting it from other channels: physical and illegal-digital.</p>
<p>So in business terms, the iTunes Store is a deceptive chimera. Pakman has a joke he likes to illustrate it.<br />
&#8220;The iTunes Music Store [ITMS] buyer buys 25 songs in the first year, 15 in the second year, and in the third year, the battery has died, so you have to go out and buy a new iPod,&#8221; he says.â€</p></blockquote>
<p>In journalistic terms, Orlowski&#8217;s article is the deceptive chimera.  Dividing the number of iTunes Store songs by the total number of iPods holds no value whatsoever.  First off, what percentage of iPods ever sold are no longer in use?  Second, what percentage of iPod users actually buy music from iTunes?  The more accurate calculation would be to divide the number of iTunes Store sales with the number of customers who have actually purchased music from the service.  That would provide a more accurate benchmark and indicator of how the average iTunes customer uses the service.  As for the &#8220;joke&#8221; regarding having to replace the iPod&#8217;s battery after 2 years, this is baseless.  Of the three iPods I have owned, my first being an original 1st generation iPod purchased in December 2001 whose battery is still going strong and is used regularly by my brother.  My second, a 3rd generation 40GB model bought in spring 2003, is still going strong as well and is in regular use today, three and a half years later.  Orlowski&#8217;s joke reference also completely misses the fact that the batteries in most iPods can be replaced, either by Apple, third party resellers or the end-user themselves.  A fact he himself alluded to in the previous quote, but has conveniently forgotten just 3 paragraphs later in his article.</p>
<p>But this isn&#8217;t the first time Andrew Orlowski has spread this misinformation about the iPod&#8217;s battery and iTunes store sales.  I found an article dated March 2, 2006 titled <a href="http://www.theregister.co.uk/2006/03/02/dmf_2006_itms_numbers/" target="_blank">iTunes&#8217; long march to market share</a> in which he attributed the <strong>exact same joke</strong> about iTunes Store sales and the iPod&#8217;s battery to Aydin Caginalp, partner at the law firm Partner, Alston &#038; Bird:</p>
<blockquote><p>â€œThere are 21 songs bought from iTunes Music Store on the average iPod.&#8221;</p>
<p>But surely, you&#8217;ll point out, momentum is growing?</p>
<p>And here&#8217;s the third statistic to remember, which comes courtesy of Aydin Caginalp. He&#8217;s a partner at the law firm Partner, Alston &#038; Bird, and he specializes in entertainment law. Here is the reality behind the figure of 21 songs per iPod:</p>
<p>&#8220;The iTunes Music Store [ITMS] buyer buys 25 songs in the first year, 15 in the second year, and in the third year, the battery has died, so you have to go out and buy a new iPod.â€</p></blockquote>
<p>It became apparent at that moment that Andrew Orlowski&#8217;s latest article is simply a regurgitation of his previous eMusic article into a new one about the Microsoft Zune.</p>
<p>The article goes on about music subscription services, and how â€œevery company wants to be in subscriptions businessâ€, but ignores the fact that the majority of consumers don&#8217;t want anything to do with them.  <a href="http://arstechnica.com/news.ars/post/20060804-7426.html" target="_blank">Napster&#8217;s ongoing financial difficulties</a> is evidence of this.  That doesn&#8217;t stop Orlowski from trumpeting the success of eMusic, a company that has taken the far distant number two online sales position, despite the fact that eMusic isn&#8217;t a true subscription music plan.  A quick read of <a href="http://www.emusic.com/about/index.html" target="_blank">eMusic&#8217;s about page</a> reveals that the subscription only allows you to sample the music.  Customers have to pay extra if they want to own the music.  With Apple&#8217;s iTunes Store, you can sample all of the music they sell for free, and only pay when you decide to purchase it.  Of course, it seams ridiculous to compare eMusic to iTunes, given that eMusic doesn&#8217;t sell music from ANY of the major labels, and iTunes primarily sells music from the majors, but that doesn&#8217;t stop Orlowski:</p>
<blockquote><p>â€œFrom the labels point of view, eMusic is simply great for business. While it costs eMusic much more to run its store than Apple &#8211; because it&#8217;s offers much more than an &#8220;airport kiosk&#8221; looking to attract impulse hit-buyers &#8211; it&#8217;s more profitable. eMusic employs over a hundred people providing editorial content, and it works very hard on expert-generated and user-generated recommendations. But the value for labels is greater, because the eMusic store exposes material people woudn&#8217;t otherwise see. (In his desire to make the &#8220;Long Tail&#8221; a one-shape-fits-all buzzword/religious cult, author Chris Anderson wrongly lumps iTunes and eMusic together as examples of &#8220;Long Tail&#8221;, although one is, and one emphatically isn&#8217;t). eMusic fuels the value chain.â€</p></blockquote>
<p>Of course he fails to identify the REAL reason eMusic and other subscription services are better for business: because they are worse for the consumer.  They require the consumer to pay up front for music they might not even listen to.  eMusic&#8217;s monthly subscription fee is $9.99 for a maximum of 40 purchased tracks, $14.99 for 65 tracks or $19.99 for 90 tracks.  That&#8217;s in addition to the cost of each purchased track, which starts at 25Â¢ each.  So with the entry level subscription, each track brings in a minimum of 50Â¢ in revenue, less than half of what an iTunes purchase does.  Assuming the same distribution costs of iTunes, 25Â¢, that leaves just 25Â¢ per track to be shared between eMusic, the label and the artist.  That&#8217;s about a third of what is available from iTunes.  Better for business and the artist indeed.  Of course, the equation isn&#8217;t even valid, because eMusic will never get the major labels on board at those prices, and iTunes sells indie music and older back catalogue music for the same 99Â¢ per track, so the artists and labels make much more money on each iTunes track than with eMusic.</p>
<p>The author goes on to repeat the iPod battery lie and adds a long-debunked iTunes Store fallicy with this tidbit:</p>
<blockquote><p>â€œWhat Apple has, then, is a subscription scheme for buying hardware &#8211; each device rapidly expires, and there is only one supplier providing a repeat purchase that&#8217;s compatible with your iTunes Store purchases. What the music business wants is a subscription scheme for buying music. Somewhere, in the middle they may one day meet.â€</p></blockquote>
<p>We&#8217;ve already identified the first part as being misleading a few paragraphs up, so I won&#8217;t bother going into it again.  The assertion that Apple is the only supplier that provides devices to listen to iTunes Store purchases on, is so ridiculously false, I can&#8217;t believe Orlowski even thinks he can get away with it.  How he can completely miss that iTunes purchases can play in iTunes, which runs on any personal computer that runs Windows XP or Mac OS X, as well as the iTunes equipped mobile phones made by Motorola, is a complete mystery to me.  Of course, if he could miss those most obvious of iTunes Store uses, it&#8217;s understandable that he would miss the simple fact that each and every iTunes purchase can be burned to audio CD an unlimited number of times and played on any consumer CD player on the market.  For shame Mr. Orlowski, for shame.</p>
<p>Andrew Orlowski is so out of touch with the realities of the digital music market, that he has convinced himself, and attempts to convince his readers, that subscription music services are in huge demand:</p>
<blockquote><p>â€œ(Unless &#8230; they agree they&#8217;d shift more respective units under a flat fee. With a universal subscription, we suspect, Apple couldn&#8217;t build iPods fast enough to meet demand, and would begin to rival GM in size. It has the best digital music player, bar none.)â€</p></blockquote>
<p>With numerous music subscription services on the market for years, and none of them denting iTunes sales, there is absolutely nothing to support his suspicion that people want to pay a monthly subscription for music.  Period.  In fact, <a href="http://hypebot.typepad.com/hypebot/2006/08/trouble_ahead_a.html" target="_blank">the opposite is true</a>.  Subscription consumers should take note, since they lose 100% of their investment if the company ever goes under, since the only way to listen to your subscription music is to keep paying the provider to maintain your subscription&#8217;s status.</p>
<p>So where&#8217;s the Microsoft Zune angle to this article?  It finally materializes in the last two paragraphs:</p>
<blockquote><p>â€œWhere does Zune offer Microsoft some hope? Surely not in the Soviet-style industrial design &#8211; and surely not from gimmicks such as disappearing, time-bombed songs. Or the fact it brings another incompatible DRM scheme to the public. And while it may do more than the iPod, unless it does the basics very well or better, it&#8217;ll suffer the same fate as Microsoft&#8217;s phones. Which also do lots of things, none of them particularly well, and which only gadget-heads want to be seen with.</p>
<p>But where Microsoft can gain some rare good-will from the music business is by nudging the public to a subscription model. Not something in the company&#8217;s DNA, you may say, but there are plenty who want to see Apple nudged there too.â€</p></blockquote>
<p>Orlowski finally gets something right, summing up the shortcomings of the Zune quite succinctly in that first paragraph, although I feel mentioning the fate of Microsoft&#8217;s phones without mentioning <a href="http://www.playsforsure.com/" target="_blank">PlaysForSure</a> or MTV&#8217;s URGE seems nonsensical to me.  It becomes even more silly in that last paragraph where he makes it sound like the Zune is the first device/business model to ever push subscription services.</p>
<p>Ignoring Microsoft&#8217;s widely adopted PlaysForSure or the Microsoft/MTV URGE alliance shows a real lack of familiarity with the goings on in the portable mp3 player and online music market.  Andrew Orlowski seems to have either never heard of, or conveniently forgotten, that Napster, Real Rhapsody and Microsoft have been peddling music subscriptions to the masses for a couple of years already with little success.  He also fails to provide any insight whatsoever about why Zune and Zune Marketplace will be any different.</p>
<p>All of the above raises real questions about why The Register wastes their time posting the poorly researched ranting of Mr. Orlowski.  Doing so does nothing but damage The Register&#8217;s credibility.  I would suggest Andrew Orlowski spend a bit of time researching his topics better, otherwise stick with writing about topics he is knowledgeable about as it&#8217;s obvious he has no clue about the online digital music market, Apple, iPods or the iTunes Store.  Pretending to have one doesn&#8217;t help his reputation as a columnist and does a disservice to his readers.  I suspect Mr. Orlowski is one of the reasons why el Reg doesn&#8217;t have a reader feedback system.  In the meantime, he will remain one of The Register&#8217;s weakest writers.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/17/the-registers-achilles-heel-andrew-orlowski/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft releases Zune details, world yawns</title>
		<link>http://artofgeek.com/2006/09/15/microsoft-releases-zune-details-world-yawns/</link>
		<comments>http://artofgeek.com/2006/09/15/microsoft-releases-zune-details-world-yawns/#comments</comments>
		<pubDate>Fri, 15 Sep 2006 21:46:45 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPod/iTunes]]></category>
		<category><![CDATA[DAP]]></category>
		<category><![CDATA[digital audio player]]></category>
		<category><![CDATA[media player]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[mp3 player]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2006/09/15/microsoft-releases-zune-details-world-yawns/</guid>
		<description><![CDATA[<p>Microsoft finally went all official on some Zune details today, confirming many of the rumors that have been floating around the &#8216;net for a while now.  The photos that were leaked weeks ago and confirmed from an FCC filing made by Toshiba were the real deal.  As rumored, the first Zune device will [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image37" src="http://artofgeek.com/wp-content/uploads/2006/09/brownzune.jpg" class="alignleft" alt="Brown Zune" />Microsoft finally <a href="http://www.microsoft.com/presspass/presskits/zune/default.mspx">went all official</a> on some Zune details today, confirming many of the rumors that have been floating around the &#8216;net for a while now.  The photos that were leaked weeks ago and confirmed from an FCC filing made by Toshiba were the real deal.  As rumored, the first Zune device will have a 30GB hard disk, 3-inch colour screen and Wi-Fi wireless connectivity for music sharing.  It will be available in three colours:  white, black and brown.  There will also be an accompanying online media store called Zune Marketplace and Zune media player software.  Zune will supposedly go on sale this holiday season, but no price or release dates were revealed.  Rumors pegged the price of the device at $299 US.  We&#8217;ll have to wait to find out whether that is accurate.</p>
<p>So how big is it?  While Microsoft hasn&#8217;t released any physical dimensions for the Zune, it&#8217;s easy enough to extrapolate the length and width using the screen size as a reference.  The Zune&#8217;s screen is 3&#8243; (7.6 cm) measured diagonally.  Based on the hi-resolution photos Microsoft has released, that would make it 4.3&#8243; (10.9 cm) long by 2.3&#8243; (5.8 cm) wide.  Discerning the device&#8217;s thickness is much more difficult due to the lack of any photo of the device&#8217;s profile, and the fact that it has a bevelled edge.<span id="more-38"></span>The only photo we have to go by is a three-quarter view lifestyle shot.  Our best guess, based on extrapolation of scale, is the unit will be about 0.5&#8243; (13 mm) thick.  So it&#8217;s slightly longer, narrower and thicker than the <a href="http://www.apple.com/ca/ipod/specs.html">30GB 5G iPod</a>.  Overall, the Zune is about 16% larger in volume than the same capacity 30GB iPod but 8.5% smaller than the 80GB iPod.</p>
<p><img id="image39" src="http://artofgeek.com/wp-content/uploads/2006/09/zune-white-3quarter-view.jpg" width=48% class="alignright" alt="Zune Lifestyle Photo" />The Zune doesn&#8217;t have a scroll wheel like the iPod.  That round scroll-wheel looking control is really only a 4-way navigation button.  Once again Microsoft demonstrates it isn&#8217;t above making their technologically inferior user interface look like the technology leader&#8217;s.  I&#8217;m sure it will fool a few unsuspecting customers though.  I can only imagine how fun it will be scrolling through a library of thousands of songs with a fixed speed button.  The Zune also appears to have some sort of proprietary dock connector on it&#8217;s bottom edge, no doubt in an attempt to encourage third party development of connectible accessories as the iPod&#8217;s dock connector has.</p>
<p>From a file format perspective, the Zune supports pretty much all the same formats the iPod does, but adds WMA and WMV formats (of course).  At least Microsoft is being somewhat realistic about acknowledging that they have lost the format war in the portable space.  There&#8217;s a reason they&#8217;re called PodCasts after all, and iTunes rips CDs to industry standard AAC format, so Microsoft is obviously going after current iPod/iTunes users by supporting the formats they already have.  Strangely however, Microsoft has decided to not support Mac users, so for now, Mac owning iPod/iTunes users will remain out of Microsoft&#8217;s reach.  Maybe Microsoft felt it would be futile to try to convert users who are already familiar with more than one of Apple&#8217;s superior products.  So Microsoft is going to concentrate on the rest of users who don&#8217;t know any better (yet), only there&#8217;s one problem:  people who already own an iPod, have already made a conscious decision to not use a Microsoft infested product.  What&#8217;s the likelihood that they are going to switch BACK?  Is the Zune that much better?</p>
<p>The answer to that question is NO.  The Zune amounts to a cheap knockoff of the iPod, with a gimmicky feature (Wi-Fi), a cheap plastic case and a bigger screen.  No scroll wheel.  No iTunes.  No 80GB model.  On top of that, Wi-Fi and a bigger screen are going to put additional load on the battery, so expect to see lower battery life on the Zune, but I assume Microsoft will play with the numbers to make it look like the battery life is as good or better.  This is easily done by measuring battery life while playing files encoded with unrealistically low bitrates to reduce the CPU workload.  At least that&#8217;s what many PlaysForSure device vendors do.  Price-wise, I fully expect Microsoft to bite the bullet and offer the Zune for the same price as the 30GB iPod ($249 US), although rumors had pegged the price at $299 US, which coincidentally was what the 30GB iPod used to sell for.  Microsoft will be happy to lose money on this product for years to come, just as they do in many other markets.</p>
<p>So with the bigger screen and no doubt lower battery life being a wash, the only thing going for the Zune is the FM tuner and Wi-Fi social networking experiment.  The total dominance of the iPod has pretty much proved that the majority of customers aren&#8217;t interested in listening to static-filled FM signals.  I&#8217;m sure some Ã¼ber-geeks and teenagers are going to thing Wi-Fi is a neat idea, but in practice, how much are people really interested in listening to other people&#8217;s music?  When people listen to an iPod, they want to switch off from the world or entertain themselves while they do something else by themself.  It&#8217;s an anti-social activity, and try as they might, Microsoft is not going to be successful in turning it into a social one.  Not to mention this music sharing feature only works with other Zunes. How often are people going to run into someone else with one?</p>
<p>The most likely scenario for Zune&#8217;s Wi-Fi sharing is teenage friends who hang out together at school or wherever, but they have already shared their music libraries a long time ago via their computers.  From the looks of it, the sharing will only work for music purchased from the Zune Marketplace, as it will require DRM to limit sampling to 3 listens over 3 days.  Microsoft would come under the wrath of the RIAA if they allowed unprotected music to be transferred at will.  So kids and teenagers will have no use for it, since they don&#8217;t buy a lot of music and Adults won&#8217;t have any use for it because they have better things to do with their time and it will more than likely just confuse them like the advanced features on their cell phones.</p>
<p>Let&#8217;s face it, Zune is no iPod killer.  It isn&#8217;t even an iPod annoyer.  In fact, the only chance Microsoft has of making a market for the Zune is to integrate it closely with their XBox 360 console and add Zune Marketplace to the <a href="http://en.wikipedia.org/wiki/Xbox_live">XBox Live</a> online service.  At least then it will offer something tangible to a select market: people who own an XBox 360 but don&#8217;t own a computer.  They won&#8217;t take over the digital music market with that strategy, but they could move a few thousand units to die hard XBox 360 fans.  Zune is just another product from Microsoft that proves they have no creativity or scruples.  There are dozens of media players out there that are better than the Zune, and that&#8217;s before we consider the iPod.  Microsoft has stabbed every one of their <a href="http://en.wikipedia.org/wiki/PlaysForSure">PlaysForSure</a> partners in the back with the Zune, and this will come back to haunt them one day.</p>
<p><img id="image40" src="http://artofgeek.com/wp-content/uploads/2006/09/jallardinterview.jpg" class="alignright" alt="J Allard" />Microsoft has also sent mixed signals with their Zune strategy.  First, they were all about giving consumers choice, and now it&#8217;s about no choice, since Zune won&#8217;t play nice with PlaysForSure or Macs.  In a recent <a href="http://www.engadget.com/2006/09/14/the-engadget-interview-j-allard-microsoft-corporate-vice-presi/">interview with Engadget</a>, MS Corporate VP J Allard had some interesting things to say about PlaysForSure:</p>
<blockquote><p><strong>Engadget: So up until this point Microsoft&#8217;s digital music strategy has been largely to create an ecosystem and be a supplier of a DRM platform to manufacturers and online music stores. PlaysForSure was the thrust of Microsoft&#8217;s strategy until the announcement of the Zune. How does PlaysForSure fit into Microsoft&#8217;s strategy going forward? It doesn&#8217;t appear that the Zune will be compatible with any PlaysForSure retailers. How does that affect Microsoft&#8217;s current partners who rely on PlaysForSure?</strong></p>
<p>I think there&#8217;s two answers to the question. First answer is, this whole digital music revolution is really just starting. There&#8217;s still a lot to be figured. We certainly don&#8217;t think we have it all figured out, and we think there will be change. The second thing is that specifically when it comes to PlaysForSure, think about you might buy a Windows PC versus how my mother might buy a Windows PC. My mom calls up Dell and says, &#8220;I have seven hundred bucks, get me a computer. What&#8217;s the best thing I can get?&#8221; She doesn&#8217;t specify the keyboard, the monitor, the memory configuration. The conversation might get as specific as, &#8220;Do you think you want to burn DVDs?&#8221; Then she gets a product that shows up and it&#8217;s all pre-installed.</p>
<p>There are other people that go to Fry&#8217;s Electronics and hand pick the graphics card, the case for their computer, they build a Windows-based PC from the ground up. We have a solution for both of those things. We at Microsoft have a platform that is Windows, we have a solution for the crowd of consumers that are very deliberate about how they build their PC solution, and we also have a solution for people who just want turnkey. And I think that&#8217;s how these two strategies complement each other. The PlaysForSure is still a program we&#8217;re going to invest in, we still have a lot of partners there, and for a class of consumers who that want to have a hand-crafted media media experience and maximize their choice, we have an answer. There&#8217;s another class of consumers that just want to get digital media, and they just want to be able to go to one store and have it all just plain, dead simple, and don&#8217;t want to know what a codec is.</p>
<p><strong>Engadget: Wasn&#8217;t that the point of PlaysForSure?<br />
</strong><br />
Well, it&#8217;s like asking a question about Windows &#8212; and the point of Windows was to bring personal computing to the world &#8212; some people are going to pick their PCs, they&#8217;re going to pick their monitor, they&#8217;re going to pick their printer, they&#8217;re going to pick their graphics card, and combine the things that they&#8217;ve chosen. Other people just a want a system that&#8217;s end-to-end &#8212; all compatible out of the gate &#8212; and that&#8217;s what Zune does. Zune says there is no choice; you get a Zune device, you hook it up to the Zune service, and it just works.</p>
<p><strong>Engadget: When PlaysForSure was introduced, the premise was, we make it simple so that you don&#8217;t have to worry about whether your player works with the music you&#8217;re purchasing&#8230;<br />
</strong><br />
That continues to be the premise for devices that are branded in that category, and we think that we&#8217;ve clearly done a lot in that program, where there&#8217;s a lot of devices out there, there are a lot of services out there, there are a lot of partners, and there are a lot of satisfied customers. We like that program. We&#8217;ve also found that there&#8217;s a category of customers that say, &#8220;Give me a brand experience, advertise it to me on television; I want to be part of the digital music revolution, and that solution [PlaysForSure] doesn&#8217;t work for me.&#8221; So they&#8217;re two complementary solutions &#8212; not everyones gonna want Zune and not everyone&#8217;s gonna want PlaysForSure. They&#8217;re different paths there, and we&#8217;re okay with both of them. </p></blockquote>
<p>Spoken like a Politician.  I&#8217;m sure your PlaysForSure hardware and online store partners are okay with both strategies too Mr. Allard. <img src='http://artofgeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />   What I&#8217;d like to know is who are all these people who are <em>asking</em> for a brand experience?  People buy the iPod because it just works and works damn well.  They don&#8217;t buy them because they are craving a brand experience and want it to be advertised to them on TV.  Sure, the advertising may be part of the reason they decide to buy an iPod, but that&#8217;s not the same as people <em>asking</em> to be advertised to, and in a way that&#8217;s insulting to the people who Microsoft is targeting with the Zune.</p>
<p>Allard and Microsoft can dance around it all they want, but the truth is they are getting their asses handed to them on a plate by a company that they are used to beating.  Their strategy for the last 5 years, including PlaysForSure, has failed to stop the Apple juggernaut.  So what does Microsoft do?  They fall back on what HAS worked for them in the past:  copying Apple as closely as they can.  Only Apple has already won, and people don&#8217;t want what Microsoft is offering anymore.  Zune will contribute to Microsoft&#8217;s failure, as consumers get even more confused by the alternatives to the iPod and <a href="http://www.invbiznews.com/wordpress/?p=464">Microsoft&#8217;s partners start to turn against them</a> in a desperate attempt to hold onto what little market share they still have&#8211;Apple really should be thanking Microsoft for making it so damn easy to kick their ass.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/15/microsoft-releases-zune-details-world-yawns/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Apple strengthens iPod, iTunes offerings,reveals living room strategy</title>
		<link>http://artofgeek.com/2006/09/13/apple-strengthens-ipod-itunes-offerings-reveals-living-room-strategy/</link>
		<comments>http://artofgeek.com/2006/09/13/apple-strengthens-ipod-itunes-offerings-reveals-living-room-strategy/#comments</comments>
		<pubDate>Wed, 13 Sep 2006 16:39:54 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPod/iTunes]]></category>
		<category><![CDATA[?TV]]></category>
		<category><![CDATA[Apple TV]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iTunes Store]]></category>
		<category><![CDATA[iTV]]></category>

		<guid isPermaLink="false">http://artofgeek.com/2006/09/13/apple-strengthens-ipod-itunes-offerings-reveals-living-room-strategy/</guid>
		<description><![CDATA[<p>Something strange is going on at Apple these days.  First there was that un-Job&#8217;s like shared performance at WWDC&#8217;06, then Apple releases a new high-end 24&#8243; iMac with little fanfare a week before a scheduled press event.  Now we have Steve Jobs trotting out on stage wearing a black dress shirt?   [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image25" src="http://artofgeek.com/wp-content/uploads/2006/09/new_ipods.jpg" class="alignleft" alt="New iPods" />Something strange is going on at Apple these days.  First there was that un-Job&#8217;s like shared performance at WWDC&#8217;06, then Apple releases a new high-end 24&#8243; iMac with little fanfare a week before a scheduled press event.  Now we have Steve Jobs trotting out on stage wearing a black dress shirt?   Where the hell is the black mock turtleneck?!?  To top that all off, just to throw us all off, not only did Steve bring back his &#8220;one more thing&#8230;&#8221; encore, which was curiously absent from the WWDC&#8217;06 keynote, but he followed that up with &#8220;there&#8217;s one last thing&#8221;!  Highly irregular.  </p>
<p>Apple has been growing in leaps and bounds over the last 2 years, and I think they are finally starting to embrace the fact that they are a consumer and corporate powerhouse.  They&#8217;ve got everyone&#8217;s attention, so it isn&#8217;t necessary to make a big deal out of every product revision.  People know what an iMac is, and sure, a 24&#8243; model is an impressive addition to the line-up, along with faster processors, but they don&#8217;t need to waste time and effort telling people about it, because people will find out about it just the same.  One of the side benefits is that product sales should take less of a hit leading up to major annual events such as MacWorld and WWDC as people come to realize that those events are no longer synonymous with new Macs or iPods.  With the fierce pace of new product development going on at Apple, it had to happen sooner or later.  More PR time is needed to show off new products, so established product lines can afford to take a back seat from the PR machine.<span id="more-26"></span></p>
<p>As for Steve Job&#8217;s change in wardrobe, I suspect being on Disney&#8217;s board may be influencing him to try new things.  Either that or his supplier of mock turtlenecks has discontinued the style.  Regardless, my only questions are what took him so long, and would it kill you to try a different colour?  Baby steps I suppose.  At this rate, we&#8217;ll see him in a blue dress shirt in about 4 or 5 years.</p>
<h3>Say hello to the new iPods</h3>
<p>Yesterday&#8217;s announcement was all about Apple&#8217;s consumer electronics and media business.  Apple took the wraps off upgrades to all three iPod lines, beginning with the top end hard disk based iPod.  The new 5.5G iPod, which is available immediately, offers higher capacity on the high end (80GB, up from 60GB) and better battery life for both models.  When watching video, Apple claims the 30GB model will provide 3.5 hours of viewing, up from 2, and the 80GB model provides 6.5 hours of viewing time, up from 3 hours&#8211;a very welcome improvement for those who felt the previous model&#8217;s battery life was anemic for watching videos.  A brighter screen, new software features and some useful tweaks to the UI such as a navigation aid that displays the location in the alphabet in translucent letters as you scroll through your music round out this update.  The latter feature was seemingly borrowed from the <a href="http://backstage.ilounge.com/index.php/backstage/comments/zune-interface-features-detailed/?www.reghardware.co.uk" target="_blank">recently leaked details</a> on Microsoft&#8217;s yet to launch Zune device.  This illustrates one problem Microsoft will have competing with Apple:  if they are going to always be behind in getting new features to market, and are unable to keep their details secret, Apple is always going to be able to beat them to the punch.</p>
<p><img id="image27" src="http://artofgeek.com/wp-content/uploads/2006/09/new-ipod-5g.jpg" class="alignleft" alt="New iPod 5G" />The biggest news regarding the new 5G iPod has got to be the addition of games that can be purchased and downloaded off of the iTunes music store.  Nine titles are available, including classics like Bejeweled, Pac-Man, Tetris, Mahjong and Texas Hold-Em were announced, although more will likely follow.  These new games look nothing like the simple games which have shipped on the iPods previously.  They are graphically rich and colourful, looking as good or better than the latest mobile phone games.  Like the addition of video, the game implementation continues to demonstrate Apple&#8217;s ability to add value and functionality to the iPod product line without detracting from the product&#8217;s core appeal as a music player.  Improvements such as gapless playback, music search and redesigned earbuds are testament to the fact that Apple hasn&#8217;t forgotten what people primarily buy iPods for.</p>
<p>While the current generation iPod isn&#8217;t going to be a challenger to the Sony PSP or Nintendo DS, it&#8217;s clear that Apple is waking up to the commercial potential of mobile gaming.  Sony and Nintendo would be wise to keep an eye on Apple&#8217;s movements in this space.  Sales of games for mobile phones are earmarked to be $2.4 billion USD this year and are <a href="http://www.theregister.co.uk/2006/08/16/informa_mobile_gaming/" target="_blank">expected to reach $7.2 billion a year by 2011</a>.  The new iPod game offerings seem intended get a piece of that pie.  As the iPod gets more and more power and storage, we may see it become a more serious game platform in the future, and the iTunes Store is a killer distribution model for a video games, given how much of a problem the video game industry has with keeping up with demand of hot titles.</p>
<p>This also marks the first time Apple has allowed third parties, like EA, to write software for the iPod, although they still maintain control over what software makes it onto the iPod via the iTunes Store, for now.  The choice to allow the games to play on all 5G iPods indicates that Apple is viewing it more as a new revenue stream and not just a means to sell new iPods, otherwise they could have easily excluded the previous models in order to force owners to upgrade.  In fact, with new lower prices of $299 and $399 CDN ($249 and $349 US), it&#8217;s not hard to imagine that Apple may be starting to look to the iPod as the razor that will help them sell more media (the razor blades) via the iTunes Store.</p>
<p><img id="image28" src="http://artofgeek.com/wp-content/uploads/2006/09/new-ipod-nano-line.jpg" class="alignright" alt="New iPod nano line" />The redesigned iPod nano has gone back to the aluminum case design from the old iPod mini, a very welcome change, given how much negative PR Apple got regarding the first generation nano&#8217;s tendency to be easily scratching.  Unbelievably, the new nano is even thinner than the previous one, while doubling the storage capacity (2,4 and 8GB) and nearly doubling the battery life (from 14 to 24 hours) at the same price points.  The new nano also has a brighter screen, text search and letter index display from the 5.5G iPod.  In another tribute to the iPod mini, the 2G nano is available in 5 different colours: the 2GB model in silver only, the 4GB model in blue, green, pink or silver, and the 8GB model in black only.  All models are available immediately priced at $169, $229 and $299 CDN ($149, $199 and $249 US).  There is no doubt in my mind that the 2G iPod nano will be even more successful than it&#8217;s predecessors, the 1G nano and iPod mini.  Both of which were hugely successful in their time.  Apple is doing it&#8217;s part by promoting the 2G iPod nano with a new TV, transit, billboard and magazine advertising blitz.</p>
<p><img id="image29" src="http://artofgeek.com/wp-content/uploads/2006/09/new-ipod-shuffle-pocket.jpg" class="alignleft" alt="iPod shuffle pocket" />Of all the iPods, the shuffle has gone through the greatest redesign.  Like it&#8217;s bigger brother, the nano, the shuffle is now clad in aluminum, but has been shrunk to a fraction of the size of the old pack of gum sized model.  It&#8217;s truly an amazingly small device, which Apple has dubbed the world&#8217;s smallest mp3 player.  The unit also features a built-in clip for affixing it to clothing.  Gone are the built-in USB connector (a step back, from the convenience standpoint, IMHO), which has been replaced by a charging/syncing USB dock which appears to use the headphone jack for connectivity and power.  The new shuffle will be available in October in a 1GB model only for $89 CDN ($79 US) and is otherwise feature-identical to the models it replaces.  The new shuffle is a major improvement overall from the previous model, but I think it will lose a bit of it&#8217;s appeal for those who saw the shuffle as a combination flash thumb drive and mp3 player.  Having to carry around the sync/charge cable and dock on long trips makes the new shuffle a little less road warrior friendly, but the smaller size will make up for that somewhat.</p>
<h3>iTunes the software, iTunes the store</h3>
<p>The second part of yesterday&#8217;s announcement focused on an updated version of iTunes software and updates to the iTunes Store.  iTunes 7, available as a free download now for Windows and Mac, is a major update with some nice UI tweaks and much wanted features such as gapless playback, support for multiple libraries on multiple hard disks and a &#8220;backup to disc&#8221; feature.  iTunes 7 will also automatically download&#8211;for free&#8211;any missing artwork for songs in your library, provided you have an iTunes Store account, and the song exists in the iTunes store.  This feature alone will be worth the upgrade for a lot of people.</p>
<p><a href="http://artofgeek.com/wp-content/uploads/2006/09/itunes7screenshot1png.png" target="_blank"><img id="image30" src="http://artofgeek.com/wp-content/uploads/2006/09/itunes7-screenshot1-thumb.png" class="alignright" alt="iTunes iPod Screen" /></a>The sources list is now broken up into categories with separate library items for Music, Movies, TV Shows, Podcasts, Audiobooks, etc.  There is a Store category which contains iTunes Store, Purchased Music and a new downloads manager.  A devices category will display any connected iPods or iTunes compatible phones, and you can now manage all device settings from here instead of having to go into the iTunes preferences.  They have even integrated the iPod updater into iTunes, so you no longer have to run a separate utility to update or initialize your iPod, as seen in the picture on the right (click to enlarge).</p>
<p><a href="http://artofgeek.com/wp-content/uploads/2006/09/itunes7-album-group-view.png" target="_blank"><img id="image31" src="http://artofgeek.com/wp-content/uploads/2006/09/itunes7-screenshot2-thumb.png" class="alignleft" alt="iTunes 7 Album Group View" /></a><a href="http://artofgeek.com/wp-content/uploads/2006/09/itunes7-album-browse-view.png" target="_blank"><img id="image31" src="http://artofgeek.com/wp-content/uploads/2006/09/itunes7-screenshot3-thumb.png" class="alignleft" alt="iTunes 7 Album Group View" /></a> Two new views have been added, both designed to let you explore your music visually using album art.  Album view (top image on the left, click to enlarge) displays each album&#8217;s songs next to the album cover, if available, and is pretty much like sorting your list by album, only with the addition of the artwork being displayed to the left side of each album.</p>
<p>The second new view is by far the most impressive feature of iTunes 7, cover flow view (bottom picture on the left, click to enlarge).  Cover flow view shows you all your album cover art and allows you to flip through your albums quickly in a fluid 3D animated view that has to be seen to be believed.  You can use your mouse scroll wheel, two finger trackpad scrolling or the scroll bar to quickly flip through your entire collection visually.  I can see why they added the free artwork download feature.  This view mode would be useless if you didn&#8217;t have any artwork.  Of course those of you who haven&#8217;t been bothered to enter artist and album ID3 tags for most of your music are going to have a new reason to want to clean up their music library.</p>
<p>Another new feature that will be much heralded by iPod users is the ability to sync the purchased media on your iPod with more than one authorized computer.  Great for keeping the music on your work and home computers up to date, although it appears that Apple hasn&#8217;t changed it&#8217;s stance on not making music piracy easy since this feature only works with purchased content.  All in all, I&#8217;m impressed with this new version of iTunes, and I think it&#8217;s safe to say it&#8217;s one of the biggest updates iTunes has ever seen, helping to ensure iTunes maintains it&#8217;s supremacy.</p>
<p>The iTunes Music Store has been re-christened as simply The iTunes Store, finally dropping the term &#8220;music&#8221; from it&#8217;s name, a logical move given they have sold TV shows for nearly a year and the addition of games.  Even more logical since yesterday&#8217;s announcement of the addition of feature length motion pictures to the iTunes store.  No big surprise given Apple&#8217;s choice of theme for the event.  I think everyone saw this coming, especially after the launch of Amazon&#8217;s Unbox movie download service, which I covered in a <a href="http://artofgeek.com/2006/09/08/amazon-unbox/" target="_blank">previous article</a>.  As predicted, Apple&#8217;s initial offering is limited to Disney owned properties, including Disney, Pixar, Touchstone Pictures and Miramax films.</p>
<p>Steve Jobs was quick to point out that when iTunes launched TV program downloads, they started with only 1 network and 5 shows, but less than a year later they have grown that library to 220 shows on 40 networks.  No doubt they will gain support from the other major studios over time.  Movies, like TV programs are only available in the US for now, but Apple plans to go international in 2007.</p>
<p>Pricing is pretty much what was predicted, and similar to Amazon&#8217;s offering, with the exception of a lower price of $12.99 US for new releases when pre-ordered and during opening week, going up to $14.99 after the first week.  Older titles will sell for $9.99 US every day.  New releases will go on sale at the same time as the DVD release, which is important if Apple and Disney hope to offer an alternative to DVD.  So far Apple has stuck with it&#8217;s strategy of only selling content, staying away from the rental model that Amazon Unbox offers.  This is a positive for Unbox, as it will likely allow Amazon to stay relevant by differentiating itself in the face of competition from iTunes&#8217; 800lb gorilla.</p>
<p>Apple has also upped the resolution of all video downloads to 640&#215;480 from 320&#215;240, for a 4x increase in resolution.  I haven&#8217;t been able to nail down exactly what Amazon&#8217;s Unbox video resolution is, they say it&#8217;s DVD quality, which should mean 720&#215;480, but no one has any exact numbers yet, so the jury is out on whether they have a slight advantage or not.  Regardless, the bump in resolution is a welcome improvement. Video now also features &#8220;Dolby Surround&#8221;, I can only assume that means Dolby Digital, but can&#8217;t say for sure.  I just feel sorry for anyone who has purchased a lot of video content from the iTunes Store at the lower resolution.  No mention was made if those customers will be allowed to download the higher-res version.  I wouldn&#8217;t hold my breath though.  Usage rights is the same as for TV shows and music, 5 computers and an unlimited number of iPods.  Like Amazon&#8217;s offering, movie purchases cannot be burned to standard DVD video disks, although they can be streamed over a home network and played on a TV connected to any Mac via Mac OS X&#8217;s FrontRow interface and Apple remote.  But&#8230;</p>
<h3>&#8230;there&#8217;s just one last thing.</h3>
<p><img id="image33" src="http://artofgeek.com/wp-content/uploads/2006/09/itv-back.png" class="alignright" alt="iTV Back" />In usual Apple style, Jobs saved the most interesting announcement for last, although it came in the form of a sneak peak rather than a product announcement.  Apple&#8217;s final link to the video playback puzzle, the box that will allow you to play your iTunes Store TV and movie purchases on your big screan TV, is a box code named &#8220;iTV&#8221; which is expected to launch in the first quarter of 2007.  Resembling a half-height Mac mini, this box will connect to a TV via HDMI or component video, and has analog and digital optical audio outputs.  A built-in power supply means no external transformer to clutter the space behind your home entertainment center.  Connectivity comes in the form of ethernet, 802.11 wifi (they didn&#8217;t specify which flavor, I suspect this means it may be the upcoming N variety) and a USB 2 port, presumably for hooking up an iPod or maybe an optional optical drive.</p>
<p>The whole thing will operate using the now standard Apple 6-button remote using an on-screen interface similar to FrontRow, although slightly reworked.  Steve Jobs demoed it, and it just worked and worked well.  The only thing I think that is missing is an optical drive for playing back your content that you&#8217;ve backed up to DVD or CD media.  The way the device was presented, it required everything to be on your computer.  Unless Apple releases some kind of â€˜XRaid Homeâ€™ media server, this is going to be a pain as it will require you to load the media you want to watch onto one of your Macs or PCs, unless they release a stackable DVD drive option for it that plugs into the USB 2 port.  More advanced users will be better off with a Mac mini in their home theatre setup because of the wider support for formats and the ability to play DVDs and media stored on CD and DVD-R.  But a lot can happen in 4-6 months, and it&#8217;s possible Apple might make changes based on feedback they get.  They sort of tied their hands by pre-announcing the price, $299 US, making the iTV a more consumer friendly, lower priced alternative to a Mac mini.</p>
<h3>Impressions, MIA</h3>
<p>My overall impression of yesterday&#8217;s â€œIt&#8217;s Showtimeâ€ event was that it was a strong update of it&#8217;s extremely successful iPod/iTunes business lines, which extends Apple into new territory:  feature film and mobile games.  The announcement was an even bigger deal from the standpoint of drawing a clearer picture of Apple&#8217;s strategy for the next year.  If Apple&#8217;s midas touch can indeed be applied to these new markets, it&#8217;s not hard to imagine them becoming considerable revenue streams going forward, helping to cement Apple&#8217;s dominance in digital media even further.  It appears the rumors of the decline of the iPod and iTunes store were greatly exaggerated.  Apple now has an 88% market share of the legal US download market, up from 82% in May.  Apple is the number 5 seller of ALL music in the US, moving up behind the likes of Wal-Mart, Best Buy, Target and Amazon.  No small feat, given that Apple only sells digital media online whereas the other 4 resellers on the list still pawn physical CDs.</p>
<p>So what of the widescreen, touch screen iPod and Apple iPhone?  Most reputable sources didn&#8217;t expect Apple to announce either at yesterday&#8217;s event, and the word on the street is we shouldn&#8217;t expect to see either until some time next year, if at all.  I still have my doubts of whether a touch screen iPod will actually see the light of day, given the tendency of touch screens to attract scratches and fingerprints, but I&#8217;m not willing to rule it out completely.  I think the iPhone would be a sure-fire hit.  There are so many people who are dissatisfied with their cell phone experience, that would gladly ditch it for a mobile phone with the iPod&#8217;s industrial design and simplicity.  Pressure in the mp3 player market from newer mobile phones with competing capacities to the lower-end iPods will most likely eventually force Apple to enter that space, but not before they are good and ready.  The mobile phone market is a fiercely competitive and complex market.  If Apple enters it, it will have to be from an aggressive position, not a defensive one, which means they have to make sure they&#8217;ve done their homework.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/13/apple-strengthens-ipod-itunes-offerings-reveals-living-room-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon Unbox: Reading the fine print</title>
		<link>http://artofgeek.com/2006/09/08/amazon-unbox/</link>
		<comments>http://artofgeek.com/2006/09/08/amazon-unbox/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 04:30:10 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon Unbox]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://www.artofgeek.com/2006/09/08/amazon-unbox/</guid>
		<description><![CDATA[<p>So Amazon launched a TV and movie download service today, and at first glance, it would appear they have put together a compelling solution for consumers.  Strong support from studios, realistic prices and some pretty nifty features, including the ability to purchase a movie or TV show on one computer, say at work, and [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image11" src="http://www.artofgeek.com/wp-content/uploads/2006/09/amazonunboxlogo.gif" class="alignright" width=48% alt="amazonunbox logo" />So <a href="http://www.macdailynews.com/index.php/weblog/comments/amazoncom_launches_amazon_unbox_dvd_quality_video_download_service/">Amazon launched a TV and movie download service</a> today, and at first glance, it would appear they have put together a compelling solution for consumers.  Strong support from studios, realistic prices and some pretty nifty features, including the ability to purchase a movie or TV show on one computer, say at work, and have it download on a different computer, maybe at home, provided the Amazon Unbox client software is installed and running on it.</p>
<p>Most movies can be rented for $3.99 or purchased for $9.99 to $14.99.  TV shows sell for $1.99, the same price as they go for on the iTunes online store.  But there is one major difference:  Amazon&#8217;s offering includes both a DVD quality version as well as a lower bit-rate version for playback on handheld devices.  This is the key differentiator, since Apple only sells iPod-quality videos, which are much lower than DVD-quality.<span id="more-9"></span></p>
<p>Amazon has garnered the support of a fair number of big television and movie studios, as can be seen from the list of well known names:</p>
<blockquote><p><strong>Participating Television Networks</strong><br />
A&#038;E, Adult Swim, Animal Planet, BBC, The Biography Channel, Cartoon Network, CBS, Comedy Central, Discovery Channel, Discovery Health Channel, Discovery Kids, E! Entertainment Television, FINE LIVING TV Network, FOX, Fuel TV, FX, HGTV, The History Channel, KBS (Korean Broadcast System), Logo, MTV, Nickelodeon, Nick at Nite, The N, PBS, Speed, Spike, Travel Channel, TV Land and VH1.</p>
<p><strong>Participating Movie Studios</strong><br />
20th Century Fox, Paramount, Sony Pictures Home Entertainment, Universal Pictures, Warner Bros. Entertainment, Lionsgate and Metro-Goldwyn-Mayer Studios, Inc.</p></blockquote>
<p>So did Amazon beat Apple to the punch?  Could this be the end of Apple&#8217;s dominance of online media?  Don&#8217;t start selling your Apple shares just yet.  There are a few weak links in Amazon Unbox&#8217;s chain that might prevent it from being the success they are hoping for.  Given that Apple is all but assured to be launching their own Movie download service next Tuesday, Amazon&#8217;s thunder could be all but extinguished in just 5 days time if Apple has found ways around just one or two of those weak links.</p>
<p>So let&#8217;s get the obvious things out of the way.  The Amazon service requires you to install the Amazon Unbox client software on the PC you wish to download and watch movies from.  Because they are using Microsoft Windows Media VC1 format, this service requires Windows XP (Home, Pro, Tablet or Media Center Edition).  Of course like every other service that is a slave to Microsoft, this will not work on computers running Mac OS X or Linux.  No big surprise here.  It has been pointed out by some how ironic that Amazon&#8217;s video download service doesn&#8217;t work with the <a href="http://www.amazon.com/exec/obidos/tg/new-for-you/top-sellers/-/pc/565108/ref=pd_ts_c_th_more/104-9010181-2901545?%5Fencoding=UTF8">top selling brand of computers</a> Amazon sells.</p>
<h3>The Fine Print</h3>
<p>So what about portable video players?  We know the iPod is out, due to reliance on Windows Media format.  But this is where the huge Windows PlaysForSure ecosystem is really going to shine, right?  Well, according to <a href="http://www.amazon.com/gp/help/customer/display.html?nodeId=3782">Amazon&#8217;s Unbox website</a>:</p>
<blockquote><p><strong>Supported Devices</strong><br />
The devices in the list below have been tested with the Unbox Video Player. <strong>If your device is Plays for Sure compliant it may work, but we cannot guarantee performance on untested devices.</strong><br />
Creative Zen Vision: M<br />
Creative Zen Vision<br />
Toshiba Gigabeat S<br />
Archos AV 500<br />
Archos AV 700<br />
iRiver PMC (Portable Media Center)</p></blockquote>
<p>Oh the irony!  So if you have a PlaysForSure device, Amazon can&#8217;t be sure it will play.  There&#8217;s strike one, right there.  Not only does the service not work with 75% of the mp3 players in the US market (iPods), but it doesn&#8217;t work with the majority of the rest, either.  So right out of the gate, Amazon&#8217;s offering works with at best 5% of the devices on the market.</p>
<p>So lets forget that the majority of people won&#8217;t be watching their Amazon Unbox purchase on their portable media player.  That&#8217;s not such a big deal, since most people watch movies and TV programs in their living room on their big screen and surround sound system.  So we&#8217;ll just burn a copy to DVD and pop it in our trusty DVD player, right?  Wrong.  Video purchased using the service cannot be burned to standard DVD video discs and so can&#8217;t be played on standard DVD players.  So if you want to watch your downloads, you&#8217;re going to have to find a way to hook your TV up to your computer.</p>
<p>Given that most people&#8217;s computers either don&#8217;t have outputs to connect to their TV, or are installed in a completely different room from their home theatre, not to mention most consumers don&#8217;t know the first thing about how to hook their computer up to their TV, this scratches the majority of consumers off the list right there.  So now we&#8217;re left with computer savvy consumers who either have a Windows Media Center PC (like there are a lot of those), or a notebook PC with compatible video out.</p>
<p>One thing that a lot of tech savvy users are known for is having multiple PCs in the house.  They&#8217;ll primarily be using their Media Center PC to watch movie downloads, and then maybe transfer the file to their notebook to watch on a long flight or train ride, or to another family member&#8217;s PC.  It&#8217;s important to note then that Amazon Unbox videos can only be authorized to be played on 2 different computers at any one time.  Each one of those PCs can transfer the video to one compatible portable media player.  These tight restrictions on usage, and the inability to burn and playback on standard DVD players are probably going to be the biggest hindrance to widespread consumer adoption.</p>
<p>So what about the software?  Surely Amazon Unbox&#8217;s client software must have take a cue or two from the design and functionality of iTunes, the gold standard in media players, right?  Nope.  Amazon Unbox&#8217;s player can only play content purchased from the Amazon Unbox store.  No other media will work with it, period.  So consumers will have to use one program to manage and watch Amazon content, and another to manage and watch non-Amazon content.  How&#8217;s that for user experience?  I&#8217;m not sure if it was Amazon wanting to control their user experience, or whether it was for technical reasons that they had to design their own client, but they haven&#8217;t learned anything from Apple&#8217;s success.  Where Apple offers a single, unified experience for doing EVERYTHING with ALL your media, Amazon and Microsoft require users to use two different programs.  That&#8217;s one more program than necessary if you ask me.</p>
<p>So is it going to flop?  Probably.  With you typical 2 hour movie being 2.4GB in size, requiring hours to download, and all the other points I raised, it&#8217;s hard to imagine too many people getting excited about paying DVD prices to watch movies on their computers.  If you could burn standard DVDs and weren&#8217;t limited two only 2 computers, then Amazon would probably have a winner on their hands. The success or failure of this service is probably going to rest on what Apple announces on September 12.</p>
<h3>It&#8217;s Showtime</h3>
<p>As it stands, the rumors that are floating around are that Apple will announce movie sales from $9.99 to $14.99.  Not much else is known, but the scuttlebut on the &#8216;net is that Apple will be launching with only Disney studios&#8217; catalogue of content, which is going to seem like not much at first, but you have to remember that Disney owns the Buena Vista Motion Pictures Group made up of Walt Disney Pictures, Touchstone Pictures, Hollywood Pictures and Miramax films.  Disney also own Pixar Animation Studios in addition to their own animation studios.  So if the rumors are true, Apple may not be starting out of the gate with as big a list of movies, but they already have a large selection of TV shows for sale, and they will no doubt sign more studios on board over time as was the case when they launched TV downloads with only a small catalogue of ABC programs.</p>
<p>An Apple iMovie download service would most likely have the same liberal usage rights as they have become known for: authorization of up to 5 computers, and an unlimited number of iPods.  But as mentioned before, iTunes video purchases are optimized for playback on an iPod, which has a very small screen.  If Apple launches their movie download service without bumping up the resolution of the files, this could be the one chance Amazon has for some limited success.  Essentially, they would be offering higher quality video content for about the same price.  DRM restrictions and poor user experience aside, that does give them a competitive edge.</p>
<p>Anyone who thinks Apple hasn&#8217;t anticipated (or known) about Amazon&#8217;s offering isn&#8217;t giving them much credit though. Rumors are also swirling about an upgraded AirPort Express base station with the ability to stream video from your computer to your home theatre over a wired or wireless network.  Such a device could be the key to cracking the digital movie download market wide open.</p>
<p>Regardless of whether Apple matches Amazon&#8217;s video resolution or releases an AirPort Express Video device though, Apple already has a leg up in several areas which nearly guarantee it&#8217;s success: it&#8217;s service will work with the most devices in consumer&#8217;s hands.  The iPod has the lion&#8217;s share of the market, and Apple&#8217;s solution works with both Microsoft Windows and Apple Mac OS X, the latter which is seeing a strong comeback and is expected to have a bumper holiday season this year and tends to sell to more media-savvy consumers.</p>
<p>The bottom line is Amazon is doing some things right, but a lot of the same things wrong that have proven to not be popular with consumers.  They are selling content to a very limited market, and have yet to make a name for themselves in the digital download market.  Apple, assuming the most conservative estimates are true, has a guaranteed winner on their hand with a large installed base of existing and potential customers, the dominant brand, more liberal usage rights, the better end-user experience and maybe a trick or two up it&#8217;s sleeve to seal the deal.  If I was Amazon, I&#8217;d be hoping Steve Jobs doesn&#8217;t have &#8216;just one more thing&#8217; to talk about at the end of his presentation this coming Tuesday.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/08/amazon-unbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s patent play.  Something big this way comes?</title>
		<link>http://artofgeek.com/2006/09/07/apples-patent-play/</link>
		<comments>http://artofgeek.com/2006/09/07/apples-patent-play/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 17:48:36 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[iPod/iTunes]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[patents]]></category>

		<guid isPermaLink="false">http://www.artofgeek.com/2006/09/07/apples-patent-play-something-big-this-way-comes/</guid>
		<description><![CDATA[<p>MacNN today posted a fairly in-depth summary of a new patent application filed by Apple computer with the US Patent and Trademark Office in March 2006 for a â€œMulti-functional hand-held deviceâ€.  This patent makes reference to technologies first identified in previous patent applications for â€œProximity detector in handheld deviceâ€, a â€œVirtual Scroll-Wheel Interfaceâ€ and [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image15" src="http://www.artofgeek.com/wp-content/uploads/2006/09/upsto_060907_1athru1f.gif" width=48% alt="Patent Diagram" class="alignleft" />MacNN today posted a fairly in-depth summary of a new patent application filed by Apple computer with the US Patent and Trademark Office in March 2006 for a â€œMulti-functional hand-held deviceâ€.  This patent makes reference to technologies first identified in previous patent applications for <a href="http://www.appleinsider.com/article.php?id=1902">â€œProximity detector in handheld deviceâ€</a>, a <a href="http://www.macdailynews.com/index.php/weblog/comments/apples_touchless_touchscreen_ipod_revealed/">â€œVirtual Scroll-Wheel Interfaceâ€</a> and <a href="http://www.appleinsider.com/article.php?id=1973">â€œDisplay actuators for electronic devicesâ€</a>.  While no doubt most of the patents Apple applies for never see the light of day, the fact that the same technologies from earlier patent applications are being mentioned in this new filing indicates at the very least that someone at Apple is running with these concepts.</p>
<p>Is it a wide-screen video iPod, an iPhone, Apple Newton resurrected or a combination of the three?  There&#8217;s no way to know for sure, but all this information certainly does make the wait for <a href="http://macdailynews.com/index.php/weblog/comments/10800/">Tuesday, Sept. 12</a> that much harder.  While I doubt we&#8217;ll see any out of this world mobile chameleon device being announced, it&#8217;s still nice to hope for what fantastic Star Trek-ish device Apple has up it&#8217;s sleeves.<span id="more-7"></span></p>
<p>Adding fuel to the speculation is the fact that Apple released updated iMac and Mac mini computers this week with little fanfare.  Products that most tech pundits were expecting Apple to unveil at their special event next week.  Sure, faster processors don&#8217;t warrant any special event these days, but the new 24&#8243; high-end HD capable iMac certainly would tie in nicely with the movie download service everyone is expecting Apple to unveil.  I mean they only had to hold off on the announcement for an extra week.  So what gives?  Not announcing the new iMacs at the â€œIt&#8217;s Showtimeâ€ event can mean only one thing:  That there are more exciting things to announce and they don&#8217;t want to eat up precious time talking about a new iMac, as drool-worthy as it may be.</p>
<p>I don&#8217;t know about you, but I&#8217;m really hoping Apple announces an iPhone.  But if I had to bet money on it, I&#8217;d guess we&#8217;ll see an event focused on movies, which means iTMS movie downloads (most likely for $14.99 and $9.99 a pop), new iPod nano&#8217;s in an aluminum scratch resistent enclosure, updated iPod video with a small chance of a bigger screen video model, and the piece to resistance: a new AirPort Express with Video, or similar set-top box for streaming your iTMS video downloads from your computer to your TV in the living room.  This is where I&#8217;m setting my expectations, and I think that I&#8217;m setting relatively low.  Anything above and beyond will be icing on the cake.  Better keep some space on the &#8216;ol credit card just in case&#8230;</p>
<p><em>[<strong>3:58 pm Update:</strong> MacNN has posted an article about another related Apple patent application submitted in April 2006 for a <a href="http://www.macnn.com/blogs/?p=99">â€œHand held electronic device with multiple touch sensing devicesâ€</a>.  Hopefully in time more pieces of the puzzle will come into place.  Of course, the puzzle will be solved if and when Apple formally announces new products that are designed around any/all of this technology.]</em></p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/07/apples-patent-play/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple enters phase 3 of it&#8217;s Mac ad strategy</title>
		<link>http://artofgeek.com/2006/09/07/apple-magazine-ad/</link>
		<comments>http://artofgeek.com/2006/09/07/apple-magazine-ad/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 16:00:27 +0000</pubDate>
		<dc:creator>madgunde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://www.artofgeek.com/?p=6</guid>
		<description><![CDATA[<p>Most Mac enthusiasts were relieved when Apple launched it&#8217;s Get a Mac TV campaign a few months back, but we weren&#8217;t holding our breath that it would last, given Apple&#8217;s past Mac advertising efforts.  The ads have been received quite well among the Mac faithful, and have certainly ruffled some feathers in the Windows [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://artofgeek.com/wp-content/uploads/2008/07/apple_mac_booklet.jpg" alt="Apple's 14-page magazine insert" title="Apple\&#039;s 14-page magazine insert" width="300" height="241" class="alignright size-full wp-image-295" />Most Mac enthusiasts were relieved when Apple launched it&#8217;s <a href="http://www.apple.com/getamac/ads/">Get a Mac TV campaign</a> a few months back, but we weren&#8217;t holding our breath that it would last, given Apple&#8217;s past Mac advertising efforts.  The ads have been received quite well among the Mac faithful, and have certainly ruffled some feathers in the Windows world.  Apple added more spots to the lineup, each one targeting one feature or benefit.  A great way to communicate the Mac&#8217;s benefits without information overload.  Let the masses learn about the Mac one feature or benefit at a time and eventually people will start to wake up.</p>
<p>The Get A Mac TV ads were actually phase 2 of their marketing campaign, phase 1 being the opening of Apple Stores across the United States and later expansion to other countries such as Japan, UK, and Canada.  Now numbering 160 stores and growing, this strategy is geared towards giving people an excellent consumer experience and the opportunity to test drive Apple&#8217;s products in a relaxed no-pressure environment.  The TV spots have played a strong role in boosting brand awareness and driving traffic into Apple Stores.<span id="more-6"></span></p>
<p>Well now it looks like Apple is following up on this successful strategy with some informative print advertising.  A 14-page brochure <a href="http://www.macdailynews.com/index.php/weblog/comments/apple_advertises_mac_os_x_in_major_print_campaign/">has been spotted</a> attached to a 3 full page ad in Entertainment Weekly magazine.  In it, Apple hilights the most popular iLife applications (iPhoto, iTunes, iMovie, GarageBand), as well as a couple of Mac OS X features (iChat, Dashboard) and Microsoft Office.  The brochure closes by showcasing the Macintosh consumer lineup (iMac, MacBook, MacBook Pro and Mac mini).  You can see <a href="http://www.flickr.com/photos/52066649@N00/sets/72157594272960440/">scanned images of the entire brochure</a> on Flickr.</p>
<p>This is an excellent follow-up to the TV ad campaign, because it is more product focused rather than branding/symbolic in nature, as the TV spots are.  By making it a brochure that can be removed from the magazine, potential customers can pull it out and save it for later or pass it on to a friend.  I think these brochures will get far more views than they would if they were simply full-page ads.  Assuming Apple runs these print ads in a wide range of popular publications, I think they&#8217;ll go far to finally bridge the gap between the branding/imagery of the TV spots and the hand-on experience of the Apple Store.  These brochures dangle a bit more of a carrot to pique the interest of consumers enough to get them to visit the apple website or stop in at their local Apple Store.</p>
<p>I am curious why Apple has chosen to avoid mentioning Windows compatibility in the 14-page brochure though.  While I don&#8217;t think Apple should be focusing too much of it&#8217;s marketing message on luring people to the Mac platform with the intention of using it for Windows, they have mentioned it in their <a href="http://movies.apple.com/movies/us/apple/getamac_ads2/touche_480x376.mov">TV spot titled Touché</a>.  Following that up with a page on their brochure with a screenshot of Windows XP running in virtual machine window with Mac OS X apps wouldn&#8217;t be such a bad idea, would it?</p>
<p>Critique aside, Apple&#8217;s Mac marketing strategy is now coming into focus and seems to be close to firing on all cylinders for the upcoming holiday season.  It will be interesting to see how much thunder Apple can steal from Microsoft Windows Vista before it launches.  There has never been such a great opportunity to steal market share as there is now, especially given that Windows Vista will drive most Windows customers to buy new hardware in order to keep up with the latest version.  Many of those customers may just decide to spend that money on a new Mac instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://artofgeek.com/2006/09/07/apple-magazine-ad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://movies.apple.com/movies/us/apple/getamac_ads2/touche_480x376.mov" length="2475445" type="video/quicktime" />
		</item>
	</channel>
</rss>
