<?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"
	>

<channel>
	<title>Electron Hut: Kyle Bedell's Blog</title>
	<atom:link href="http://blogs.n1zyy.com/trokair/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.n1zyy.com/trokair</link>
	<description>It's not what you look at that matters, it's what you see.</description>
	<pubDate>Sun, 10 Aug 2008 13:22:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Neutrino Labs</title>
		<link>http://blogs.n1zyy.com/trokair/2008/08/10/neutrino-labs/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/08/10/neutrino-labs/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 13:21:42 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Afternoon Projects]]></category>

		<category><![CDATA[Neutrino Labs]]></category>

		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=136</guid>
		<description><![CDATA[I purchased some hosting from Verve the other day, as I needed a place to host all of my personal &#8220;web experiments&#8221; and web services. Although its front-facing image is just a WordPress blog, I have two projects-in-progress up on Neutrino Labs.

Mozilla Weave server (because Mozilla&#8217;s services.mozilla.com is frequently swamped and inaccessible)
TrackMe! Mobile Location server [...]]]></description>
			<content:encoded><![CDATA[<p>I purchased some hosting from Verve the other day, as I needed a place to host all of my personal &#8220;web experiments&#8221; and web services. Although its front-facing image is just a WordPress blog, I have two projects-in-progress up on <a href="http://kylebedell.com/" target="_blank">Neutrino Labs</a>.</p>
<ul>
<li><a href="http://labs.mozilla.com/projects/weave/" target="_blank">Mozilla Weave</a> server (because Mozilla&#8217;s <em>services.mozilla.com</em> is frequently swamped and inaccessible)</li>
<li><a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fforum.xda-developers.com%2Fshowthread.php%3Ft%3D340667&amp;ei=neKeSMGFBpbSeYHR0a4F&amp;usg=AFQjCNGZZ0qCsH2oMAtuRRplmrxY7xsMdQ&amp;sig2=lucyhkNen5aoajI6P_-yoQ" target="_blank">TrackMe! Mobile Location</a> server (because I just want to do cool stuff with my new <a href="http://en.wikipedia.org/wiki/AT&amp;T_Tilt" target="_blank">HTC Kaiser</a>)</li>
</ul>
<p>If you find some cool server project floating around on the tubes, let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/08/10/neutrino-labs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some stuff about web forms</title>
		<link>http://blogs.n1zyy.com/trokair/2008/08/05/some-stuff-about-web-forms/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/08/05/some-stuff-about-web-forms/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 22:20:48 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=134</guid>
		<description><![CDATA[Specifically, labels! The topic is a fair bit more interesting than you might think.
Every web form has a few components; labels, input fields, and actions. We use the labels to ask questions of our users, the input fields to give them a way to answer our questions, and actions to let them submit the answers [...]]]></description>
			<content:encoded><![CDATA[<p>Specifically, labels! The topic is a fair bit more interesting than you might think.</p>
<p>Every web form has a few components; labels, input fields, and actions. We use the labels to ask questions of our users, the input fields to give them a way to answer our questions, and actions to let them submit the answers they&#8217;ve filled in.</p>
<p>The alignment of your labels can have a profound effect on how people go about filling in your form. There are three types of alignment: left, right, and top.</p>
<p><img src="http://farm3.static.flickr.com/2179/2366428797_cefb5f9cc9.jpg" alt="" /><br />
Top-aligned labels keep the labels and input fields close together. This provides three distinct advantages:</p>
<ul>
<li> Processing the labels and input fields requires little cognitive effort because they&#8217;re so close together (average of 50ms to move from label to input, vs. 500ms for left-aligned labels and 240ms for right-aligned)</li>
<li>You can get through the form more quickly because you only have to worry about moving in one direction (down)</li>
<li>There is plenty of room for the labels to expand horizontally (so you can fit longer ones on the page)</li>
</ul>
<p>The disadvantage is that they require a lot of vertical space.</p>
<p><img src="http://farm3.static.flickr.com/2041/2366428975_c484c14325.jpg" alt="" /><br />
Right-aligned labels have reduced readability compared to left or top-aligned labels due to the ragged left edge they create (because we read from left to right, we prefer hard lines on the left side). They also suffer from issues with flexibility; you&#8217;ll often see right-aligned labels taking up two vertical lines of space which makes them harder to read. However, they have the benefit of taking up less vertical space and keep the label adjacent to the input field (cuts down on processing time).</p>
<p><img src="http://farm3.static.flickr.com/2363/2366429129_58c08b9150.jpg" alt="" /><br />
Left-aligned labels make it very easy to scan through the entire list of labels in a form, useful when users have to fill in potentially unknown information. They also take up less vertical space. However, the variable length of the gap between the label and the input field requires a lot of cognitive processing power and will slow down users.</p>
<p>The type of alignment you use depends on the situation; there&#8217;s a place for everything!</p>
<p><strong>Images from Luke Wroblewski&#8217;s excellent book, <em>Web Form Design: Filling In the Blanks</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/08/05/some-stuff-about-web-forms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>When is a computer not a computer?</title>
		<link>http://blogs.n1zyy.com/trokair/2008/07/26/when-is-a-computer-not-a-computer/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/07/26/when-is-a-computer-not-a-computer/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 02:34:30 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Afternoon Projects]]></category>

		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=133</guid>
		<description><![CDATA[&#8230;when it&#8217;s virtualized! I&#8217;ve been experimenting with running Windows 2003 Server R2 via VMWare Fusion on my new MacBook Pro. So far, everything&#8217;s been running much more smoothly than I anticipated. However, I found that trying to run a server OS as a workstation OS is full of its own quirks (like having to fill [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;when it&#8217;s <a href="http://en.wikipedia.org/wiki/Full_virtualization">virtualized</a>! I&#8217;ve been experimenting with running <a href="http://en.wikipedia.org/wiki/Windows_2003_Server">Windows 2003 Server R2</a> via <a href="http://en.wikipedia.org/wiki/VMware_Fusion">VMWare Fusion</a> on my new MacBook Pro. So far, everything&#8217;s been running much more smoothly than I anticipated. However, I found that trying to run a server OS as a workstation OS is full of its own quirks (like having to fill in a reason/description every time you power off). I just (about two minutes ago) finished installing Windows Vista Ultimate via Boot Camp and am going to try Fusion&#8217;s new beta feature that allows running a Boot Camp partition as a VM. I&#8217;ll let you know how it works out!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/07/26/when-is-a-computer-not-a-computer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Macbook Pro Impressions</title>
		<link>http://blogs.n1zyy.com/trokair/2008/07/20/macbook-pro-review/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/07/20/macbook-pro-review/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 18:10:07 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=132</guid>
		<description><![CDATA[My search for a new laptop ended abruptly yesterday, as I took a trip to the local Apple Store in the Burlington Mall (about 15 minutes north of Waltham on Route 95/128). After having read about so much awesome Mac software like MarsEdit (which I&#8217;m using to write this post), Coda (really cool one-page web [...]]]></description>
			<content:encoded><![CDATA[<p>My search for a new laptop ended abruptly yesterday, as I took a trip to the local Apple Store in the Burlington Mall (about 15 minutes north of Waltham on Route 95/128). After having read about so much awesome Mac software like MarsEdit (which I&#8217;m using to write this post), Coda (really cool one-page web development software from Panic), and OmniGraffle (think Visio, but much easier to use), I decided to take the plunge. I realize that there&#8217;s a Centrino 2 revision on the horizon, but at the end of the day, I figured the best of the present-day was fine for my purposes. Yes, I purchased a 15-inch Macbook Pro. <img src='http://blogs.n1zyy.com/trokair/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The machine is pretty zippy, having the following specs:</p>
<ul>
<li>2.4GHz Intel Core 2 Duo &#8220;Peryn&#8221; with 3MB L2 cache</li>
<li>2GB DDR2-667 RAM</li>
<li>200GB 5400RPM hard drive</li>
<li>1440&#215;900 LED-backlit screen (matte finish)</li>
<li>802.11a/b/g/n wireless and Gigabit ethernet</li>
<li>GeForce 8600GT-M with 256MB of VRAM</li>
<li>Slot-loading DVD+/-RW burner</li>
</ul>
<p>The first thing I noticed about the Macbook Pro was its all-aluminum construction. I&#8217;ve never used a notebook whose body was completely made out of metal (Lenovo&#8217;s high-end ThinkPads with their magnesium frames come the closest). It&#8217;s extremely solid, although the metal does tend to heat up more quickly than the plastics on my old notebooks have. The screen is the real shocker; this is the first LED-backlit panel I&#8217;ve used, and it is downright awesome. Not only is the screen super-thin (for something real crazy, go take a look at the Macbook Air in person), the colors are rich and the contrast and brightness are worlds-above what my X61 tablet could manage. I&#8217;m really liking the feel of the keyboard keys. There&#8217;s no flex to the keyboard at all, and when it&#8217;s dark in the room you&#8217;re typing in, the keyboard backlight automatically turns on to help you see. The only real issue I&#8217;m having has to do with my transition from Windows - I keep pressing Control-C/V/X to copy, cut, and paste (it&#8217;s Command-C/V/X on the Mac).</p>
<p>The speakers are better than the mono one on my old ThinkPad, but (as you might expect from a notebook with no subwoofer), they&#8217;re lacking in the bass department. I haven&#8217;t tried plugging in my headphones yet to listen for any line noise. The slot-loading DVD drive is a nice touch as well, but it&#8217;s pretty noisy, and I feared that my discs were getting eaten judging by the noises I first heard. Apparently, after some research, I found that slot-loaders DO tend to cause more wear on your discs after awhile. We&#8217;ll see how everything goes.</p>
<p>OS X is very shiny; there&#8217;s a lot more gloss spread around than there was on XP (or even Vista). I can see how the general experience is geared towards &#8220;creativity.&#8221; It&#8217;s almost like OS X is pushing you to just jump in and start making something (Apple has bundled movie, audio, and image creation apps right into the OS). I&#8217;m going to start playing around with GarageBand, so expect to see some horrible loop-generated music hitting the blogs soon!</p>
<p>I suppose my only real complaint so far is how expensive the 3rd party software is. Parallels (the virtualization software) runs $80 per copy, and other awesome apps like Apple&#8217;s iWork suite and Panic&#8217;s Coda run $80 per copy as well. I&#8217;d like to get copies of all of these things, but $240 is a lot of money for software.</p>
<p>So far, I&#8217;m liking what I&#8217;m using! I&#8217;ll keep putting up any additional thoughts as they come into my head.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/07/20/macbook-pro-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The hunt for the new notebook</title>
		<link>http://blogs.n1zyy.com/trokair/2008/07/19/the-hunt-for-the-new-notebook/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/07/19/the-hunt-for-the-new-notebook/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 13:31:03 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Mobile Devices]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=131</guid>
		<description><![CDATA[I just sold off my Lenovo X61 Tablet, and I&#8217;m in the market for a new notebook for home and school. The problem is that I&#8217;m torn. My inner gamer, having used only portable computers with crummy integrated graphics, is clamoring for something that could handle TF2 on the go. On the other hand, this [...]]]></description>
			<content:encoded><![CDATA[<p>I just sold off my Lenovo X61 Tablet, and I&#8217;m in the market for a new notebook for home and school. The problem is that I&#8217;m torn. My inner gamer, having used only portable computers with crummy integrated graphics, is clamoring for something that could handle TF2 on the go. On the other hand, this thing is going to be moving all over the place, so I&#8217;d prefer something that didn&#8217;t have a 17 inch screen and weighed as much as a small elephant. I have something hovering around a $2000 budget, so I&#8217;m fairly flexible in what I could go with.</p>
<p>That being said, I basically have three options that I&#8217;ve narrowed myself down to.</p>
<p>The lightest (and also the most expensive) would be a new <a href="http://www.sonystyle.com/webapp/wcs/stores/servlet/CategoryDisplay?catalogId=10551&amp;storeId=10151&amp;langId=-1&amp;categoryId=8198552921644570897&amp;parentCategoryId=16154]">Sony Vaio Z-Series</a>. It&#8217;s powerful, portable, and has discrete graphics that don&#8217;t completely stink. Not so sure about the very MacBook-like keyboard, but the quality certainly seems to be there.</p>
<p>The middle-of-the-road model (and likely the most inexpensive) would be a <a href="http://gizmodo.com/5025198/lenovo-ideapad-u330-is-super-shiny-and-slim">Lenovo IdeaPad U330</a>. It&#8217;s not a slim or light as the Sony, but the keyboard is the rock-solid ThinkPad one (I love ThinkPad keyboards) and it&#8217;s pretty powerful. The only issue (apparently) is that the &#8220;mirror-like&#8221; screen can cause headaches.</p>
<p>And finally, the heaviest option (at 7 pounds) is a <a href="http://www.xoticpc.com/sager-np8660-built-clevo-m860tu-p-2411.html">Clevo M860tu (aka Sager NP8660)</a>. The bang for the buck ratio here is simply incredible (this thing is basically better than my desktop, crammed into a laptop shell). The quality appears to be top-notch as well. Again, the only issue at the end of the day is the weight (really heavy).</p>
<p>In a perfect world, LG would sell their <a href="http://www.notebookreview.com/default.asp?newsID=4296">P300</a> in the United States, but (despite what they&#8217;ve said), that doesn&#8217;t look like it&#8217;s going to happen anytime soon.</p>
<p>Thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/07/19/the-hunt-for-the-new-notebook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Roger Williams Park Zoo</title>
		<link>http://blogs.n1zyy.com/trokair/2008/07/13/roger-williams-park-zoo/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/07/13/roger-williams-park-zoo/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 01:18:07 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Trips]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=130</guid>
		<description><![CDATA[Katt and I went on a trip (with her family) to the Roger Williams Park Zoo in Providence, RI today! While I didn&#8217;t remember having much fun at the zoo when I was a kid, it was actually really entertaining today. I brought my camera, and the better shots from my trip are up on [...]]]></description>
			<content:encoded><![CDATA[<p>Katt and I went on a trip (with her family) to the <a href="http://www.rogerwilliamsparkzoo.org/" target="_blank">Roger Williams Park Zoo</a> in Providence, RI today! While I didn&#8217;t remember having much fun at the zoo when I was a kid, it was actually really entertaining today. I brought my camera, and the better shots from my trip are <a href="http://flickr.com/photos/trokair/sets/72157606152613469/" target="_blank">up on Flickr</a>. Take a look and let me know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/07/13/roger-williams-park-zoo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Evernote</title>
		<link>http://blogs.n1zyy.com/trokair/2008/07/03/evernote/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/07/03/evernote/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 21:45:24 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Mobile Devices]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=129</guid>
		<description><![CDATA[I was looking for an alternative to Microsoft&#8217;s OneNote (basically a souped-up, ink-enabled journal application) because the OneNote Printer driver that allows me to import Office documents and PDFs into my notebooks keeps mysteriously vanishing. A complete reinstall of Office 2007 is the only thing that fixes the issue. So, in my search for another [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for an alternative to Microsoft&#8217;s OneNote (basically a souped-up, ink-enabled journal application) because the OneNote Printer driver that allows me to import Office documents and PDFs into my notebooks keeps mysteriously vanishing. A complete reinstall of Office 2007 is the only thing that fixes the issue. So, in my search for another clipping/notetaking/journaling application, I discovered a gem: <a href="http://evernote.com/" target="_blank">Evernote</a>. With mobile, web, and desktop clients, Evernote is a lot like &#8220;OneNote Online.&#8221; You can add, modify, and retrieve your notes from just about any device with internet access and a screen, and Evernote will locally index all of your notes for faster searching. To make things even better, you can share your notebooks so that they&#8217;re publically viewable.</p>
<p>The software supports importing just about anything. Audio, video, pictures, ink, and written text are all supported, and the UI is pretty intuitive. The caveat is that &#8220;free&#8221; accounts have small monthly upload caps (50MB). For $5/month or $45/year, your upload cap gets bumped up to 500MB, you&#8217;ll have priority online indexing, and ads get removed from public notebooks. Time will tell if I&#8217;ll need to actually go for a pro account&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/07/03/evernote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mozilla Weave</title>
		<link>http://blogs.n1zyy.com/trokair/2008/07/03/mozilla-weave/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/07/03/mozilla-weave/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 21:33:54 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=128</guid>
		<description><![CDATA[While it&#8217;s been around for awhile, Mozilla&#8217;s Weave has just become easy enough to use that you might consider downloading it. It&#8217;s basically a better version of Google&#8217;s now-defunct Browser Sync; it copies your cookies, browser bookmarks, tabs, and saved passwords into a &#8216;computing cloud&#8217;. From there, you can pull up all of your personal [...]]]></description>
			<content:encoded><![CDATA[<p>While it&#8217;s been around for awhile, Mozilla&#8217;s <a href="http://labs.mozilla.com/projects/weave/" target="_blank">Weave</a> has just become easy enough to use that you might consider downloading it. It&#8217;s basically a better version of Google&#8217;s now-defunct <a href="http://www.google.com/tools/firefox/browsersync/" target="_blank">Browser Sync</a>; it copies your cookies, browser bookmarks, tabs, and saved passwords into a &#8216;computing cloud&#8217;. From there, you can pull up all of your personal settings on any copy of Firefox! I just put it on my machine at work and at home, and I can say that it works well. Give it a try!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/07/03/mozilla-weave/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Courtesy of swissmiss</title>
		<link>http://blogs.n1zyy.com/trokair/2008/06/29/courtesy-of-swissmiss/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/06/29/courtesy-of-swissmiss/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 15:18:52 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Silly]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=127</guid>
		<description><![CDATA[Where the hell is Matt?
Watch the video on the front page.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wherethehellismatt.com" target="_blank">Where the hell is Matt?</a></p>
<p>Watch the video on the front page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/06/29/courtesy-of-swissmiss/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Guitar Hero: On Tour Review</title>
		<link>http://blogs.n1zyy.com/trokair/2008/06/24/guitar-hero-on-tour-review/</link>
		<comments>http://blogs.n1zyy.com/trokair/2008/06/24/guitar-hero-on-tour-review/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 02:49:53 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.n1zyy.com/trokair/?p=126</guid>
		<description><![CDATA[
I never thought I&#8217;d see the day, but Red Octane has brought the ever-popular Guitar Hero series to the Nintendo DS. While not quite as good as its console relatives,  Guitar Hero: On Tour&#8217;s experience is incredibly fun and entertaining in its own right.
Boasting 25 tracks (see the full setlist), most of which are [...]]]></description>
			<content:encoded><![CDATA[<p><a title="CIMG1238 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609009376/"><img src="http://farm4.static.flickr.com/3068/2609009376_ccd896fa4a.jpg" alt="CIMG1238" width="500" height="375" /></a></p>
<p>I never thought I&#8217;d see the day, but Red Octane has brought the ever-popular Guitar Hero series to the Nintendo DS. While not quite as good as its console relatives,  Guitar Hero: On Tour&#8217;s experience is incredibly fun and entertaining in its own right.</p>
<p>Boasting 25 tracks (see the <a href="http://en.wikipedia.org/wiki/Guitar_hero_on_tour#Soundtrack" target="_blank">full setlist</a>), most of which are master recordings, On Tour has a much smaller musical selection than its console bretheren. It&#8217;s not difficult to imagine why; the maximum size for Nintendo DS cartridges sits at 2 gigabits (or about ~256 megabytes), and when one needs to keep audio quality as high as possible, there&#8217;s not much wiggle room for additional songs. As a result, the audio quality is fantastic (right up there with AAA DS titles), even through the DS&#8217;s tiny speakers.As far as modes go, Career Mode is back with five venues, each with five songs to play and four difficulty levels. Practice and Quickplay modes return for those wanting to perfect their skills. On the wireless multiplayer front, a much-improved Guitar Battle mode returns from Guitar Hero and you can still engage in Face-Offs or play Cooperatively with a friend.</p>
<p>But what about the <em>experience</em>? How did Red Octane get the essentials of the Guitar Hero experience on to the DS? I&#8217;ll explain with some photos:</p>
<p><a title="CIMG1241 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609012992/"><img src="http://farm4.static.flickr.com/3121/2609012992_cd9ed4b07f.jpg" alt="CIMG1241" width="500" height="375" /></a></p>
<p>Everything comes packaged in a solid cardboard box with plastic shells holding the items in place.</p>
<p><a title="CIMG1243 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609016038/"><img src="http://farm4.static.flickr.com/3010/2609016038_9872c6fb07.jpg" alt="CIMG1243" width="500" height="375" /></a></p>
<p>You&#8217;ll get a copy of Guitar Hero: On Tour, the Guitar Grip (more on that in a second), an extra stylus pick (great quality), manuals, and an adapter for original Nintendo DS units (their GBA cartridge slot is full-size). Switching out adapters requires a straight-head screwdriver.</p>
<p><a title="CIMG1250 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609026272/"><img src="http://farm4.static.flickr.com/3096/2609026272_c366d11d4e.jpg" alt="CIMG1250" width="500" height="375" /></a></p>
<p>Here&#8217;s the result of over 25 prototyping iterations; the Guitar Grip! It&#8217;s extremely well-built for starters; everything from the straps to the buttons feel solid. An adjustable handstrap allows the grip to adjust for different-sized hands, and the artwork can be easily replaced by simply popping the plastic shell apart and inserting a new paper inlay.</p>
<p><a title="CIMG1244 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2608187843/"><img src="http://farm4.static.flickr.com/3015/2608187843_2e8f88e2c9.jpg" alt="CIMG1244" width="500" height="375" /></a></p>
<p>The grip itself slots snugly into the GBA cartridge slot on the bottom of the DS. If you want to switch out the slot adapter for an original DS-compatible one, you just need to loosen two straight-head screws, slide the old adapter out, slide then ew one in, and retighten.</p>
<p><a title="CIMG1248 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609023508/"><img src="http://farm4.static.flickr.com/3096/2609023508_60532d91ac.jpg" alt="CIMG1248" width="500" height="375" /></a></p>
<p>Red Octane apparently tried a grip with five buttons (and it worked alright), but you can&#8217;t really slide your fingers properly when you&#8217;re holding the DS. Also, I&#8217;m thinking that the buttons would be a bit&#8230;shall we say squished&#8230;if there were five instead of four. Expert players needn&#8217;t worry; the lack of the fifth fret button doesn&#8217;t reduce the difficulty of Hard and Expert modes. All of the note tracks for On Tour&#8217;s songs have been reworked from scratch (you may recognize a few songs from Guitar Hero III).</p>
<p><a title="CIMG1251 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609027616/"><img src="http://farm4.static.flickr.com/3233/2609027616_5b789d35cd.jpg" alt="CIMG1251" width="500" height="375" /></a></p>
<p>The DS is a little bulkier with the grip inserted.</p>
<p><a title="CIMG1252 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2609029014/"><img src="http://farm4.static.flickr.com/3137/2609029014_76a9b1aec6.jpg" alt="CIMG1252" width="500" height="375" /></a></p>
<p>And here&#8217;s another shot from the back.</p>
<p><a title="CIMG1255 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2608203481/"><img src="http://farm4.static.flickr.com/3232/2608203481_18ca2b2276.jpg" alt="CIMG1255" width="500" height="375" /></a></p>
<p>Now, on to the gameplay! Single player houses Quickplay, Career, CPU Guitar Battle, and Practice modes, while multiplayer provides access to Face-Off, Cooperative, and Guitar Battle modes that you can play with a friend.</p>
<p><a title="CIMG1257 by trokairchardalus, on Flickr" href="http://www.flickr.com/photos/trokair/2608206341/"><img src="http://farm4.static.flickr.com/3100/2608206341_866ab8b2c3.jpg" alt="CIMG1257" width="500" height="375" /></a></p>
<p>Instead of hitting a strum bar, in Guitar Hero: On Tour, you slide the pick stylus across the guitar on the touchscreen. This works pretty well, although I&#8217;ve experienced a few situations where I was positive I hit the screen and a note didn&#8217;t register. To whammy, you simply wiggle the stylus on the screen post-slide and lift off when you&#8217;re finished. Activating Star Power is done by pressing the appropriate incon on the touch screen, hitting A/B/X/Y/Start/Select, or yelling loudly into the microphone. So how does it all feel? The Guitar Grip takes a little getting used to, and you&#8217;ll have to adjust the strap and experiment with a few ways to hold the stylus pick before you get into a groove. However, patient folks will be rewarded with a very fullfilling portable Guitar Hero experience. Career Mode is fun, but the real entertainment comes from the multiplayer modes. Guitar Battles have a slew of new power-ups, ranging from the shirt-signing to lighting your opponent&#8217;s guitar on fire (blow out the flames by blowing into the microphone). Cooperative Mode and Face-Off are just as much fun as they are on the console versions.</p>
<p>So, as I said at the begining, I don&#8217;t think you&#8217;ll end up prefering Guitar Hero: On Tour over any of the console iterations; there&#8217;s something about holding that guitar controller that just makes the experience more fulfilling. However, the DS iteration is extremely fun (especially if you have someone else to play it with), and it&#8217;s one of the finest portable rythym games available. At $50 it may seem expensive, but it&#8217;s only a small premium over the usual AAA DS titles (and this is including a hardware peripheral). A worthy buy for any Guitar Hero fan with a Nintendo DS!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.n1zyy.com/trokair/2008/06/24/guitar-hero-on-tour-review/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
