<?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>chmod 644 &#187; games</title>
	<atom:link href="http://www.windracer.net/blog/category/games/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.windracer.net/blog</link>
	<description>World Readable: a personal blog about anything that comes to mind for anybody who cares to read it.</description>
	<lastBuildDate>Mon, 06 Feb 2012 13:04:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating interactive fiction with Inform 7</title>
		<link>http://www.windracer.net/blog/2011/12/creating-interactive-fiction-with-inform-7/</link>
		<comments>http://www.windracer.net/blog/2011/12/creating-interactive-fiction-with-inform-7/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 20:12:06 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1414</guid>
		<description><![CDATA[If you owned a personal computer in the 80s and played computer games, you probably played at least one Infocom text-based adventure game like Zork or (my personal favorite) The Hitchhiker&#8217;s Guide to the Galaxy. Known as interactive fiction, or IF, these games used the most powerful computers on the planet for their processing engines [...]]]></description>
			<content:encoded><![CDATA[<p>If you owned a personal computer in the 80s and played computer games, you probably played at least one <a href="http://en.wikipedia.org/wiki/Infocom" target="_blank" rel="nofollow" class="liwikipedia">Infocom</a> text-based adventure game like <a href="http://en.wikipedia.org/wiki/Zork" target="_blank" rel="nofollow" class="liwikipedia">Zork</a> or (my personal favorite) <a href="http://en.wikipedia.org/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy_%28computer_game%29" target="_blank" rel="nofollow" class="liwikipedia">The Hitchhiker&#8217;s Guide to the Galaxy</a>. Known as interactive fiction, or <a href="http://en.wikipedia.org/wiki/Interactive_fiction" target="_blank" rel="nofollow" class="liwikipedia">IF</a>, these games used the most powerful computers on the planet for their processing engines &#8230; your imagination. Instead of fancy color graphics and digital sound effects, Infocom games were just white text on a black screen controlled by you typing in commands like &#8220;go north&#8221; or &#8220;examine the small box&#8221; and usually involved solving complicated puzzles to win.</p>
<p>I&#8217;m actually a little surprised I haven&#8217;t written about IF before on this blog considering how fond I was of playing <a href="http://en.wikipedia.org/wiki/Wishbringer" target="_blank" rel="nofollow" class="liwikipedia">Wishbringer</a> or <a href="http://en.wikipedia.org/wiki/Moonmist" target="_blank" rel="nofollow" class="liwikipedia">Moonmist</a> on my <a href="http://www.windracer.net/blog/2008/07/blast-from-the-computing-past/" title="Blast from the (computing) past" class="liinternal">Atari 800XL</a> back in the day. Even my daughter had even gotten into playing IF games on my iPad with <a href="http://itunes.apple.com/us/app/frotz/id287653015?mt=8" target="_blank" class="liexternal">Frotz</a>. She&#8217;s an avid reader and also loves playing games, so IF games are a natural fit for her. Back in late August I decided I wanted to try my hand at writing her a personalized game which eventually evolved into the idea of making the game a scavenger hunt of sorts for her birthday in December. That gave me about four months to plan, design, write, and test the game.</p>
<p><span id="more-1414"></span></p>
<p>The first thing I did was to download <a href="http://inform7.com/" target="_blank" class="liexternal">Inform 7</a> and start reading the documentation. Inform is a natural language design system for IF games which makes it pretty easy to learn. In almost no time at all, I was creating the rooms of our house, writing (a LOT of!) descriptions, linking rooms with exits, and creating objects.</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2011/12/inform7-screenshot.png" rel="lightbox[1414]" title="creating with Inform 7" class="liimagelink"><img class="aligncenter  wp-image-1415" title="creating with Inform 7" src="http://www.windracer.net/blog/wp-content/uploads/2011/12/inform7-screenshot.png" alt="" width="638" height="384" /></a></p>
<p>The screenshot above shows the basic Inform interface. On the left-hand side is my source code and the right-hand pane is showing the running game for testing. Tabs along the top of each pane allow you to quickly switch between different views, like the skein (a flowchart of in-game commands you&#8217;ve run, showing the branches), the map, compilation errors, etc.</p>
<p>Inform&#8217;s syntax is extremely flexible, allowing for the simplest definition of objects and rooms to more complex actions like wandering <a href="http://en.wikipedia.org/wiki/Non-player_character" target="_blank" rel="nofollow" class="liwikipedia">NPCs</a>, conversation tables, almost anything you can think of. The Inform web site contains an impressive library of user-contributed <a href="http://inform7.com/write/extensions/" target="_blank" class="liexternal">extensions</a>: re-usable modules of code you can include in your own to add features like locking doors (with keys), vehicles, or even writing games in different languages (like Spanish) which let you avoid writing all of that code from scratch.</p>
<p>Over the next few months while I worked on developing the game, I made extensive use of Inform&#8217;s built-in help system, code examples, and also participated in the <a href="http://www.intfiction.org" target="_blank" class="liexternal">Interactive Fiction Community Forum</a> whose members were very helpful when I got stuck on a particular coding problem or needed advice on how to approach something. At last, I was ready for testing so I &#8220;released&#8221; my game and published it on my Dropbox account using <a href="http://eblong.com/zarf/glulx/quixe/" target="_blank" class="liexternal">Quixe</a>, a javascript-based IF interpreter. This made it easy for my play-testers (my brother, sister, and sister-in-law) to play the game without needing to install their own Z-interpreter like <a href="http://frotz.sourceforge.net/" target="_blank" class="liexternal">Frotz</a> plus I was able to quickly re-publish new builds as I made corrections or changes to the code.</p>
<p>Finally, it was December and time for the game to be released for real. I put the final game into Frotz on my iPad told her I found a new IF game I thought she&#8217;d enjoy. Her reaction, once she realized she was playing a game as herself in her own house, was priceless, and well-worth the months of effort it took to write. Unlike my play-testers who had a hard time with some of  my puzzles (since a) they were new to IF games and b) the game was tailored for a young girl), my daughter blew through the game in just under a day and completed the scavenger hunt, laughing almost the entire time. Lucky for me she missed some of the non-critical puzzles so the game still has <a href="http://en.wikipedia.org/wiki/Replay_value" target="_blank" rel="nofollow" class="liwikipedia">replay value</a>. She has even expressed interest in writing her own IF game, which is pretty cool.</p>
<p>Of course, my new coding challenge is now &#8230; how do I top this for <em>next</em> year? <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2011/12/creating-interactive-fiction-with-inform-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nintendo announces next-gen (strangely named) console</title>
		<link>http://www.windracer.net/blog/2011/06/nintendo-announces-next-gen-strangely-named-console/</link>
		<comments>http://www.windracer.net/blog/2011/06/nintendo-announces-next-gen-strangely-named-console/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 01:37:12 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1193</guid>
		<description><![CDATA[Today at E3, Nintendo announced their next generation game console, the Wii U. The console itself looks pretty much the same but boasts (presumably) increased specs, including HDMI for full HD output (no more 480p!). The real news, though, was the new controller: along with the standard D-pad, buttons, and motion control it sports a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.windracer.net/blog/wp-content/uploads/2011/06/wii-u.png" rel="lightbox[1193]" title="Wii U" class="liimagelink"><img class="alignleft size-full wp-image-1194" style="margin: 10px;" title="Wii U" src="http://www.windracer.net/blog/wp-content/uploads/2011/06/wii-u.png" alt="" width="167" height="185" /></a>Today at <a href="http://www.e3expo.com/" target="_blank" class="liexternal">E3</a>, Nintendo announced their next generation game console, the <a href="http://e3.nintendo.com/hw/#/introduction" target="_blank" class="liexternal">Wii U</a>. The console itself looks pretty much the same but boasts (presumably) <a href="http://www.thesixthaxis.com/2011/06/07/wii-u-hardware-what-we-know/" target="_blank" class="liexternal">increased specs</a>, including HDMI for full HD output (no more 480p!).</p>
<p>The real news, though, was the new controller: along with the standard D-pad, buttons, and motion control it sports a 6.2&#8243; color touchscreen (and stylus) and can stream games from the console to the screen (sound and all), no TV required. That&#8217;s a cool feature when Junior wants to play Mario Kart but Mom and Dad want to watch TV. I wonder, too, if that would make the Wii U a more portable entertainment system (think: in the car on road trips).</p>
<p>The Wii U will be backwards compatible with all Wii games and controllers, another smart step, similar to how the Wii can read GameCube discs.</p>
<p>What to say about the name? At first glance it looks like some sort of  video game school. I can see where they&#8217;re going with the &#8220;we&#8221; (console)  and &#8220;you&#8221; (controller), and everyone got used to saying &#8220;Wii&#8221;  eventually, but now we&#8217;ll have to go through all of that again. Oh well.</p>
<p>Would I get one to replace my Wii? Probably not right away. The Wii U won&#8217;t be out until 2012 and the pricing has yet to be announced. Since I&#8217;m a casual gamer the lack of HD output hasn&#8217;t really bothered me and I&#8217;m sure the new controller is not going to be cheap. For playing Mario Kart online with my siblings, or Lego Harry Potter with my daughter, the current console works just fine.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2011/06/nintendo-announces-next-gen-strangely-named-console/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Those birds &#8230; they&#8217;re so angry!</title>
		<link>http://www.windracer.net/blog/2010/11/those-birds-theyre-so-angry/</link>
		<comments>http://www.windracer.net/blog/2010/11/those-birds-theyre-so-angry/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 03:03:52 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1118</guid>
		<description><![CDATA[I have been hooked on Angry Birds since I first played the lite version on my iPhone back in April (and then immediately purchased the full version). I started over from scratch when I bought the HD version for my iPad in October. The other week I finally completed all of the released levels with [...]]]></description>
			<content:encoded><![CDATA[<p>I have been hooked on <a href="http://www.rovio.com/index.php?page=angry-birds" target="_blank" class="liexternal">Angry Birds</a> since I first played the lite version on my iPhone back in April (and then immediately purchased the full version). I started over from scratch when I bought the HD version for <a href="http://" target="_blank" class="liexternal">my iPad</a> in October. The other week I finally completed all of the released levels with three stars and found 17 golden eggs! Take that, piggies!</p>

<a href='http://www.windracer.net/blog/2010/11/those-birds-theyre-so-angry/angry-birds-1-2/' title='3 stars on levels 1 &amp; 2'><img width="150" height="112" src="http://www.windracer.net/blog/wp-content/uploads/2010/11/angry-birds-1-2-150x112.jpg" class="attachment-thumbnail" alt="3 stars on levels 1 &amp; 2" title="3 stars on levels 1 &amp; 2" /></a>
<a href='http://www.windracer.net/blog/2010/11/those-birds-theyre-so-angry/angry-birds-3-4/' title='3 stars on levels 3 &amp; 4'><img width="150" height="112" src="http://www.windracer.net/blog/wp-content/uploads/2010/11/angry-birds-3-4-150x112.jpg" class="attachment-thumbnail" alt="3 stars on levels 3 &amp; 4" title="3 stars on levels 3 &amp; 4" /></a>
<a href='http://www.windracer.net/blog/2010/11/those-birds-theyre-so-angry/angry-birds-golden-eggs/' title='Golden Eggs'><img width="150" height="112" src="http://www.windracer.net/blog/wp-content/uploads/2010/11/angry-birds-golden-eggs-150x112.jpg" class="attachment-thumbnail" alt="Golden Eggs" title="Golden Eggs" /></a>

<p>Now, someone is trying to broker a peace agreement between the birds and pigs. You can guess how it turns out. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><object width="640" height="390" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/bMltvlqEM54&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><embed width="640" height="390" type="application/x-shockwave-flash" src="http://www.youtube.com/v/bMltvlqEM54&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" allowFullScreen="true" allowScriptAccess="always" allowfullscreen="true" allowscriptaccess="always" /></object></p>
<p>Rumor has it Angry Birds 2 will be told from the pigs&#8217; point of view (<a href="http://www.tuaw.com/2010/11/17/angry-birds-sequel-will-reveal-pigs-point-of-view/" target="_blank" class="liexternal">Angry Pigs</a>?) and support multi-player! It might be out by the end of the year &#8230; just what I need.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/11/those-birds-theyre-so-angry/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Apple iPad</title>
		<link>http://www.windracer.net/blog/2010/10/apple-ipad/</link>
		<comments>http://www.windracer.net/blog/2010/10/apple-ipad/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 00:24:38 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[eeepc]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1087</guid>
		<description><![CDATA[About a month ago I got a 16gb (Wi-Fi only) Apple iPad from work so I&#8217;ve had about 30 days to mess around with Apple&#8217;s &#8220;magical&#8221; tablet. If I had to sum the iPad up in one word? Slick. I&#8217;m not going to bother with the specs, or a general overview of the iPad here. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>About a month ago I got a 16gb (Wi-Fi only) <a href="http://www.apple.com/ipad/" target="_blank" class="liexternal">Apple iPad</a> from work so I&#8217;ve had about 30 days to mess around with Apple&#8217;s &#8220;<a href="http://articles.cnn.com/2010-01-27/tech/apple.tablet_1_ipad-ibook-tablet?_s=PM:TECH" target="_blank" class="liexternal">magical</a>&#8221; tablet. If I had to sum the iPad up in one word?</p>
<p>Slick.</p>
<p>I&#8217;m not going to bother with the specs, or a general overview of the iPad here. It&#8217;s been out for about 8 months and you can certainly read/find all the <a href="http://en.wikipedia.org/wiki/IPad" target="_blank" rel="nofollow" class="liwikipedia">technical details</a> you want fairly easily (just typing &#8216;ipad&#8217; into Google yields &#8220;about 123,000,000 results&#8221;). Instead, I&#8217;ll talk about how I&#8217;ve been using it, the apps I&#8217;ve installed, and my overall impressions.</p>
<p><span id="more-1087"></span><a href="http://www.windracer.net/gallery/d/30998-2/IMG_5895.JPG" rel="lightbox[1087]" title="iPhone and iPad" class="liimagelink"><img class="alignleft" style="margin: 10px;" title="iPhone and iPad" src="http://www.windracer.net/gallery/d/30998-2/IMG_5895.JPG" alt="" width="244" height="182" /></a>We (the IT department) got iPads at work since we&#8217;re evaluating it as a business tool and we&#8217;ll also need to support it once we start rolling it out to our end users. We&#8217;ve been using the iPhone for access to corporate e-mail, calendar, and contacts, since <a href="http://www.windracer.net/blog/2009/12/apple-iphone-3gs/" class="liinternal">late last year</a> so the form factor of the iPad seems like the next logical step for our travelling users, eliminating the need for them to carry a laptop, power brick, etc.</p>
<p>The battery life is pretty amazing &#8230; I guess the lack of a power-hogging 3G radio really helps. Unfortunately the iPad requires more power to charge, so you can&#8217;t really charge it via a USB connection. Well, it <em>will </em>charge (very slowly) over USB, but only when the screen is off. That being said, I don&#8217;t have to charge this thing daily like I do with my iPhone &#8230; it can go a few days without plugging in, which is good news for the traveller trying to find a power outlet in a crowded airport because their laptop is dead or dying.</p>
<p>Of course, these Wi-Fi only models also mean you can&#8217;t access the internet everywhere like you can with the iPhone. But with Wi-Fi as ubiquitous as it is now-a-days (airports, coffee shops, malls, restaurants, etc.) this really hasn&#8217;t been a big issue for me. If I&#8217;m in the car and need a data connection for some reason, I still have my iPhone.</p>
<p>The larger screen means a larger keyboard which is <em>much</em> easier to type on than the iPhone, especially in landscape mode. I&#8217;m not talking touch-typing here, but I&#8217;m definitely faster (and more accurate) on the iPad keyboard.</p>
<p>The iPad is still running the older iOS 3.2.2 which lacks some of the features I have grown used to on my iPhone (like multi-tasking and folders), but <a href="http://www.tipb.com/2010/09/19/ios-42-ipad-walkthrough/" target="_blank" class="liexternal">iOS 4.2</a> is supposed to be released next month and will bring those features to the iPad for the first time.</p>
<p>So &#8230; after one month with the iPad, which apps am I (still) using?</p>
<h4>Work</h4>
<p><a href="http://itunes.apple.com/us/app/citrix-receiver/id313735334?mt=8" target="_blank" class="liexternal">Citrix Receiver</a> (free) &#8211; using Citrix I can connect to our published corporate apps (like Microsoft Office). Using Windows apps on an iOS device takes some getting used to since you don&#8217;t have a mouse to work with (how do you click and drag?). I wouldn&#8217;t want to have to do any serious work in these apps for a long period of time, but in a pinch, they work. This is one place where a Windows laptop still holds the advantage.</p>
<p><a href="http://" target="_blank" class="liexternal">Wyse PocketCloud</a> ($14.99) &#8211; there are a lot of free remote desktop apps out there, but most of them have the same problem as I described above: poor (or confusing) mouse support. Wyse&#8217;s solution has a really slick <a href="http://www.ipad.net/ipad-app-reviews-best-business-apps-wyse-pocketcloud-remote-desktop.html" target="_blank" class="liexternal">virtual mouse</a> interface that makes it easy to click on what you meant to click on, right-click, scroll, etc. It&#8217;s on the high-end of the pricing scale for an iPad app at $15 but so far well worth it for being able to manage my servers without having to worry I&#8217;m accidentally going to tap on something I didn&#8217;t mean to.</p>
<p><a href="http://itunes.apple.com/us/app/issh-ssh-vnc-console/id287765826?mt=8" target="_blank" class="liexternal">iSSH</a> ($9.99) &#8211; I had already purchased this app when I first got my iPhone and luckily it&#8217;s a universal one designed for both devices so I didn&#8217;t have to purchase a separate &#8221;HD&#8221; version. I use iSSH to connect to my Linux server at home. PocketCloud supports VNC connections, but not tunneled over SSH so I still need iSSH. It doesn&#8217;t have the cool virtual mouse of PocketCloud either, but normally when I&#8217;m working with my Ubuntu box I&#8217;m using the command-line anyway.</p>
<p><a href="http://itunes.apple.com/us/app/note-taker-hd/id366572045?mt=8" target="_blank" class="liexternal">Note Taker HD</a> ($4.99) &#8211; I wanted to try going paperless at work, using my iPad instead of my traditional <a href="http://www.amazon.com/Mead-Black-Marble-Wide-Ruled-Composition/dp/B00006IDM7" target="_blank" class="liamazon">composition notebooks</a> for notes, so I purchased a <a href="http://www.amazon.com/gp/product/B003ULE6GU/ref=oss_product" target="_blank" class="liamazon">capacative stylus</a> and started looking at note-taking apps. After trying a few free ones and reading about others like <a href="http://itunes.apple.com/us/app/penultimate/id354098826?mt=8" target="_blank" class="liexternal">Penultimate</a> and <a href="http://itunes.apple.com/us/app/smartnote/id362165952?mt=8" target="_blank" class="liexternal">smartNote</a>, I tried the lite iPhone version of  <a href="http://itunes.apple.com/us/app/note-taker/id342284707?mt=8" target="_blank" class="liexternal">Note Taker</a>. I really liked what I saw so I purchased the iPad version, Note Taker HD. Using your finger (or stylus) you can easily write notes and draw diagrams with multiple pen sizes, and colors, including highlighters. The &#8220;<a href="http://www.windracer.net/gallery/d/31538-2/IMG_0087.PNG" class="liinternal" title="Note Taker HD's zoom edit mode" rel="lightbox[1087]">zoom edit</a>&#8221; feature allows you to write in a larger window and have your handwriting shrunk down to look better. It&#8217;s remarkably easy to use and I&#8217;ve already used it to take notes in a few meetings. You can export your notes as an image or PDF and then e-mail them if you want. You can tag your notes for categorization, but I wish there was a better search function <em>and </em>I wish you could organize the individual pages into virtual notebooks.</p>
<p><a href="http://itunes.apple.com/us/app/evernote/id281796108?mt=8" target="_blank" class="liexternal">Evernote</a> (free) &#8211; I&#8217;ve been using Evernote since I switched to the iPhone from my Treo and needed a place to store the random stuff I used to keep in <a href="http://www.iliumsoft.com/site/lp/listpro.php" target="_blank" class="liexternal">ListPro</a> on my old Treo. With clients for just about every platform, Evernote is a great way to be able to access various documents from my iPhone, iPad, or PC. One cool feature that I&#8217;ve started trying to use more is the automatic text recognition for images you add to Evernote: it will scan images and index any text it finds so you can search on it later. Take a photo of a document with your phone, for example, and Evernote will index it. I&#8217;ve tried exporting my handwritten notes from Note Taker HD into Evernote with limited success, but that&#8217;s mostly due to my poor handwriting (exacerbated by trying to write with a stylus on the iPad).</p>
<p><a href="http://itunes.apple.com/us/app/goodreader-for-ipad/id363448914?mt=8" target="_blank" class="liexternal">Goodreader</a> ($1.99) &#8211; I picked this app up during a sale for 99 cents. Goodreader is basically a souped up file viewer mainly for large PDF and text files, although it can also view MS Office documents, photos and videos, HTML docs, etc. In addition to viewing locally stored documents on the iPad (through <a href="http://support.apple.com/kb/ht4094" target="_blank" class="liexternal">iTunes file sharing</a> or a WiFi connection), Goodreader also supports Dropbox, MobileMe, Google Docs, and other online file storage services. I was unable to get it to connect to my Jungledisk share, however (probably because it&#8217;s encrypted).</p>
<h4>Play</h4>
<p>Ok, so I don&#8217;t use my iPad <em>exclusively </em>for work! <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Yes, almost all iPhone games will work on the iPad in zoomed (2x) mode but they just don&#8217;t look as good. Thus, I <em>had </em>to repurchase the HD versions of my favorite iPhone games, <a href="http://itunes.apple.com/us/app/angry-birds-hd/id364234221?mt=8" target="_blank" class="liexternal">Angry Birds HD</a> ($4.99) and <a href="http://itunes.apple.com/us/app/azkend-hd/id363375874?mt=8" target="_blank" class="liexternal">Azkend HD</a> ($4.99). I also put a few of my other favorite iPhone games on my iPad, like <a href="http://itunes.apple.com/us/app/words-with-friends-free/id321916506?mt=8" target="_blank" class="liexternal">Words with Friends</a> (free or $2.99), <a href="http://itunes.apple.com/us/app/chess-with-friends-free/id295436227?mt=8" target="_blank" class="liexternal">Chess with Friends</a> (free or $2.99), <a href="http://itunes.apple.com/us/app/sword-poker-2-ww/id369834297?mt=8#" target="_blank" class="liexternal">Sword &amp; Poker 2</a> ($3.99), and <a href="http://itunes.apple.com/us/app/frotz/id287653015?mt=8" target="_blank" class="liexternal">Frotz</a> (free).</p>
<p>&#8220;<a href="http://disney.go.com/tron/" target="_blank" class="liexternal">TRON Legacy</a>&#8221; is only two months away, so why not indulge in some multi-player light cycle action with <a href="http://itunes.apple.com/us/app/lightbike-2/id373778227?mt=8" target="_blank" class="liexternal">Lightbike 2</a>? There&#8217;s also Disney&#8217;s official <a href="http://itunes.apple.com/us/app/tron/id381432246?mt=8#" target="_blank" class="liexternal">TRON Legacy</a> app, but it&#8217;s really a big advertisement for the movie (although with a decent multi-player tank game in it) and is not HD.</p>
<p>Last month as I was taking <a href="http://www.windracer.net/gallery/d/31017-2/IMG_5907.JPG" class="liinternal" title="Jupiter, through my telescope" rel="lightbox[1087]">fuzzy photos of Jupiter</a> through my telescope, I purchased <a href="http://itunes.apple.com/us/app/star-walk-5-stars-astronomy/id295430577?mt=8" target="_blank" class="liexternal">Star Walk</a> ($2.99), as seen on the iPad TV commercials. This amazing and beautiful app lets you literally point your iPad at the sky to identify heavenly bodies. Or, use the search feature to look up a star, constellation, etc. and it will guide you which way to look. I particularly like the all-red mode so it doesn&#8217;t ruin your night-vision.</p>
<h4>Reading</h4>
<p>I do a lot of reading on my iPhone, so I immediately put <a href="http://itunes.apple.com/us/app/stanza/id284956128?mt=8" target="_blank" class="liexternal">Stanza</a> (free) on my iPad along with my e-book library. I definitely don&#8217;t need a Kindle now! Yes, the screen is a bit reflective and <a href="https://www.youtube.com/watch?v=NNqLHs8cKyw" target="_blank" class="liyoutube">hard to see</a> in bright sunlight but reading e-books in Stanza is great (I haven&#8217;t even bothered with iBooks). I just wish there was a way to synchronize my place in the book between my iPhone and iPad (similar to what the <a href="http://itunes.apple.com/us/app/kindle/id302584613?mt=8" target="_blank" class="liexternal">Kindle app</a> (free) does).</p>
<p>Occasionally I will also like to catch up on my RSS feeds or the latest news. For those purposes I am using <a href="http://itunes.apple.com/us/app/feeddler-rss-reader-for-ipad/id364873582?mt=8" target="_blank" class="liexternal">Feeddler</a> (free) which synchronizes with my Google Reader account, and <a href="http://itunes.apple.com/us/app/usa-today-for-ipad/id364257176?mt=8" target="_blank" class="liexternal">USA Today</a> (free), complete with the crossword puzzle! There is clearly no shortage of news-gathering apps in the App Store but these two are all I need for now.</p>
<h4>Media</h4>
<p>Since my iPad only has 16gb of storage I don&#8217;t even bother synchronizing my iTunes music library with it (I still have my 32gb iPhone for that) but I did install <a href="http://itunes.apple.com/us/app/pandora-radio/id284035177?mt=8" target="_blank" class="liexternal">Pandora Radio</a> (free) in case I do have a need for music (although I haven&#8217;t used it yet). But why bother with audio at all? The iPad has a gorgeous 9.7&#8243; screen &#8230; it&#8217;s the perfect portable <em>video </em>device!</p>
<p>You can obviously sync all the same iTunes video content (video podcasts, purchases/rentals, etc.) to the iPad that you can with the iPhone, but what if you want to play those <em>other formats</em> like AVI, DivX, or MKV? Enter the iPad version of <a href="http://itunes.apple.com/us/app/vlc-media-player/id390885556?mt=8" target="_blank" class="liexternal">VLC</a> (free). Just use <a href="http://support.apple.com/kb/ht4094" target="_blank" class="liexternal">iTunes file sharing</a> to copy your video files to your iPad for playback. The app can&#8217;t take advantage (yet) of the iPad&#8217;s hardware acceleration, so some playback could be choppy, but it&#8217;s a good first effort at playing non-iTunes video content on your device.</p>
<p>I use my Netflix subscription primarily for the Watch Instantly feature on my TiVos, but you can also use the <a href="http://itunes.apple.com/us/app/netflix/id363590051?mt=8" target="_blank" class="liexternal">Netflix</a> app (free) to watch shows in your Instant Queue on your iPad. Of course, this is <em>streaming</em> so you need an active internet connection for it to work &#8230; no watching Netflix on the plane (unless your flight has WiFi).</p>
<h4>In Conclusion</h4>
<p><a href="http://www.windracer.net/gallery/d/31513-2/IMG_5970.JPG" rel="lightbox[1087]" title="EeePC and iPad" class="liimagelink"><img class="alignleft" style="margin: 10px;" title="EeePC and iPad" src="http://www.windracer.net/gallery/d/31513-2/IMG_5970.JPG" alt="" width="244" height="182" /></a>Wow, the iPad is a really cool device and after using it for a month I can see why it&#8217;s the <a href="http://www.pcworld.com/article/206953/ipad_fastestselling_electronic_deviceever.html" target="_blank" class="liexternal">fastest selling electronics device ever</a>. That being said, can it really replace my work laptop? I <em>think</em> I can do almost everything I would need to do remotely on the iPad but I haven&#8217;t had one of those &#8220;emergency&#8221; situations yet to really put that to the test. Time will tell for me but <a href="http://www.pcworld.com/article/207842/The_iPad_Im_Only_Sort_Of_Impressed.html" target="_blank" class="liexternal">not everyone thinks</a> the iPad can replace the notebook in corporate situations.</p>
<p>I will say, though, that the iPad has me wondering if I still want/need my EeePC 900A netbook. Other than using the Eee to try out the latest netbook Linux distros and the fact that it has a physical keyboard (which I&#8217;m not great typing on anyway), the iPad has a larger screen (9.7&#8243; vs. 8.9&#8243;), more storage (16gb vs 4gb), is thinner (but weighs about the same) and pretty much does everything I use the Eee for. I have a feeling I might not own the Eee for much longer. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>So that&#8217;s my initial iPad wrap-up. Got any other must-have/must-try apps for me, or other iPad advice, tips, or tricks? Leave me a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/10/apple-ipad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pac Man turns 30</title>
		<link>http://www.windracer.net/blog/2010/05/pac-man-turns-30/</link>
		<comments>http://www.windracer.net/blog/2010/05/pac-man-turns-30/#comments</comments>
		<pubDate>Sat, 22 May 2010 02:11:51 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=958</guid>
		<description><![CDATA[Wow, Pac Man is 30 years old. To celebrate, Google put up a logo Doodle that was an actual playable Pac Man game, sound effects and all! What a blast from the past &#8230; I sank quite a few quarters (or tokens) into Pac Man machines back in the day. I also had the Pac [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, Pac Man is 30 years old. To celebrate, Google put up a logo <a href="http://en.wikipedia.org/wiki/Google_logo#Google_Doodle" target="_blank" rel="nofollow" class="liwikipedia">Doodle</a> that was an actual <a href="http://www.readwriteweb.com/archives/google_celebrates_pac-mans_30th_birthday_with_play.php" target="_blank" class="liexternal"><em>playable</em> Pac Man game</a>, sound effects and all! What a blast from the past &#8230; I sank quite a few quarters (or tokens) into Pac Man machines back in the day. I also had the <a href="http://en.wikipedia.org/wiki/Pac-Man_Fever_%28album%29" target="_blank" rel="nofollow" class="liwikipedia">Pac Man Fever album</a>. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_surprised.gif' alt=':-o' class='wp-smiley' /> </p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/X3moSwewlOY&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/X3moSwewlOY&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/05/pac-man-turns-30/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More Wii homebrew: running games from a USB hard drive</title>
		<link>http://www.windracer.net/blog/2010/04/more-wii-homebrew-running-games-from-a-usb-hard-drive/</link>
		<comments>http://www.windracer.net/blog/2010/04/more-wii-homebrew-running-games-from-a-usb-hard-drive/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 16:08:23 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=940</guid>
		<description><![CDATA[I dabbled in Wii homebrew last year but didn&#8217;t do much beyond getting the Homebrew Channel working and messing around with a few apps. Then last week I saw this post on Lifehacker and thought, I have got to try this. The Lifehacker tutorial is pretty straightforward &#8230; the Wii hacking community has done some [...]]]></description>
			<content:encoded><![CDATA[<p>I dabbled in Wii homebrew <a href="http://www.windracer.net/blog/2009/08/cookin-up-some-wii-homebrew/" class="liinternal">last year</a> but didn&#8217;t do much beyond getting the Homebrew Channel working and messing around with a few apps. Then last week I saw <a href="http://lifehacker.com/5518518/how-to-back-up-and-play-your-wii-games-from-an-external-hard-drive" target="_blank" class="liexternal">this post on Lifehacker</a> and thought, I have <em>got</em> to try this. The Lifehacker tutorial is pretty straightforward &#8230; the Wii hacking community has done some amazing work to make the soft modding process easy and (almost) risk-free. At least I haven&#8217;t bricked my own Wii, which is running the latest 4.2 firmware, yet.</p>
<p>I already had the <a href="http://hbc.hackmii.com/" target="_blank" class="liexternal">HBC</a> installed and working, but the first problem I encountered was during the DOP-Mii step. For some reason my  Wii wasn&#8217;t able to download <a href="http://www.windracer.net/gallery/d/28426-2/IMG_4394_001.JPG" rel="lightbox[940]" title="using an old 2.5&quot; laptop hard drive" class="liimagelink"><img class="alignleft" style="margin: 10px;" title="using an old 2.5&quot; laptop hard drive" src="http://www.windracer.net/gallery/d/28426-2/IMG_4394_001.JPG" alt="" width="210" height="278" /></a>the IOS updates/patches from NUS (Nintendo&#8217;s Update Servers), the same issue as described <a href="http://code.google.com/p/dop-mii/issues/detail?id=16" target="_blank" class="liexternal">here</a> (even though wireless connection <em>was</em> working). I wasn&#8217;t able to figure out how to get the  required WADs onto my SD card for a local install, and trying to re-run the DOP-Mii step was now causing scary crash messages, so I gave up. I noticed that after attempting this, when my daughter went to play  Wii Sports Resort, the Wii re-downloaded a system update, so luckily that  seemed to reverse whatever the failed DOP-Mii patcher had done to the IOS.</p>
<p>A few days later I found <a href="http://www.wiihacks.com/recommended-faqs-guides-tutorials-only/27305-loading-playing-wii-backup-games-usb-hdd.html" target="_blank" class="liexternal">another guide at WiiHacks.com</a> and decided to give this another shot. This time I had the required WAD patches downloaded locally on my SD card so the DOP-Mii step worked as expected. But then I ran into a problem trying to install the cIOS. After some more Google searching I figured out I had to use the <a href="http://wiibrew.org/wiki/AnyTitle_Deleter" target="_blank" class="liexternal">AnyTitle Deleter</a> to clear out IOS249 before the new custom IOS  would load properly (it&#8217;s possible that this was something left over from my last experiment with homebrew). After getting past all of that, though, I was able to complete the rest of the Lifehacker guide as documented.</p>
<p>For my initial testing, I used an old 40gb laptop hard drive I had laying around connected to a barebones USB adapter (pictured to the left) but I&#8217;ve since switched to a <a href="http://www.amazon.com/Western-Digital-Elements-Portable-WDBAAR3200ABK-NESN/dp/B002CZQ4GK/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1271984568&amp;sr=8-1" target="_blank" class="liamazon">320gb WD Elements</a> drive split into two 160gb partitions (one WBFS, one exFAT).</p>
<p>Using the amazing <a href="http://usbloadergx.koureio.net/" target="_blank" class="liexternal">USB Loader GX</a> app, I backed up all of my games to the hard drive and then had it download the various box and CD cover art. It looks fantastic:</p>
<p><a href="http://www.windracer.net/gallery/d/28435-2/IMG_4398.JPG" rel="lightbox[940]" title="USB Loader GX jukebox" class="liimagelink"><img class="aligncenter" title="USB Loader GX jukebox" src="http://www.windracer.net/gallery/d/28435-2/IMG_4398.JPG" alt="" width="492" height="369" /></a></p>
<p>I tested running a few games from the hard drive and they worked just fine (even the online ones like Mario Kart). Sweet! Check out the little video I made below to see it in action.</p>
<p><object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="320" height="240" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="autoplay" value="false" /><param name="src" value="http://www.windracer.net/gallery/d/28455-1/MVI_4411.mov" /><embed type="video/quicktime" width="320" height="240" src="http://www.windracer.net/gallery/d/28455-1/MVI_4411.mov" autoplay="false"></embed></object></p>
<p>A helpful note: I kept having problems where the USB Loader would crash. It turned out  that while moving the SD card back and forth between my PC and Wii, at  some point the lock switch moved down slightly so the card was effectively  read-only. Fixing the switch resolved the crashes. Just something to  keep an eye out for!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/04/more-wii-homebrew-running-games-from-a-usb-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.windracer.net/gallery/d/28455-1/MVI_4411.mov" length="6412037" type="video/quicktime" />
		</item>
		<item>
		<title>Ah, spring &#8230; baseball is back!</title>
		<link>http://www.windracer.net/blog/2010/03/ah-spring-baseball-is-back/</link>
		<comments>http://www.windracer.net/blog/2010/03/ah-spring-baseball-is-back/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 03:18:49 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=907</guid>
		<description><![CDATA[It was a beautiful day today at Brighthouse Field in Clearwater where we saw the Tampa Bay Rays beat the 2009 NL Champion Philadelphia Phillies in 10 innings in front of a sell-out crowd. We had pretty good seats, right down the third base line. We were in full sun the entire game, so it [...]]]></description>
			<content:encoded><![CDATA[<p>It was a beautiful day today at <a href="http://en.wikipedia.org/wiki/Bright_House_Field" target="_blank" rel="nofollow" class="liwikipedia">Brighthouse Field</a> in Clearwater where we saw the Tampa Bay Rays beat the 2009 NL Champion Philadelphia Phillies in 10 innings in front of a sell-out crowd.</p>
<p><a href="http://www.windracer.net/gallery/d/26911-3/IMG_3802.JPG" rel="lightbox[907]" title="record attendance!" class="liimagelink"><img class="aligncenter" title="record attendance!" src="http://www.windracer.net/gallery/d/26911-3/IMG_3802.JPG" alt="" width="519" height="389" /></a><br />
We had pretty good seats, right down the third base line.</p>
<p style="text-align: center;"><a href="http://www.windracer.net/gallery/d/26899-3/IMG_3791.JPG" rel="lightbox[907]" title="field box down the third base line" class="liimagelink"><img class="aligncenter" title="field box down the third base line" src="http://www.windracer.net/gallery/d/26899-3/IMG_3791.JPG" alt="" width="519" height="389" /></a></p>
<p style="text-align: left;">We were in full sun the entire game, so it actually got pretty warm (mid-60s), which was a nice change from the chilly weather we&#8217;ve been having lately. It was great to be out at the ballpark eating some hot dogs, drinking a beer, and watching some good baseball. In just over a week and a half I&#8217;ll be in Arizona watching the Indians for three games &#8230; can&#8217;t wait!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/03/ah-spring-baseball-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple iPhone 3GS</title>
		<link>http://www.windracer.net/blog/2009/12/apple-iphone-3gs/</link>
		<comments>http://www.windracer.net/blog/2009/12/apple-iphone-3gs/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 01:11:28 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[treo]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=856</guid>
		<description><![CDATA[After over 13 years of using (mostly) PalmOS and (some) Windows Mobile devices as my PDA and/or cell phone, I now own my first device that runs &#8230; OS X. Yep, I got an iPhone. We&#8217;re in the early stages of testing the iPhone with our corporate e-mail infrastructure: Microsoft Exchange and GoodLink. Since my AT&#38;T account has been upgrade-eligible for some time (the [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://www.windracer.net/blog/2008/07/thats-a-lot-of-pdas/" class="liinternal">over 13 years</a> of using (mostly) PalmOS and (some) Windows Mobile devices as my PDA and/or cell phone, I now own my first device that runs &#8230; <a href="http://en.wikipedia.org/wiki/IPhone_OS" target="_blank" rel="nofollow" class="liwikipedia">OS X</a>. Yep, I got an iPhone.</p>
<p>We&#8217;re in the early stages of testing the iPhone with our corporate e-mail infrastructure: Microsoft Exchange and GoodLink. Since my AT&amp;T account has been upgrade-eligible for some time (the last time I &#8220;officially&#8221; upgraded was when my <a href="http://www.windracer.net/blog/2005/07/palm-treo-650/" class="liinternal">Treo 650</a> was the hot new device), my boss told me to go ahead and get an iPhone (16gb model, but I paid a little out-of-pocket to get the 32gb one since my current iPod is 30gb). I need to start learning how to use it so I can eventually support it as we roll the device out to other users in the office. It&#8217;s been two weeks now since I abandoned my trusty Treo 680 and I had some free time while on vacation last week to really spend some time with the iPhone. Here&#8217;re some of my thoughts &#8230;</p>
<h4>What I Like</h4>
<ul>
<li>the design and form factor: the iPhone is truly a beautiful thing to look at given it&#8217;s mostly screen and a single home button. Even with my <a href="http://www.otterbox.com/iphone-cases/iphone-3g-3gs-cases/iphone-3g-3gs-impact-case/" target="_blank" class="liexternal">Otterbox impact case</a> on, it still fits comfortably in my pants pocket. I miss having a physical keyboard (see &#8220;What I Don&#8217;t Like&#8221; below) but the buttons that are present make sense.</li>
<li>it&#8217;s a widescreen iPod: when music is playing and a call comes in, the music fades away and then the phone rings. When you&#8217;re done with the call, the music fades back in, picking up where you left off. One minor nit here, though, is that if you have the e-mail notification sound enabled, your music will fade briefly to play the mail sound, which isn&#8217;t necessary (the notification should just be suppressed). I replaced my old <a href="http://www.amazon.com/Belkin-TuneBase-Transmitter-Connector-Black/dp/B000EF1820" target="_blank" class="liamazon">Belkin Tunebase FM</a> with the <a href="http://catalog.belkin.com/IWCatProductPage.process?Product_Id=492841" target="_blank" class="liexternal">new version</a> for the iPhone so I can charge the device in my car and still listen to podcasts while driving. It includes a speakerphone for handsfree and a single button that works like the home button on the phone: click once to pause/play, twice to go forward a track, twice and hold for fast forward, three times to back a track, thrice and hold for rewind. I like being able to turn the phone sideways and watch video podcasts in widescreen too (although scrolling through podcasts is uncharacteristically <a href="http://discussions.apple.com/thread.jspa?messageID=10245773" target="_blank" class="liexternal">choppy</a>).</li>
<li>the GPS: using the built-in GPS and compass for location-based/direction-based services is really slick. Pulling up Google Maps and watching the blue dot move along a highway as I drive is like a scene out of a spy movie. Check out Yelp&#8217;s <a href="http://www.readwriteweb.com/archives/yelp_brings_first_us_augmented_reality_to_iphone_s.php" target="_blank" class="liexternal">monocle</a> feature for a perfect example of augmented reality using these features.</li>
<li>the camera: I&#8217;ve been stuck with the VGA (640&#215;480) camera in my PalmOS devices for so long! It&#8217;s great to finally have a mega-pixel camera (with video even!) that takes pretty good pictures. I love the geo-tagging feature too.</li>
<li>the speaker: being able to play music without headphones or external speakers is a definite plus.</li>
<li>oh yeah, it&#8217;s a phone: when held up to your ear, the screen turns itself off. Take it away from your ear, and the screen fades back into view. You don&#8217;t have to navigate through a voice response system to record your voicemail message or retrieve your messages, just tap the buttons on-screen. It&#8217;s those little things that continue to impress me. Of course, I haven&#8217;t actually <em>used</em> it a lot as a phone since it does so much other cool stuff.</li>
</ul>
<h4>What I Don&#8217;t Like</h4>
<ul>
<li>the keyboard: no one can argue that the iPhone&#8217;s virtual keyboard is better than then Treo&#8217;s. Typing on glass just isn&#8217;t the same. I&#8217;m getting better at two-thumbing it, but I still find typing (quickly) a frustrating exercise.</li>
<li><a href="http://www.windracer.net/blog/2008/07/i-love-my-ipod-i-hate-itunes/" class="liinternal">iTunes</a>: I haven&#8217;t looked into this much yet, but having to use iTunes to sync and customize the phone is a pain, especially if you&#8217;re using more than one computer. For example I sync my iPhone with my main desktop machine at home. While travelling over Thanksgiving, I had my laptop with me, but could not use iTunes on it to manage my phone. This is really going to be a pain at work when I&#8217;m trying to configure multiple iPhones for people in the office. I found the <a href="http://www.apple.com/support/iphone/enterprise/" target="_blank" class="liexternal">iPhone Configuration Utility</a> but still need to read up on enterprise deployments.</li>
<li>syncing (or lack thereof): requiring iTunes also makes it difficult for applications to sync their data for backup. Palm had HotSync and conduits which allowed third-party developers to create custom &#8220;tunnels&#8221; in HotSync that were basically transparent to the user. To sync my eWallet desktop with my iPhone data, I have to open each application (on my PC and the phone), and then start the sync over Wi-Fi (totally outside of iTunes). A kludgy workaround due to Apple&#8217;s control freak design. Even the photos and videos you take on the iPhone don&#8217;t sync down to your PC through iTunes, instead you have to use the built-in features of your PC since the device appears as a plain storage device (although you can sync certain folders of photos <em>back</em> to the iPhone from your PC if you want to carry a certain collection around).</li>
<li>I miss the <a href="http://en.wikipedia.org/wiki/IPod_click_wheel" target="_blank" rel="nofollow" class="liwikipedia">clickwheel</a>: using my iPod in the car without looking was pretty easy with the clickwheel. I was even pretty good at skipping most commercials (half a turn on the wheel was about 30 seconds). The iPhone isn&#8217;t as easy since it doesn&#8217;t have a lot of buttons. Yes, you can use the home button to skip tracks, or FF/RW, but for more accurate positioning you have to use the on-screen scrubber with your finger, which is pretty dangerous to do while driving.</li>
<li>lack of customization options: sure I can drag the app icons around to different pages, but I can&#8217;t rename them, can&#8217;t leave empty spaces on the grid, can only assign a few different options to the home button, etc. Sure, I could mess around with <a href="http://en.wikipedia.org/wiki/Jailbreak_(iPhone_OS)" target="_blank" rel="nofollow" class="liwikipedia">jailbreaking</a> and probably address some of those concerns, but I need to be able to support this device at work so I can&#8217;t deviate too much from the delivered experience.</li>
<li>battery life: forgive me &#8230; I&#8217;ve been using a Treo on the Edge network for almost 4 years and battery life was pretty darn good. I&#8217;d only have to charge it overnight and it was good for all day. 3G and all the other cool stuff I can do on my iPhone really sucks the battery dry quickly. When I had my separate iPod and Treo, it didn&#8217;t matter if my iPod died while listening to music during the day since my phone still worked. Now that I have this single device I need to be more careful about making sure I keep it charged. The lack of a user-replaceable battery is a downer too. It&#8217;d be nice if I could just buy a new battery and put it in myself instead of having to send the whole phone back to Apple for a &#8220;repair.&#8221;</li>
<li>fingerprints: it really sucks that 5 seconds after taking this beautiful shiny piece of technology out of the box it&#8217;s covered in my greasy fingerprints. The <a href="http://www.wireless.att.com/cell-phone-service/accessory-details/?q_categoryid=cat980639&amp;q_sku=sku3890274&amp;q_manufacturer=&amp;q_model=" target="_blank" class="liexternal">matte finish screen protectors</a> I got at the AT&amp;T store do a decent job of hiding them, though, and make the screen a lot less reflective and not so glassy to the touch.</li>
<li>it&#8217;s delicate: this will take some time to play out, but the Treos were solid. Not that I drop my phone a lot, but when I do, it&#8217;s usually in a bad way. The Treo might have gotten scratched or scuffed, but it kept on working. Little plastic tanks. I&#8217;m not so sure about the iPhone. I already dropped it once onto concrete but luckily I have that impact rubber case and it landed screen up. The folks in the office are pretty hard on their devices (based on the drawer full of broken phones in my desk) so it&#8217;ll be interesting to see if the iPhone is up to their abuse.</li>
</ul>
<h4>What Apps Do I Use?</h4>
<p>There&#8217;s an app for everything, right? Another of the big draws of the iPhone is the thousands of applications available in the iTunes App Store. One of the first things I had to do was find iPhone equivalents of the applications I used on a daily basis on my Treo. Here&#8217;s what I&#8217;ve got so far.</p>
<ul>
<li><em>What I used on the Treo</em>: <a href="http://www.iliumsoft.com/site/ew/ewallet.php" target="_blank" class="liexternal">eWallet</a></li>
<li><em>What I switched to for the iPhone</em>: <a href="http://www.iliumsoft.com/site/iphone/products_ewallet.php" target="_blank" class="liexternal">eWallet</a> ($10 for iPhone, or $20 usable on multiple devices including PC)</li>
</ul>
<p>Like anyone, I have a lot of passwords, logins, and various personal private information I need to carry around with me. To keep all of this sensitive information secure and portable, I&#8217;ve used Ilium Software&#8217;s eWallet application for many years. Luckily this switch was easily since Ilium has PalmOS, Windows Mobile, PC, and iPhone versions of  eWallet, and now I&#8217;ve used them all. Migrating my data was simple, although synchronization between the desktop and iPhone versions is a little cumbersome since you have to initialize the sync on both devices at the same time over Wi-Fi. Still, being able to access all of my passwords, accounts, and other stuff I store in my wallet on the iPhone is great.</p>
<ul>
<li><em>What I used on the Treo</em>: <a href="http://www.iliumsoft.com/site/lp/listpro.php" target="_blank" class="liexternal">ListPro</a></li>
<li><em>What I switched to for the iPhone</em>: <a href="http://www.evernote.com/" target="_blank" class="liexternal">Evernote</a> (free)</li>
</ul>
<p>I also keep a lot of random information on my handheld: gift ideas, vacation days, clothes sizes, various house information/measurements, lists of all sorts! So Ilium Software&#8217;s ListPro was another application I relied heavily on, using it both on my Treo and desktop PC. Unfortunately, Ilium hasn&#8217;t produced an iPhone version of ListPro yet so I had to search for alternatives. I ended up trying Evernote, which has iPhone and PC versions (in addition to many more, including via a web browser). Evernote requires you to create an account on their website, so technically your notes are being stored on their servers and then synced with your different devices. You can store text, images, documents, etc. but keep in mind the only notes you can actually <em>edit</em> on the iPhone have to be plain, unformatted text (so no checkboxes, bullets, etc.). Creating notes on the iPhone has the benefit of automatic location tagging, using the phone&#8217;s GPS. The basic free service has a limit on how much you can upload a month, so there&#8217;s a premium service you can pay for without those limits and also includes things like extra security. I had to manually copy/paste all of my lists out of ListPro into Evernote, which was a bit of a pain, but it did give me the opportunity to clean up and re-organize some of my lists.</p>
<ul>
<li><em>What I used on the Treo</em>: Tasks (GoodLink)</li>
<li><em>What I switched to for the iPhone</em>: <a href="http://web.me.com/rerlsoft/Rerlsoft/iMTasks.html" target="_blank" class="liexternal">iMTasks</a> ($7)</li>
</ul>
<p>With GoodLink on my Treo, my e-mail, contacts, calendar, tasks, and notes from Outlook were all synchronized in near real-time. The iPhone handles the e-mail, contacts, and calendar, but <em>not</em> the to do list or notes. I am a heavy user of Outlook tasks so I really wanted those synced to my iPhone. For whatever reason, Apple decided not to bake that in. Instead, I had to purchase RERLSoft&#8217;s IMTasks app. Once I entered my Exchange information, the app downloaded my to do list and keeps it synchronized (although only while the app is open). Hopefully the forthcoming GoodLink client for the iPhone will include this, but for now this was a must-purchase function for me. RERLSoft has a version that includes Outlook notes synchronization (and also allows you to manage your out-of-office setting), but since I&#8217;m using Evernote now I decided to stop using Outlook notes altogether.</p>
<ul>
<li><em>What I used on the Treo</em>: <a href="http://www.tealpoint.com/softauto.htm" target="_blank" class="liexternal">TealAuto</a></li>
<li><em>What I switched to for the iPhone</em>: <a href="http://appcubby.com/gas/index.html" target="_blank" class="liexternal">Gas Cubby</a> ($5, free lite version available)</li>
</ul>
<p>Some other data I keep on my phone is car information: gas mileage, repair history, etc. On my Treo I used TealPoint&#8217;s TealAuto application to store and track fill-ups, repairs, maintenance, etc. Without an iPhone version, I tried out a few of the vehicle apps in the App Store, including the free &#8220;lite&#8221; version of Gas Cubby and eventually ended up purchasing the full version. Using the Windows version of TealAuto, I was able to export all of my data from my Treo into a CSV file. Then, using App Cubby&#8217;s unsupported import feature, I was able to load it all into Gas Cubby. The import only supports gas events, though, not maintenance, so I manually entered our 2009 maintenance events into the app later (not a big deal since there were a lot less of those compared to fill-ups). If you&#8217;re a multiple iPhone home and purchase multiple copies of Gas Cubby, you can even keep the data synchronized across devices, which is a cool feature.</p>
<ul>
<li><em>What I used on the Treo</em>: <a href="http://www.isilo.com/" target="_blank" class="liexternal">iSilo</a></li>
<li><em>What I switched to for the iPhone</em>: <span class="removed_link" title="http://www.lexcycle.com/">Stanza</span> (free)</li>
</ul>
<p>If you read this blog you know I do a lot of <a href="http://www.windracer.net/blog/category/books/wijfr/" class="liinternal">reading</a> on my PDA. There&#8217;s not a version of iSilo for the iPhone so I had to try out a few free e-readers. I settled on Stanza. Using the desktop version, I was able to convert the book I&#8217;m reading from the Baen free library from HTML into a format for the Stanza reader and transfer it to my iPhone. Having the larger, higher resolution screen on the device is great for reading. Plus you can change font sizes, colors, and themes (black on white, white on black, textured, etc.). I&#8217;ve also installed <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=1000301301" target="_blank" class="liamazon">Amazon&#8217;s Kindle Reader</a> (free), in case I decide to <em>purchase</em> some new e-books. No need for a Kindle now! Interesting, though, that Stanza is actually owned by Amazon. I wonder if eventually they&#8217;ll combine these apps?</p>
<ul>
<li><em>What I used on the Treo</em>: <a href="http://www.tussh.com/" target="_blank" class="liexternal">tussh</a></li>
<li><em>What I switched to for the iPhone</em>: <a href="http://www.zinger-soft.com/iSSH_features.html" target="_blank" class="liexternal">iSSH</a> ($5), <a href="http://www.irdesktop.com/" target="_blank" class="liexternal">iRdesktop</a> (free)</li>
</ul>
<p>Why do I like remoting into my Linux server from my phone? Because I can, of course! iSSH let&#8217;s me login to my Ubuntu box at home via command-line or tunnelled VNC. The free iRdesktop utility lets me connect to my Windows servers at work when I have my iPhone connected to the VPN. Amazing. There&#8217;s even a free <a href="http://www.citrix.com/English/ps2/products/feature.asp?contentID=1685511" target="_blank" class="liexternal">Citrix client</a> (but I haven&#8217;t gotten it to work properly yet).</p>
<ul>
<li><em>What I used on the Treo</em>: <a href="http://roguelike-palm.sourceforge.net/iRogue/" target="_blank" class="liexternal">iRogue</a></li>
<li><em>What I switched to for the iPhone</em>: <a href="http://projects.gandreas.com/rogue/index.html" target="_blank" class="liexternal">Rogue</a> (free)</li>
</ul>
<p>My daughter loves <a href="http://www.windracer.net/blog/2009/05/you-hear-maniacal-laughter-in-the-distance/" class="liinternal">playing iRogue</a> on my Treo and I like it too, so of course I needed the iPhone version! <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Some other apps I&#8217;ve purchased/installed include:</p>
<ul>
<li><a href="http://www.kavapoint.com/index.php/iemergency" target="_blank" class="liexternal">iEmergency+</a> ($1) allows you to store your emergency contact information (phone numbers, medical info, etc.) in a single place and also has a helpful utility for adding <a href="http://en.wikipedia.org/wiki/In_case_of_emergency" target="_blank" rel="nofollow" class="liwikipedia">ICE</a> information to your iPhone&#8217;s lock screen.</li>
<li>Using <a href="http://blogs.verisign.com/identity/2009/03/verisign-iphone-app-protects-identity.php" target="_blank" class="liexternal">VIP Access</a> (free) means I don&#8217;t need to carry around my PayPal football or VeriSign Secure Card since my iPhone can now act as my security token.</li>
<li>The iPhone doesn&#8217;t allow for multiple e-mail signatures when you use multiple e-mail accounts. <a href="http://appadvice.com/app/330435052" target="_blank" class="liexternal">JohnHancock</a> ($2) lets you create and switch between as many as you need. There doesn&#8217;t seem to be an elegant solution, but this app at least provides one.</li>
<li><a href="http://redlaser.com/" target="_blank" class="liexternal">RedLaser</a> ($2) is an amazing barcode scanning application. Point your iPhone&#8217;s camera at any barcode and the app will pull up a list of prices from other stores. The latest update even uses the GPS to find <em>local</em> prices. If nothing else, it&#8217;s fun to play with.</li>
<li>Chess with Friends (free) and Words with Friends (free) from <a href="http://newtoyinc.com/" target="_blank" class="liexternal">New Toy, Inc</a>. are basically chess and Scrabble games you can play &#8220;online&#8221; with other iPhone users. Really cool for playing with friends or relatives who live far away. We used both of these games in the car on our recent Thanksgiving holiday trip to play games without having to pass a single iPhone back and forth. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
</ul>
<h4>What Do I Think?</h4>
<p>The iPhone is a really slick device. The first few days were rough for me, since I was really set in my ways with my Treo and doing things in a certain way. Over the past two weeks, though, as I&#8217;ve had time to get better acquainted with my new <span style="text-decoration: line-through;">shiny toy</span> business tool, I have to admit it is a well engineered piece of hardware and software. Now I have a single device that really covers all the bases. Pretty incredible.</p>
<p>Got any other must-have/must-try apps for me, or other iPhone advice, tips, or tricks? Leave me a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2009/12/apple-iphone-3gs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wii Fit &#8220;is a very, very mild workout&#8221;</title>
		<link>http://www.windracer.net/blog/2009/11/wii-fit-is-a-very-very-mild-workout/</link>
		<comments>http://www.windracer.net/blog/2009/11/wii-fit-is-a-very-very-mild-workout/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:51:38 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[fitness]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=853</guid>
		<description><![CDATA[This is really no surprise to me, but an American Council of Exercise study on the effectiveness of Wii Fit determined it to be &#8220;underwhelming&#8221; (found via Joystiq). I&#8217;ve always said it was a combination of Wii Fit and changing my eating habits that made it possible for me to drop 40lbs. Just playing Wii [...]]]></description>
			<content:encoded><![CDATA[<p>This is really no surprise to me, but an American Council of Exercise study on the effectiveness of Wii Fit determined it to be &#8220;underwhelming&#8221; (found via <a href="http://www.joystiq.com/2009/11/11/fitness-group-underwhelmed-by-wii-fit-exercises/" target="_blank" class="liexternal">Joystiq</a>).</p>
<p>I&#8217;ve always said it was a combination of Wii Fit <em>and</em> changing my eating habits that made it possible for me to drop 40lbs. Just playing Wii Fit alone wouldn&#8217;t have really done much, but it was responsible for getting me into a habit of an (almost) daily exercise routine &#8230; and it&#8217;s <em>fun</em>. Going running outside for 20 minutes does not sound like fun to me, but I can do that easily in front of the TV with Wii Fit. I think everyone agrees that fun exercises will keep you coming back and those that aren&#8217;t fun turn into the dusty, unused Soloflex sitting in the corner of your den. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>The article does concede that some exercise is better than none, and that Wii Fit Plus might be better due to the customization of routines with less lag time in between (which <a href="http://www.windracer.net/blog/2009/11/if-you-already-own-wii-fit-get-wii-fit-plus/" class="liinternal">I agree with</a>). It&#8217;s an <a href="http://www.acefitness.org/media/media_display.aspx?itemid=2471" target="_blank" class="liexternal">interesting read</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2009/11/wii-fit-is-a-very-very-mild-workout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you already own Wii Fit, get Wii Fit Plus</title>
		<link>http://www.windracer.net/blog/2009/11/if-you-already-own-wii-fit-get-wii-fit-plus/</link>
		<comments>http://www.windracer.net/blog/2009/11/if-you-already-own-wii-fit-get-wii-fit-plus/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 02:52:46 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[fitness]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=845</guid>
		<description><![CDATA[While I continue to wait for the delivery of my FitBit I picked up Wii Fit Plus last weekend. Wii Fit Plus is basically an upgrade to the original Wii Fit that came with the balance board: it contains all of the original games and activities, then adds a bunch of new games (Training Plus) [...]]]></description>
			<content:encoded><![CDATA[<p>While I <a href="http://www.windracer.net/blog/2009/08/do-i-still-want-need-a-fitbit/" class="liinternal">continue to wait</a> for the delivery of my FitBit I picked up <a href="http://wiifit.com/" target="_blank" class="liexternal">Wii Fit Plus</a> last weekend.</p>
<p>Wii Fit Plus is basically an upgrade to the original Wii Fit that came with the balance board: it contains all of the original games and activities, then adds a bunch of new games (Training Plus) and features. It will automatically import all of your data from Wii Fit so you won&#8217;t even need your old disc anymore. So, what&#8217;s new and cool?</p>
<p>First off, you can now create profiles for babies and pets. Why? Well, I guess if you want to be able to track the weight of those smaller members of your household it can come in handy. Like in Wii Fit, the balance board weighs you first, and then you holding your dog, cat, or baby to calculate the difference. It&#8217;s kinda cute to see our dogs in the Wii Fit Plaza.</p>
<p><a href="http://www.windracer.net/gallery/d/26660-3/wfp-plaza.jpg" rel="lightbox[845]" title="Wii Fit Plus Plaza, with pets!" class="liimagelink"><img class="aligncenter" title="Wii Fit Plus Plaza, with pets!" src="http://www.windracer.net/gallery/d/26660-3/wfp-plaza.jpg" alt="" width="451" height="300" /></a></p>
<p>A new &#8220;multi-player&#8221; feature is available from the Wii Fit Plaza which allows a bunch of people to alternate playing the mini-games, but none of it counts towards Wii Fit credits. I guess it&#8217;s just a way to allow your guests to try out the games without needing to create a profile, get weighed in, etc.</p>
<p>One new feature I was looking forward to was the addition of routines, basically &#8220;playlists&#8221; of activities that was supposed to streamline performing multiple exercises in a row without all of the pausing and clicking. Unfortunately, you can only add Strength Training and Yoga activities to a routine, not any of the Aerobics or Balance activities. Also, you&#8217;re limited to a certain number of reps. For example, instead of having the option to add 5, 10, or 20 push-up and side-plank reps, you can only choose 6 at a time. To work around this you&#8217;d have to add multiples of the 6-rep activities in a row:</p>
<p style="text-align: left;"><a href="http://www.windracer.net/gallery/d/25798-3/wfp-routine01.jpg" rel="lightbox[845]" title="Wii Fit Plus routine" class="liimagelink"><img class="aligncenter" title="Wii Fit Plus routine" src="http://www.windracer.net/gallery/d/25798-3/wfp-routine01.jpg" alt="" width="451" height="300" /></a></p>
<p style="text-align: left;">Once you do have the routine set up, though, it definitely makes performing multiple activities more efficient. You don&#8217;t need to keep clicking the A button a bunch of times to move on, you just see a brief checklist and then the next activity starts.</p>
<p style="text-align: center;"><a href="http://www.windracer.net/gallery/d/25801-3/wfp-routine02.jpg" rel="lightbox[845]" title="routine checklist" class="liimagelink"><img class="aligncenter" title="routine checklist" src="http://www.windracer.net/gallery/d/25801-3/wfp-routine02.jpg" alt="" width="451" height="300" /></a></p>
<p style="text-align: left;">Wii Fit Plus also assigns METs (<a href="http://en.wikipedia.org/wiki/Metabolic_equivalent" target="_blank" rel="nofollow" class="liwikipedia">Metabolic Equivalents</a>) to activities so in addition to showing you the number of minutes you&#8217;ve exercised (Wii Fit credits) it will also calculate the number of calories you&#8217;ve burned. New options in the Activity Log also let you track your waist size and the number of steps you&#8217;ve taken during the day (assuming you have a pedometer to track that data for you &#8230; this is where my FitBit will eventually come into play).</p>
<p style="text-align: left;">The new <a href="http://wiifit.com/training/training-plus.html" target="_blank" class="liexternal">Training Plus</a> games are a lot of fun too! Cycling, Segway riding, snowball fights, the obstacle course, and many more new additions can really get you back into Wii Fit if you&#8217;ve been getting bored with the old activities.</p>
<p style="text-align: left;">So, if you bought Wii Fit give Wii Fit Plus a try &#8230; it&#8217;s definitely worth the $20 (or less, if you shop around).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2009/11/if-you-already-own-wii-fit-get-wii-fit-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

