<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title><![CDATA[codex exerro]]></title>
  <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/atom.xml" rel="self"/>
  <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/"/>
  <updated>2012-01-01T19:31:20-07:00</updated>
  <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/</id>
  <author>
    <name><![CDATA[Nick Taylor]]></name>
    
  </author>
  <generator uri="http://octopress.org/">Octopress</generator>

  
  <entry>
    <title type="html"><![CDATA[Towers of the Ennedi]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2012/01/01/towers-of-the-ennedi/"/>
    <updated>2012-01-01T19:25:00-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2012/01/01/towers-of-the-ennedi</id>
    <content type="html"><![CDATA[<p>I&#8217;ve spend some time in the Sahara, but never been to Chad. The <a href="http://en.wikipedia.org/wiki/Ennedi_Plateau">Ennedi Plateau</a> looks like a place well worth exploring.</p>

<p>If you&#8217;re looking for towers to climb, check out this video produced by <a href="http://camp4collective.com/">Camp 4 Collective</a> for <a href="http://www.thenorthface.com/">The North Face</a>. Fantastic location, climbing and filming.</p>

<iframe src="http://player.vimeo.com/video/23393522?color=ffffff" width="700" height="394" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>


<p><a href="http://vimeo.com/23393522">Towers of the Ennedi</a> from <a href="http://vimeo.com/camp4collective">Camp 4 Collective</a> on <a href="http://vimeo.com">Vimeo</a>.</p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[From Wordpress to Octopress]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/12/31/from-wordpress-to-octopress/"/>
    <updated>2011-12-31T14:19:00-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/12/31/from-wordpress-to-octopress</id>
    <content type="html"><![CDATA[<h2>Baked Blogs - not for everyone&#8230;</h2>

<p>I&#8217;ve neglected this blog over the past year or so, and all of the infrastructure. <strong>nickt.com</strong> was hosted with <a href="http://www.mediatemple.net/" title="Media Temple">Media Temple (mt)</a>, and a great job they did too. Solid uptime, great communications and extremely responsive customer service (on the rare occasions I had to call upon them for support). However, it was costing me over $600 a year, and while at one time that was ok, my needs have changed and I no longer need a dedicated VPS and complicated hosting.</p>

<p>I&#8217;ve used <a href="http://aws.amazon.com/s3/" title="S3">Amazon Simple Storage Service (S3)</a> in the past, but as I was using it to backup gigabytes of photos and videos it started to get expensive and I stopped using it. However, it seemed an ideal place to stick a blog as it&#8217;s storage requirements are modest. S3 buckets can be setup to serve static content, which is an ideal way to move away from the complexity of mysql and PHP.</p>

<p>Last week, reading <a href="http://news.ycombinator.com/" title="Hacker News">Hacker News</a> I can across <a href="http://mattgemmell.com/about/">Matt Gemmell&#8217;s</a> <a href="http://http://mattgemmell.com/2011/09/12/blogging-with-octopress/" title="Blogging with Octopress">article on Octopress</a> and was inspired to get to a <a href="http://inessential.com/2011/03/16/a_plea_for_baked_weblogs">baked blog</a>, and read a <a href="http://blog.pixelingene.com/2011/09/switching-to-the-octopress-blogging-engine/">few</a> <a href="http://nowfromhome.com/enjoying-the-simplicity-of-octopress-and-jekyll/">more</a> <a href="http://citizencoder.com/blog/setting-up-octopress-on-mac-os-x/">articles</a>. I quickly setup S3 but the time-consuming part was setting up my client Mac with the Git/Ruby/Jekyll/Octopress environment. Here&#8217;s how I did it:</p>

<ol>
<li>Installed the latest <a href="http://itunes.apple.com/us/app/xcode/id448457090?mt=12" title="Xcode App Store">Xcode</a> from the App Store.</li>
<li>Installed <a href="http://www.macports.org/">Macports</a>.</li>
<li>Installed <a href="http://git-scm.com/" title="git">git</a> from Macports.</li>
<li>Setup git.</li>
<li><a href="http://beginrescueend.com/" title="RVM">Ruby Version Manager</a> from Macports won&#8217;t install on OSX Lion so I installed <a href="http://mxcl.github.com/homebrew/">homebrew</a>.</li>
<li>Installed <a href="http://www.gnu.org/software/wget/">wget</a> from homebrew.</li>
<li>Installed RVM from homebrew.</li>
<li>Installed Ruby 1.9.3 (the version OSX 10.7.2 ships with is 1.8.7 and Octopress needs 1.9.x).</li>
<li>Installed (cloned) <a href="http://octopress.org/">Octopress</a> from <a href="https://github.com/imathis/octopress">github</a>.</li>
<li>Installed the Ruby Gem <a href="http://gembundler.com/">Bundler</a>.</li>
</ol>


<p>And that got it installed on two of my Macs. I have the slightly scary setup of using Dropbox to sync across my Macs, and the git repositories are in Dropbox. As I&#8217;m the only editor, and the files are small (so very fast syncing), I don&#8217;t think it&#8217;ll be a problem.</p>

<h2>Migrating posts from Wordpress</h2>

<p>Now this was trickier. There are basically two options. Use the database and run some sql and hopefully everything will be converted from HTML to <a href="http://en.wikipedia.org/wiki/Markdown">markdown</a>. You can read about that <a href="http://paulstamatiou.com/how-to-wordpress-to-jekyll">here</a> and <a href="http://vitobotta.com/how-to-migrate-from-wordpress-to-jekyll/">here</a> or dump the XML from Wordpress and run the <a href="https://github.com/thomasf/exitwp" title="exitwp">exitwp</a> script. There is also a <a href="https://github.com/chitsaou/exitwp/downloads">forked version of exitwp</a>.</p>

<p>Initially I couldn&#8217;t get the script to work. I found a hint <a href="http://endot.org/2011/11/13/octopress-migration-details/">here</a>, and that helped me make the following changes:</p>

<pre><code>parallax:exitwp nickt$ git diff

diff --git a/exitwp.py b/exitwp.py
index 4dd9c83..0aeb6bb 100755

def html2fmt(html, target_format):
-    html = html.replace("\n\n", '&lt;br&gt;')
-    if target_format=='html':
-        return html
-    else:
-        # This is like very stupid but I was having troubles with unicode encodings and process.POpen
-        return html2text(html, '')
+    #html = html.replace("\n\n", '&lt;br&gt;')
+    #if target_format=='html':
+    #    return html
+    #else:
+    #    # This is like very stupid but I was having troubles with unicode encodings and process.POpen
+    #    return html2text(html, '')
+       return html
</code></pre>

<p>And after removing that chunk of code I had all of my Wordpress posts ready to move to my new Octopress blog. That said, not everything is clean. Not only are there some formatting errors but not all of the HTML was converted to markup. But, with all the files in a format that mostly works, I can clean them up at my leisure, though if it never happens it doesn&#8217;t matter&#8230;</p>

<p>Now all I have to do is write more.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Camping in the desert]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/12/30/camping-in-the-desert/"/>
    <updated>2011-12-30T12:31:00-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/12/30/camping-in-the-desert</id>
    <content type="html"><![CDATA[<h2>Desert Camping</h2>

<p><img class="center" src="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/images/tent.jpg" title="Tent & D90 Tent" ></p>

<p>I like camping in the desert.<br/>
The Defender is the best way to get there&#8230;</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Why quadcopters are amazing!]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/06/19/why-quadcopters-are-amazing/"/>
    <updated>2011-06-19T11:03:22-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/06/19/why-quadcopters-are-amazing</id>
    <content type="html"><![CDATA[<div class='posterous_autopost'><p><a href="http://youtu.be/M9cSxEqKQ78" target="_self">Why</a> <a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=UtUzaBpaSY0">quadcopters</a> <a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=UtUzaBpaSY0">are</a> <a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=UtUzaBpaSY0">amazing</a>!</p>  <p>&nbsp;</p>  <p><div class='p_embed p_image_embed'> <a href="http://posterous.com/getfile/files.posterous.com/temp-2011-06-19/BhbcyfpGICInHCIsgtkBeIoalvmyEtsrdnlEaHgIiDclycEpCzJftwsDAFqB/mikrokopter_quadrocopters.jpg.scaled1000.jpg"><img alt="Mikrokopter_quadrocopters" height="334" src="http://posterous.com/getfile/files.posterous.com/temp-2011-06-19/BhbcyfpGICInHCIsgtkBeIoalvmyEtsrdnlEaHgIiDclycEpCzJftwsDAFqB/mikrokopter_quadrocopters.jpg.scaled500.jpg" width="500" /></a> </div> </p>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://nickt.posterous.com/57815144">nickt&#8217;s posterous</a>  </p>  </div>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[iPhone Location tracking]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/04/23/iphone-location-tracking/"/>
    <updated>2011-04-23T12:21:10-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2011/04/23/iphone-location-tracking</id>
    <content type="html"><![CDATA[<p>There has been a lot of chatter this week about <a href="http://www.wired.com/gadgetlab/2011/04/iphone-location/">iPhone location tracking</a>. I downloaded the <a href="http://petewarden.github.com/iPhoneTracker/">iPhoneTracker app</a> to take a look. This app finds the latest backup on your Mac, and pulls the lat/long data and presents it on a zoomable map.</p>

<p>Here&#8217;s my results:</p>

<p><a href="http://www.flickr.com/photos/indigoprime/5647054342/" class="tt-flickr tt-flickr-Large" title="iPhone Locations"><img class="aligncenter" src="http://farm6.static.flickr.com/5068/5647054342_ab3989015d_b.jpg" alt="iPhone Locations" width="700" height="520" /></a></p>

<p>I noticed something I didn&#8217;t expect. I have a Verizon iPhone and I don&#8217;t take it when I travel internationally. The points you can see on the map in Europe and Central America come from data collected from my last GSM-based iPhone 4. When I moved to the new phone, I did a backup and restore.</p>

<p>So if you do this, the consolidated.db data contains location data from all your iPhones, not just your current one.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Inmarsat & the IsatPhone Pro]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/07/29/inmarsat-the-isatphone-pro/"/>
    <updated>2010-07-29T12:49:37-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/07/29/inmarsat-the-isatphone-pro</id>
    <content type="html"><![CDATA[<p>I’ve used an <a href="http://www.iridium.com/">Iridium</a> satellite telephone for years. It’s an insurance policy - I travel all over the world, and to remote areas in the US and having the ability to have simple and reliable two-way communications is worth the $40 per month standing charge (and about $1.50 per minute).</p>

<p>Iridium uses a constellation of 66 operational satellites in low Earth orbit, and is the only satellite telephone communications company that gives complete global coverage, even at the poles.</p>

<p>My handset, a <a href="http://en.wikipedia.org/wiki/Iridium_satellite#Handsets">Motorola 9505</a>, is large, bulky, heavy and slow - it’s starting to show its age. After a software upgrade a few years ago, it’ll now send SMS messages and emails, and there is also a data connection kit (with a DB-9 serial connection), though at a maximum of 2.4kbps, it’s barely usable and once I had the ability to send SMS messages and emails, I gave up using it.</p>

<p>I put up with both the age of the handset and almost $500 per year of standing charges as there were no other options (other providers didn’t give the coverage I require).</p>

<p>Lately, however, <a href="http://www.inmarsat.com/">Inmarsat</a>, a well-know satellite communications company unveiled their new satellite phone, the<a href="http://www.inmarsat.com/Services/Land/IsatPhone/default.aspx"> IsatPhone Pro</a>. It’s still like a cell phone from the year 2000, but it’s lighter, faster and more compact than the Motorola 9505. It uses the <a href="http://en.wikipedia.org/wiki/Inmarsat#Satellites">Inmarsat 4</a> constellation of satellites, 3 birds in <a href="http://en.wikipedia.org/wiki/Geosynchronous_orbit">geosynchronous</a> orbit to give almost global coverage (the exception being the polar regions). These are the same satellites that provide the <a href="http://en.wikipedia.org/wiki/Broadband_Global_Area_Network">BGAN</a> service.</p>

<p>As well as the phone being better, the service is also cheaper - the basic service is $20 per month, so it’s half the cost of the Iridium service.</p>

<p>This convinced me to get one. In July 2010, you can find brand new ones for around $500.</p>

<p><a class="tt-flickr tt-flickr-Large" title="IsatPhone Pro" href="http://www.flickr.com/photos/indigoprime/4841077613/"><img class="alignnone" src="http://farm5.static.flickr.com/4087/4841077613_4970d59cc4_b.jpg" alt="IsatPhone Pro" width="700" height="937" /></a></p>

<p>My quick testing shows that it performs well, though as I’ll only ever be in the footprint of one satellite (and you get the best service if you point the antenna at the satellite - so you need to have a general idea of where it is), the coverage in more challenging areas (canyons, forest, etc.) may not be as good as the Iridium network.</p>

<p>Out of the box it comes with the ability to send both SMS messages and emails, and has a built-in (Navstar) GPS, from which you can email position data (a fantastic feature from a safety and security perspective). Sending and receiving both SMS messages and emails is speedy, with a delay of just a few seconds between sending and receiving.</p>

<p>In summary the IsatPhone Pro is better, faster and cheaper than the Iridium/Motorola 9505. I’m liking it so far, and I think it’ll make satellite phone ownership available to more people.</p>

<p>Recommended. Field testing from Central America coming up soon!</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Trivia seems like a poor description....]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/05/09/trivia-seems-like-a-poor-description/"/>
    <updated>2010-05-09T15:26:49-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/05/09/trivia-seems-like-a-poor-description</id>
    <content type="html"><![CDATA[<p><a href="http://upload.wikimedia.org/wikipedia/commons/a/a7/Universe_Reference_Map_%28Location%29_001.jpeg"><img SRC="http://upload.wikimedia.org/wikipedia/commons/a/a7/Universe_Reference_Map_%28Location%29_001.jpeg" width="700" height="200"/></a></p>

<br /><cite><a href="http://en.wikipedia.org/wiki/File:Universe_Reference_Map_(Location)_001.jpeg">Image</a> courtesy of <a href="http://commons.wikimedia.org/wiki/User:Azcolvin429">Azcolvin429</a></cite><br />


<p>There are 2<em>(10<sup>11)</sup> to 4</em>(10<sup>11)</sup> i.e. upto 400,000,000,000 stars in the <a href="http://en.wikipedia.org/wiki/Milky_Way">Milky Way Galaxy</a> (that&#8217;s four hundred-billion, using the <a href="http://en.wikipedia.org/wiki/Long_and_short_scales">short scale</a>). That&#8217;s our local neighborhood.</p>

<p>The Milky Way is part of the &#8221;<a href="http://en.wikipedia.org/wiki/Local_Group">Local Group</a>&#8221; of around 30 galaxies, and is the second largest, after the Andromeda Galaxy (10<sup>12</sup> - 1 trillion stars).</p>

<p>This group in turn, is part of the &#8221;<a href="http://en.wikipedia.org/wiki/Virgo_Cluster">Virgo Cluster</a>&#8221;, which comprises of 1,300 to 2,000 galaxies.</p>

<p>The Virgo Cluster, is the heart of the &#8221;<a href="http://en.wikipedia.org/wiki/Local_Supercluster">Virgo Supercluster</a>&#8221;, which contains at least 100 galaxy groups and clusters.</p>

<p>There are millions of superclusters in the <a href="http://en.wikipedia.org/wiki/Observable_Universe">observable universe</a>.</p>

<p>Amazing. Now I don&#8217;t feel so bad about not getting my chores done, even if the universe is just a <a href="http://en.wikipedia.org/wiki/Programming_the_Universe">giant computer</a>!</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA["Cooling Energy-Hungry Data Centers"]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/24/cooling-energy-hungry-data-centers/"/>
    <updated>2010-04-24T09:40:42-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/24/cooling-energy-hungry-data-centers</id>
    <content type="html"><![CDATA[<p>G. I. Meijer of <a href="http://www.zurich.ibm.com/overview.html">IBM Research in Switzerland</a> recently published an engineering paper called &#8220;Cooling Energy-Hungry Data Centers&#8221;, you can <a href="http://www.sciencemag.org/cgi/content/summary/328/5976/318">read the abstract here</a>, and you can read the whole article if you&#8217;re a <a href="http://www.aaas.org/">AAAS</a> member.</p>

<p>He makes a great argument for liquid cooling in the data center, something I&#8217;ve been an advocate for a long time. It boils down (ha!) to something simple:</p>

<p>Heat capacity of air: 1 MJ m<sup>–3</sup> K<sup>–1</sup><sup> </sup>
Heat capacity of water: 4 MJ m<sup>–3</sup> K<sup>–1</sup><sup> </sup></p>

<p>Clearly, the heat capacity of water, and other liquids, is far greater than air.</p>

<p>Interestingly, he&#8217;s not just talking about re-engineered cabinets which use liquid cooling to cool the air before and after it has been ducted through hardware, which certainly helps and while it isn&#8217;t common it isn&#8217;t rare, but rather he advocated the use of <a href="http://md1.csa.com/partners/viewrecord.php?requester=gs&collection=TRD&recid=0032898EA&q=&uid=789361149&setcookie=yes">microfluidic heat sinks</a> (using microchannel heat sinks and liquid cooling) at the transistor level to alleviate the heat issues caused by <a href="http://en.wikipedia.org/wiki/Leakage_(semiconductors)">leakage</a> currents at the <a href="http://en.wikipedia.org/wiki/Gate_oxide">gate oxide</a> (we currently loose more in leakage currents than are consumed by computation). As we move from <a href="http://en.wikipedia.org/wiki/45_nanometer">45 nm</a> through <a href="http://en.wikipedia.org/wiki/32_nm">32 nm</a> to <a href="http://en.wikipedia.org/wiki/22_nanometer">22 nm</a> packages in the next few years, this issue will accelerate - <a href="http://en.wikipedia.org/wiki/Thermodynamics">thermodynamics</a> is still your daddy.</p>

<p>He estimates that using cooling water at 60C-70C will protect the microprocessors from overheating, and alleviate the need for chillers to operate at the extent they do today (or at all at certain times of year, probably depending on your local environments ambient temperature and humidity) - with a 50% reduction in data center energy consumption. A second benefit is that collection of the waste heat becomes easier, with applications in office and district heating and some industrial applications.</p>

<p>Anything we can do to reduce the 330 TW·h of energy in data centers globally (2009 estimate) is a good thing, right?</p>

<hr />

<p>Science 16 April 2010:
Vol. 328. no. 5976, pp. 318 - 319
DOI: 10.1126/science.1182769</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[The 2010 Overland Expo]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/23/the-2010-overland-expo/"/>
    <updated>2010-04-23T16:08:48-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/23/the-2010-overland-expo</id>
    <content type="html"><![CDATA[<p>I’ve been an “overland” traveler for way over a decade, and simply an avid traveler all of my life. There are a number of reasons for this, and as I see more places and interact with more people whose backgrounds are very different to mine I can feel my reasons for traveling are slowly changing (that’s a whole other story). Although I love my Land Rovers (I refer to them as “pets”), and I’m a fully-fledged tech-guy, both the vehicles and the technology are simply enablers for me to travel to the places I want to go, experience them in many different ways and to communicate from them and tell stories about the people and places when I return home.</p>

<p>This time, I’m just back from the 2nd <a href="http://ovexpo.com/Home.html">Overland Expo</a>. What a great event! Even though I was involved in the 1st Expo and was asked at that event to present and do some driver training this year (by <a href="http://www.overlandtraining.com/staff/">Graham Jackson</a> of <a href="http://www.overlandtraining.com/">Overland Training</a>), it wasn’t until I rolled into the event that I fully understood the scale. It eclipsed last years event in many ways, many more vendors, better training facilities, much better rooms for AV presentations, a knockout team of staff, instructors and presenters and finally a fantastic audience of folks who love to travel. I couldn’t believe how many great vehicles were parked in the car park.</p>

<p><a href="http://www.flickr.com/photos/indigoprime/4525461855/"><img src="http://farm5.static.flickr.com/4007/4525461855_7357be61af.jpg" width="335" height="252" alt="Overland Expo 2010 kickoff meeting" /></a><a href="http://www.flickr.com/photos/indigoprime/4531367233/"><img src="http://farm3.static.flickr.com/2751/4531367233_96e58d4d1e.jpg" width="335" height="252" alt="On the driver training trail at Overland Expo 2010." /></a></p>

<p>It’s not really about the vehicles though. I know a great many of us enjoy building them, tinkering with them and driving them, but really they are just another companion on the journey. A great many of the vendors realize this (and they realize we spoil them), and are on-hand to help us do this. My personal favorite piece of vehicle kit was the <a href="http://www.nekarth.com/nekarth_locking_differentials.asp">Kaiser / Nekarth Differential Locker</a>, a much simpler and more elegant approach to locking differentials than the Detroit and ARB solutions. I saw this demo at the <a href="Expeditioneers">Expeditioneers</a> booth.</p>

<p><a href="http://www.flickr.com/photos/indigoprime/4532621309/"><img src="http://farm5.static.flickr.com/4029/4532621309_8d5b3458cd.jpg" alt="Kaiser differential locker" /></a></p>

<p>The Expo is not just about the vehicles (and they ranged from pedal-bikes, through motorbikes, regular 4x4 vehicles to huge ex-military and custom built behemoths) and their parts and accessories. Other vendors offered medical equipment and training (and <a href="http://www.remotemedical.com/">Remote Medical International</a> staged some great demos), guiding services (notably <a href="http://nolimitx.com/">No Limit Expeditions</a> offering adventures in Belize and the rest of Central America and <a href="http://www.safaridrive.com/index.htm">Safari Drive</a> based in various African locations), clothing (including one of my favorites, <a href="http://www.mountainkhakis.com/">Mountain Khakis</a> - recommended!), tents (roof-top and otherwise), all sorts of camping/expedition gear (including <a href="http://www.bugoutbagz.com/">Bug Out Bagz</a>), the list is long and distinguished.</p>

<p>Seminars and presentations are a key part of the Expo, and if you just attend one or two of them you would realize that “overlanding” isn’t just 4x4 driving - and very different from what usually pops into peoples minds when the outdoors and 4x4 drivers meet&#8230; I talked about staying online and in touch while on an international overland trip, and driving through the Sahara in a VW Golf! Other presentations and panels discussed medical responses, overlanding with dogs, solo overlanding, cooking demos (very popular I understand), and some great overland movies courtesy of <a href="http://en.wikipedia.org/wiki/Austin_Vince">Austin Vince</a> and the Adventure Travel Film Festival.</p>

<div style="width:700px" id="__ss_3835301"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/indigoprime/overland-wired-communications-from-the-field" title="Overland Wired - Communications from the Field">Overland Wired - Communications from the Field</a></strong><object width="700" height="584"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=commsovex2010-100423165322-phpapp01&stripped_title=overland-wired-communications-from-the-field" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=commsovex2010-100423165322-phpapp01&stripped_title=overland-wired-communications-from-the-field" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="700" height="584"></embed></object><div style="padding:5px 0 12px">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/indigoprime">indigoprime</a>.</div></div>


<p>Groups and clubs are also prominent at the Expo. It’s always great to see the <a href="http://www.disabledexplorers.com/">Disabled Explorers</a> and their <a href="http://disabledexplorers.com/index.php?option=com_content&task=blogcategory&id=40&Itemid=56">WAVE Sportsmobile</a>, really giving folks the opportunity to get out and explore who normally may not have the chance to. I love the ideas behind both the <a href="http://www.carbonneutralexpedition.com/">Carbon Neutral Expedition</a> and the Vanishing America Project (Overland Society’s Expedition Flag ambassador for 2009), and again, the <a href="http://www.themuskokafoundation.org/">Muskoka Foundation</a> is making a difference around the world.</p>

<p>My favorite part is the opportunity to see old friends and meet new ones. One moment sticks in my mind, during a basic vehicle overview session I was one of the instructors. After the other instructors had said their piece, I was my turn to add something. Trouble was, three of the instructors were Tom Collins, Duncan Barbour and Jim West, 3 <a href="http://en.wikipedia.org/wiki/Camel_Trophy">Camel Trophy</a> luminaries, and a hard act to follow! Having the opportunity to talk to people like this is wonderful - and the chance is there for everyone who attends, especially at the ever-popular happy hours each evening! I particularly enjoy spreading the word, or “preaching the gospel of travel”, as a friend once told me. I think retelling great stories and sharing experiences really gets people fired up for that first trip. Helping them over the “well, it’s a dream I’ve always had, but I just can’t get the time off work” is usually the first part, and not that difficult in the environment the Expo creates.</p>

<p>Once people have traveled off the beaten track they come back home with new eyes, none more so than Americans (not a dig, just an observation). Through their new eyes they see people, politics and the Earth in a different light. A more tolerant, understanding and sympathetic light. An ability to put themselves in the other persons shoes and see that there are many more sides to national and international issues than you’ll ever see on the typical “never mind the quality, just look at the quantity” news channel (which is why I refuse to watch television news - that’s another story). Anything which opens peoples minds and makes for a more tolerant and understanding society clearly should be encouraged; I’ve always advocated international travel for this purpose and the Overland Expo is the ideal platform to encourage people to embrace this.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[My Review of MSR Reactor Stove System]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/12/my-review-of-msr-reactor-stove-system/"/>
    <updated>2010-04-12T23:15:55-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/12/my-review-of-msr-reactor-stove-system</id>
    <content type="html"><![CDATA[<div class="hreview"><div class="item"><p><a href="http://www.rei.com/product/736977">Originally submitted at REI</a></p><div><img src="http://images.powerreviews.com/images_products/00/72/537761_100.jpg" class="photo" align="left" style="margin: 0 0.5em 0 0"/><p style="margin-top:0">Backpacker April &apos;07 says for 1-pot meals, &apos;&apos;&#8230;MSR Reactor™ offers a whole new level of convenience, speed, and trailworthiness.&apos;&apos;</p></div><a href="http://www.rei.com/product/736977" style="display: none;" class="url fn"><span class="fn">MSR Reactor Stove System</span></a></div><br clear="left"/><p><strong class="summary">Great, powerful stove, but has issues&#8230;</strong></p><div>By <strong>nickt</strong> from <strong>Colorado</strong> on <strong><abbr title="2010412T1200-0800" class="dtreviewed" style="border: none; text-decoration: none;">4/12/2010</abbr></strong></div><p><div style="margin: 0.5em 0; height: 15px; width: 83px; background-image: url(http://images.powerreviews.com/images/stars_small.gif); background-position: 0px -144px;" class="prStars prStarsSmall">&nbsp;</div></p><div style="display: none"><span class="rating">4</span>out of 5</div><p><strong>Gift: </strong>No</p><p><strong>Pros: </strong>Powerful, Easy To Clean</p><p><strong>Cons: </strong>Poor temperature control, Difficult to Light</p><p><strong>Best Uses: </strong>Car Camping</p><p><strong>Describe Yourself: </strong>Avid Adventurer</p><p><strong>What Is Your Gear Style: </strong>Minimalist</p><p style="margin-top:1em" class="description">Pros:<br xmlns:pr="xalan://com.pufferfish.core.beans.xmlbuilders.xsl.Functions"/>1.    It&#8217;s extremely fast, I boil a lot of water so this is a huge win for me. Subjectively, it takes around 1/3 less time to boil water versus the JetBoil. This is due to the more powerful burner and larger surface area on the burner interface.<br />2. It packs small, and as it&#8217;s wider than a JetBoil, you can pack a 220g (7.8oz) gas cylinder inside it, whereas the JetBoil can only contain a 110g (3.9oz) cylinder internally (so I always packed an additional large 450g (15.9oz) cylinder).<br />3.  It comes with a small packing cloth which stops the insides getting scratched when the burner unit is packed inside (yes, you could easily make this yourself, but it&#8217;s a nice thought to provide one).<br />4. The whole unit it the typical good quality you&#8217;d expect from MSR.<br />5.   It&#8217;s wider than the JetBoil, and that makes it easier to clean.<br /><br />Cons:<br />1.    It&#8217;s more expensive than the JetBoil ($160 vs $100 using REI prices in April 2010).<br />2. Simmering is difficult, if not impossible. The burner is so powerful it seems to have only two settings, off and &#8220;supernova&#8221;!<br />3.   No piezo ignition! It&#8217;s a pain to use matches or a lighter.<br />4. Bigger burner means it goes through gas faster, though as you can pack a larger cylinder internally it may not be an issue.<br />5. It is slightly larger than the JetBoil, the diameter is larger but it is shorter.<br />6.   It has a fold-out handle, the JetBoil is insulated so you can simply pick it up with your bare hands even when hot.<br />7. As the diameter of the pot is wider than the JetBoil, it is slightly more difficult to pour into narrow containers.<br /><br />http://nickt.com/2010/04/12/msr-reactor-stove-review/</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[MSR Reactor stove review]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/12/msr-reactor-stove-review/"/>
    <updated>2010-04-12T23:05:29-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/04/12/msr-reactor-stove-review</id>
    <content type="html"><![CDATA[<p><em>Note: I only use this type of stove when camping out of my Land Rovers. When hiking or backpacking, I use small and lightweight stoves like the <a href="http://cascadedesigns.com/msr/stoves/fast-and-light-stoves/pocketrocket/product">MSR PocketRocket</a>. When on the motorbike, I use an <a href="http://cascadedesigns.com/msr/stoves/basecamp-stoves/dragonfly/product">MSR DragonFly</a>, so I can use the petrol from the bike and utilize a single fuel source.</em></p>

<p>I&#8217;ve been a <a href="http://www.jetboil.com/">JetBoil</a> fan since they became available in 2001. When camping, my cooking philosophy is &#8220;just get it done&#8217;, nothing complex, usually something I&#8217;ve pre-made or something out of a packet (I actually like <a href="http://en.wikipedia.org/wiki/Meal,_Ready-to-Eat">MRE</a>s, usually warmed on the manifold). And being English, I mandate several tea-breaks throughout the day, so really I just need a fast and efficient way of boiling water. That covers about 90% of my cooking requirements.</p>

<p>One of my more lightly-used JetBoils failed recently (a <a href="http://www.jetboil.com/products/cookingsystems/personalcookingsystem">JetBoil PCS</a> - Personal Cooking System). The seam attaching the inner part to the outer part (which interfaces with the burner) broke away. I noticed that it was spot welded and the newer JetBoils have an updated design - so they clearly know about this issue. I took it back to REI to get it replaced and while in the stove section I had a longer look at the <a href="http://cascadedesigns.com/msr/stoves/fast-and-light-stoves/reactor/product">MSR Reactor</a>, clearly their answer to the very successful JetBoil. It&#8217;s of a similar design, slightly wider and the burner interface section has a number of fins which gives the pot a larger surface area and speeds up heating. The burner itself is very large, in terms of area (but quite compact), and is quite quiet in operation.</p>

<p><a href="http://www.flickr.com/photos/indigoprime/4517299650/" class="tt-flickr tt-flickr-Small" title="MSR Reactor Stove"><img class="alignnone" src="http://farm5.static.flickr.com/4046/4517299650_3974204c3a_m.jpg" alt="MSR Reactor Stove" width="184" height="240" /></a> <a href="http://www.flickr.com/photos/indigoprime/4517299882/" class="tt-flickr tt-flickr-Small" title="MSR Reactor Stove"><img class="alignnone" src="http://farm3.static.flickr.com/2686/4517299882_3d47446b8b_m.jpg" alt="MSR Reactor Stove" width="184" height="240" /></a> <a href="http://www.flickr.com/photos/indigoprime/4516666229/" class="tt-flickr tt-flickr-Small" title="MSR Reactor Stove"><img class="alignnone" src="http://farm5.static.flickr.com/4017/4516666229_a35e2cc90e_m.jpg" alt="MSR Reactor Stove" width="184" height="240" /></a></p>

<p>On a recent camping trip in Utah, I had the opportunity to give the stove a decent field-test. Of course, I boiled water for tea and washing, I boiled milk for porridge (<a href="http://www.mornflake.com/products/sachets/lyles_golden_syrup_porridge_oats.html">Mornflake Lyle&#8217;s Golden Syrup flavour</a> - imported from the UK), which is rather messy, I made soup, warmed some pre-cooked steak and cooked-up some pasta. I noted the following pros and cons.</p>

<p><strong>Pros</strong>:</p>

<pre><code>1.  It's extremely fast, I boil a lot of water so this is a huge win for me. Subjectively, it takes around 1/3 less time to boil water versus the JetBoil. This is due to the more powerful burner and larger surface area on the burner interface.
2.  It packs small, and as it's wider than a JetBoil, you can pack a 220g (7.8oz) gas cylinder inside it, whereas the JetBoil can only contain a 110g (3.9oz) cylinder internally (so I always packed an additional large 450g (15.9oz) cylinder).
3.  It comes with a small packing cloth which stops the insides getting scratched when the burner unit is packed inside (yes, you could easily make this yourself, but it's a nice thought to provide one).
4.  The whole unit it the typical good quality you'd expect from MSR.
5.  It's wider than the JetBoil, and that makes it easier to clean.
</code></pre>

<p><strong>Cons</strong>:</p>

<pre><code>1.  It's more expensive than the JetBoil ($160 vs $100 using REI prices in April 2010).
2.  Simmering is difficult, if not impossible. The burner is so powerful it seems to have only two settings, off and "supernova"!
3.  No &lt;a href="http://en.wikipedia.org/wiki/Piezo_ignition"&gt;piezo ignition&lt;/a&gt;! It's a pain to use matches or a lighter.
4.  Bigger burner means it goes through gas faster, though as you can pack a larger cylinder internally it may not be an issue.
5.  It is slightly larger than the JetBoil, the diameter is larger but it is shorter.
6.  It has a fold-out handle, the JetBoil is insulated so you can simply pick it up with your bare hands even when hot.
7.  As the diameter of the pot is wider than the JetBoil, it is slightly more difficult to pour into narrow containers.
</code></pre>

<p>In summary, I like the Reactor, I doubt anything on the market can boil water as fast. However, until it adds both piezo ignition and a way to simmer I still recommend the JetBoil (especially as the Reactor currently demands a $60 premium).</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Testing posterous tagging ]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/02/23/testing-posterous-tagging/"/>
    <updated>2010-02-23T22:04:27-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/02/23/testing-posterous-tagging</id>
    <content type="html"><![CDATA[<div class='posterous_autopost'>Just checking that the posterous tags in the email subject line pass through to Wordpress.<p /><div>I&#8217;d also like to check links from email - did I mention I&#8217;m a fan of&nbsp;<a href="http://en.wikipedia.org/wiki/Indigo_Prime">Indigo Prime</a>?&nbsp;</div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://nickt.posterous.com/testing-posterous-tagging">nickt&#8217;s posterous</a>  </p>  </div>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Podcast: Can Geoengineering Save the Planet? - ScienceNOW]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/02/23/podcast-can-geoengineering-save-the-planet-sciencenow/"/>
    <updated>2010-02-23T17:00:46-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/02/23/podcast-can-geoengineering-save-the-planet-sciencenow</id>
    <content type="html"><![CDATA[<div class='posterous_autopost'><div class="posterous_bookmarklet_entry"> <blockquote><div>  <p><strong>SAN DIEGO</strong> - Geoengineering has been a hot topic at this year&#8217;s annual meeting of the American Association for the Advancement of Science (which publishes <em>Science</em>NOW). <em>Science</em> reporter Eli Kintisch chatted with Ken Caldeira, a geochemist at the Carnegie Institution for Science in Stanford, California, about the latest efforts to cool the world - and the possible risks of doing so. Listen to their conversation <a href="http://podcasts.aaas.org/science_podcast/SciencePodcast_100220c.mp3">here</a>&nbsp;and read Eli&#8217;s full write-up on the topic <a href="http://news.sciencemag.org/sciencenow/2010/02/the-latest-on-hacking-the-planet.html">here</a>.</p>  </div></blockquote><div class="posterous_quote_citation">via <a href="http://news.sciencemag.org/sciencenow/2010/02/podcast-can-geoengineering-save-.html">news.sciencemag.org</a></div> <p>So, here&#8217;s some real information on geoengineering. The <a href="http://nickt.com/2010/02/23/protesting-for-the-sake-of-it/">chemtrail folks</a> would do well to listen!</p></div>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://nickt.posterous.com/podcast-can-geoengineering-save-the-planet-sc">nickt&#8217;s posterous</a>  </p>  </div>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Protesting for the sake of it]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/02/23/protesting-for-the-sake-of-it/"/>
    <updated>2010-02-23T16:56:12-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2010/02/23/protesting-for-the-sake-of-it</id>
    <content type="html"><![CDATA[<div class='posterous_autopost'>Just outside the San Diego Convention Center, which was the base of the 2010 American Association for the Advancement of Science conference (#AAAS2010), I passed a small group of protesters with various placards and in general looking a little disorganized, but as I like to keep an open mind I though I should stop and chat. <br />It turns out that it&#8217;s an anti-geoengineering rally (though there are more letters in the word &#8220;geoengineering&#8221; than protesters). The focus was on contrails, which according to the lady I spoke with are a part of a vast governmental/corporate program to affect the climate, so we don&#8217;t have to bother with lowering emissions - but the biological side-effects are terrible! I later discovered that wikipedia outlines this &#8220;chemtrails&#8221; conspiracy: <a href="http://en.wikipedia.org/wiki/Chemtrail_conspiracy_theory">http://en.wikipedia.org/wiki/Chemtrail_conspiracy_theory</a><p><a href='http://posterous.com/getfile/files.posterous.com/nickt/r0WQSdlLaOXgljYwm431SFfUbHcesQg2f5SSCzWEWvUVKlqSxSRL79BuSXj9/IMG_0595.jpeg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/nickt/OIrV5GghqADWPlueQjdPA8O1PnLJfz9ctf4Xc0MRcYdE8p8YySbB0WvajaBS/IMG_0595.jpeg.scaled.500.jpg" width="500" height="667"/></a> </p><p>Curious, and not being one to dismiss seemingly crazy suggestions out of hand, I tried to engage further, but it really just descended into a rant at this point. In the box of protest materials were &#8220;information&#8221; sheets concerning things people like to protest about - vaccinations, contrails, nuclear power, cars, etc. Clearly, rent-a-protest. She wouldn&#8217;t or couldn&#8217;t answer any of my (very polite and charming, and not condescending) questions about the science behind their claims. ScienceNow also picked up on this mini-protest: <a href="http://news.sciencemag.org/sciencenow/2010/02/smattering-of-activists-protest.html">http://news.sciencemag.org/sciencenow/2010/02/smattering-of-activists-protest.html</a> <p /> Why do people do this? If they want to say &#8220;be careful with geoengineering&#8221;, then say that. State why, and people will be polite enough to listen. If you&#8217;re ranting then you&#8217;re going to be ignored. We know science isn&#8217;t perfect, but at least scientists attempt to communicate with the general public. Protesters really have a duty to become informed and stop spreading disinformation and downright lies. We have enough things back in the real world to worry about.</p>      <p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://nickt.posterous.com/protesting-for-the-sake-of-it">nickt&#8217;s posterous</a>  </p>  </div>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[The Icom IC-2820 and APRS]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/05/31/the-icom-ic-2820-and-aprs/"/>
    <updated>2009-05-31T19:05:00-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/05/31/the-icom-ic-2820-and-aprs</id>
    <content type="html"><![CDATA[<p>I&#8217;m happy that I&#8217;ve managed to get my <a href="http://www.icomamerica.com/en/products/2820h/">Icom IC-2820</a> radio and <a href="http://www.kenwoodusa.com/Communications/Amateur_Radio/Mobiles/RC-D710">Kenwood RC-D710</a> <a href="http://en.wikipedia.org/wiki/Terminal_node_controller">TNC</a>/data terminal to work together so I can now use the &#8220;left side&#8221; of the 2820 for <a href="http://en.wikipedia.org/wiki/Automatic_Position_Reporting_System">APRS</a> on <a href="http://en.wikipedia.org/wiki/Automatic_Packet_Reporting_System#Technical_Information">144.39 MHz</a> and use the &#8220;right side&#8221; for <a href="http://en.wikipedia.org/wiki/D-STAR">D-STAR</a> and conventional voice communications. This configuration passes <a href="http://en.wikipedia.org/wiki/GPS">GPS</a> data from the GPS in the IC-2820 to the RC-D710 which in turn sends back APRS data which is transmitted by the 2820. I&#8217;ve also upgraded the GPS antenna to a <a href="http://www.gilsson.com/garmin_gps/antennas/TMPejqwweyj4h.htm">waterproof active antenna from Gilsson</a> (#MCX180) which has a straight through <a href="http://en.wikipedia.org/wiki/MCX_connector">MCX connector</a> and fits, with a little trimming.</p>

<p>To do this, you&#8217;ll need the following (if you&#8217;re not making your own cables):</p>

<ul>
    <li>Icom IC-2820 D-STAR radio</li>

    <li>Kenwood RC-D710 TNC/data terminal/control panel</li>

    <li><a href="http://www.kenwood-electronics.co.uk/products/comms/accessories/optional/PG-5J/">Kenwood PG-5J</a> interface kit for RC-D710</li>

    <li>Kenwood PG-5G programming cable (to connect to a PC running Windows)</li>

    <li><a href="http://www.kenwood.com/i/products/info/amateur/mcp_2a.html">Kenwood MCP-2A</a>, &#8220;Memory Control Program&#8221; software (a free download)</li>

    <li>A PC running Windows for the MCP-2A software</li>
    <li>6-pin mini-DIN cable that comes with the PG-5J</li>
    <li>A data cable with 2 mini-stereo jack plugs (the RC-D710 came with such a cable, but with only one jack plug)</li>


</ul>


<p>After the usual preparation (checking items, installing <a href="http://en.wikipedia.org/wiki/DC_connector#Anderson_Powerpole_connectors">powerpole</a> connectors on the power cable, etc.) I powered off the radio and TNC, and connected the 6-pin mini-DIN cable from the main unit of the 2820 to the &#8220;data&#8221; socket on the PG-5J interface unit. I then connected the RJ-45 cable between the PG-5J and the RC-D710 panel. Finally, I had to connect the mini-stereo jack cable from the RC-D710 panel to the main unit of the 2820. I assumed that there would be a mini-jack at each end of the cable, but, no! Fortunately, I had two of these cables and I chose to connect them together. It&#8217;s a very small cable, with what seems like 3 strands of very thin copper in 3 cores (it&#8217;s a stereo cable). My soldering ability wasn&#8217;t up to the job, so I gave up and used a terminal block, which works nicely for testing (I&#8217;ve ordered a 10ft <a href="http://www.monoprice.com/products/product.asp?c_id=102&cp_id=10218&cs_id=1021807&p_id=4637&seq=1&format=2">ready-made cable from Monoprice</a>).</p>

<p>Next, I connected the RC-D710 to my PC and upgraded the firmware (it was v1.x and v2.01 is current), and then used the MCP-2A software to read the default config. This software is the only way to change the configuration elements on the RC-D710. I upped the levels <a href="http://aprs.org/DSTARdisplay.html">as described in this article</a>, viewed the other configuration items and set my callsign info, as well as some custom messages, setup <a href="http://www.hamhud.net/hh2/smartbeacon.html">smartbeaconing</a>, etc. and on the IC_2820 I made sure in the data function that &#8220;G-D&#8221; was on (this sends GPS data via the stereo data cable to the D710), and in the menus (GPS sentence) I set RMA and GGA to on. In the packet menu, I set the packet operation band to &#8220;left&#8221; so the APRS data will only transmit on the band I have set to 144.39 MHz.</p>

<p>I feel I&#8217;ve only just scratched the surface, and will experiment a little more to optimize the configuration, but my first impression is that this will prove to be a great setup.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Good Job Garmin! StreetPilot 7500 registration problem fixed.]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/05/09/good-job-garmin-streetpilot-7500-registration-problem-fixed/"/>
    <updated>2009-05-09T10:17:06-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/05/09/good-job-garmin-streetpilot-7500-registration-problem-fixed</id>
    <content type="html"><![CDATA[<p>24 hours after posting about <a href="http://nickt.com/2009/05/07/problems-with-garmin-support-and-my-streetpilot-7500/">my problems re-registering and updating maps</a> on my <a href="https://buy.garmin.com/shop/products/sp7500">Garmin StreetPilot 7500</a>, they have fixed my problem, I confess I dug my heels in a bit, sending them an email reminding them how I use their products, how long I&#8217;ve used them for (since 1995), how much I&#8217;ve spend and how many times I&#8217;ve recommend people buy Garmin for their good quality products and great customer support.</p>

<p>Anyway, I got an email from them saying that they&#8217;ve registered the device for me and they also threw in a free upgrade to City Navigator North America NT 2010, which is great, and that&#8217;s what started this thing in the first place.</p>

<p>So, while a little slower than usual, Garmin support came through again. Thank-you Garmin, I shall continue to recommend your products!</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Problems with Garmin support and my StreetPilot 7500]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/05/07/problems-with-garmin-support-and-my-streetpilot-7500/"/>
    <updated>2009-05-07T11:09:57-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/05/07/problems-with-garmin-support-and-my-streetpilot-7500</id>
    <content type="html"><![CDATA[<p>I&#8217;m trying to spend some money with <a href="http://www.garmin.com/">Garmin</a>, but they won&#8217;t let me.</p>

<p>I&#8217;m a fan of Garmin GPS receivers, particularly devices like the <a href="http://www.garmin.com/products/gpsmap478/">GPSMap 478</a>, a wonderful chart-plotting GPS. I also have a StreetPilot 7500, a nice large-screen GPS that <a href="http://nickt.com/2008/06/24/kenwood-tm-d710-and-gps-install-aprs-mobile/">I use in the truck</a>. I&#8217;ve spend thousands on Garmin hardware and maps since my first Garmin device, a <a href="https://buy.garmin.com/shop/shop.do?cID=167&amp;pID=87">GPS 12</a>, back in 1995. If you count the devices I&#8217;ve bought for others and my referrals that total is well north of $10,000.</p>

<p>A while ago, maybe in mid-late 2007, Garmin updated their internal systems at <a href="https://my.garmin.com/">my.garmin.com</a>. I had multiple GPSes registered with them, including the StreetPilot 7500. The old system was never brilliant, I blame the DRM they have around the mapping data, but that&#8217;s another subject&#8230;</p>

<p>Anyway, I want to upgrade the 7500 to the latest version of <a href="https://buy.garmin.com/shop/shop.do?pID=1456">City Navigator North America NT</a>, the 2009 update. To unlock the maps, you have to have a registered device. During Garmins update to my.garmin.com my previously registered 7500 disappeared. Now, when I try to register it again my.garmin.com rejects my serial number.</p>

<p>I&#8217;ve been extremely happy with Garmin support through the years, in fact they managed to next day me a replacement mapping CDROM when I was out of the country, starting trans-Sahara trip, to replace a damaged disk. They have been pretty responsive so far with my registration problem, until I received this today (the issue had been passed to their IT department)</p>

<p><code>We have contacted our IT department and requested another update. To answer your questions:</code></p>

<p><code></p>

<ol>
    <li>It has been sent to IT and they are working on it.</li>
    <li>We can't escalate it.</li>
    <li>I cannot guarantee that it will be fixed by then</li>
</ol>


<p></code></p>

<p><code>We have stressed the importance of getting this matter resolved and I am hopeful that we can get this matter resolved quickly. Thank you for your patience in this matter.</code></p>

<p>As this issue has been outstanding for 3 weeks, I&#8217;d love to know what the &#8220;IT Department&#8221; are doing. The very phrase makes my blood run cold, and I&#8217;m in IT guy! Some transparency would be greatly appreciated.</p>

<p>Ideally, I&#8217;d like to know what IT have done in the 2 weeks since they received this ticket from their support guys, what they are planning to do and why they can&#8217;t escalate it.</p>

<p>Remember, all I want to do is give them about $100 for new maps. All I need is a valid serial number.</p>

<p>I hope I don&#8217;t have to start buying and recommending other brands if they can&#8217;t resolve this. If anyone from Garmin feels like helping, the case number is KMM12787676I15977L0KM. Thanks!</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[GoPro Hero Camera]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/03/24/gopro-hero-camera/"/>
    <updated>2009-03-24T19:16:59-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/03/24/gopro-hero-camera</id>
    <content type="html"><![CDATA[<p>I recently bought a 5MP <a href="http://www.goprocamera.com/index.php?area=2&amp;productid=1">GoPro Hero Helmet Camera</a> - <a href="http://www.amazon.com/GHHW5170-Megapixel-Degree-Camera-Silver/dp/B001HZFQL0/ref=pd_bbs_sr_1?ie=UTF8&amp;s=electronics&amp;qid=1237944764&amp;sr=8-1">Amazon</a> had the best price at around $190. Loaded with a cheap 2Gb SD card, I was hoping to get some fun shots when I&#8217;m snowboarding, mountain biking or driving one of the Land Rovers somewhere interesting (unless anyone wants shots of I-25 every morning). </p>

<h4>Specs:</h4>


<ul>
    <li><span>Model Number</span>: GHHW5170</li>
    <li><span>Resolution</span>: 5 megapixel (2592x1944) photo, 512x384 video</li>
    <li><span>Sensor</span>: CMOS</li>
    <li><span>Video Format</span>: MJPEG, 30 fps, saved as .AVI file</li>
    <li><span>Optics</span>: glass lens, f/2.8 aperture, with ultra-wide 170º angle of view</li>
    <li><span>Modes</span>: video, standard photo, photo every 2 or 5 secs, 3x photo burst sequence, self timer, upside down photo/video flip</li>
    <li><span>Exposure Control</span>: auto</li>
    <li><span>White Balance</span>: auto</li>
    <li><span>Self Timer</span>: 10 seconds</li>
    <li><span>Microphone</span>: built-in with adjustable recording/input level</li>
    <li><span>Audio Format</span>: 8kHz, mono</li>
    <li><span>Memory</span>: 16 MB internal, expandable to 2GB with SD card (not included), expandable to 4GB with SDHC card (not included) via free software download from GoPro website—available soon</li>
    <li><span><strong>Capacity</strong></span><strong>: 56 minutes video (incl. audio) or 1,945 photos with optional 2GB SD card. 1hr 52min video (incl. audio) with optional 4GB SDHC card—available soon</strong></li>
    <li><span>Power</span>: 2x AAA batteries (not included), lithium batteries highly recommended. 3hrs. video recording with lithium, 2hrs. with NiMH</li>
    <li><span>TV Out</span> (with RCA cable): NTSC or PAL</li>
    <li><span>PC Connection</span>: USB + RCA combo cable</li>
    <li><span>PC Compatibility</span>: Windows ME, 2000, XP, and Vista; Mac OS X 10.2 and later</li>
    <li><span>Waterproof</span>: rated to 100 feet/30 meters</li>
    <li><span>Dimensions</span>: 1.75&#8221; x 2.30&#8221; x 1.25&#8221;/4.45cm x 5.84cm x 3.18cm (H x W x D)</li>
    <li><span>Weight</span>: 4.9 oz/139 g</li>
</ul>


<p>I took it our for a test run today, I was snowboarding in <a href="http://breckenridge.snow.com/home/">Breckenridge</a>. In summary, it&#8217;s an acceptable camera as long as you&#8217;re just after snapshots, or need a camera to go somewhere hazardous where you wouldn&#8217;t take your D-SLR, for example. I had to explain what it was and how it worked to about ten people today. GoPro should hang-out at the resorts, I think they&#8217;d sell a boatload. </p>

<h4>Pros:</h4>


<ul>
    <li>It&#8217;s cheap</li>
    <li>It&#8217;s small and lightweight</li>
    <li>It seems robust</li>
    <li>It takes a lot of images</li>
    <li>Once started, you can forget about it</li>
    <li>The images are acceptable for web use</li>
</ul>


<h4>Cons:</h4>


<ul>
    <li>The images are only acceptable for web use</li>
    <li>The sharpness of the lens isn&#8217;t great</li>
    <li>There&#8217;s no way to compensate for exposure (or, at least, I&#8217;ve not found a way)</li>
    <li>In video mode, the camera is hunting for the correct exposure continuously, which is very distracting to watch</li>
    <li>I find the interface a little non-intuitive, and it&#8217;s a pain to remember if it&#8217;s on or off</li>
</ul>


<p> </p>

<p> </p>

<p>Here&#8217;s an example video I shot. Checkout the exposure which is all over the place. To be fair, most cameras have a problem exposing correctly for snow, but I though the hunting was a bit too much. </p>

<p> </p>

<object width="700" height="525" data="http://vimeo.com/moogaloop.swf?clip_id=3843438&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3843438&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /></object>


<p><a href="http://vimeo.com/3843438">GoPro Hero Helmet Camera Test</a> from <a href="http://vimeo.com/nickt">Nick Taylor</a> on <a href="http://vimeo.com">Vimeo</a>.</p>

<p> </p>

<p><a href="http://www.flickr.com/photos/indigoprime/tags/cameratesttesthero/">I also uploaded some test images to flickr</a>. Here are some of them (click on the image through to flickr). </p>

<p> </p>

<p>This image shows the detail around the clouds but also shows the underexposure because of the bright snow.</p>

<p><a class="tt-flickr tt-flickr-Original" title="Breckenridge - GoPro Helmet Hero Wide camera test" href="http://www.flickr.com/photos/indigoprime/3383941100/"><img class="alignnone" src="http://farm4.static.flickr.com/3599/3383941100_67b461bf8a_o.jpg" alt="Breckenridge - GoPro Helmet Hero Wide camera test" width="700" height="525" /></a></p>

<p> </p>

<p> </p>

<p>Here&#8217;s the same image, tweaked in Aperture to correct the exposure.</p>

<p><a class="tt-flickr tt-flickr-Original" title="Breckenridge - GoPro Helmet Hero Wide camera test" href="http://www.flickr.com/photos/indigoprime/3383941234/"><img class="alignnone" src="http://farm4.static.flickr.com/3538/3383941234_ce7c7722ae_o.jpg" alt="Breckenridge - GoPro Helmet Hero Wide camera test" width="700" height="525" /></a></p>

<p> </p>

<p> </p>

<p>This next image shows the color definition (unretouched). It&#8217;s also a good example of how the lens falls off in sharpness at the edges, best viewed on the <a href="http://www.flickr.com/photos/indigoprime/3383126667/sizes/o/">original image</a>. </p>

<p><a class="tt-flickr tt-flickr-Original" title="Breckenridge - GoPro Helmet Hero Wide camera test" href="http://www.flickr.com/photos/indigoprime/3383126667/"><img class="alignnone" src="http://farm4.static.flickr.com/3475/3383126667_ca5be31c28_o.jpg" alt="Breckenridge - GoPro Helmet Hero Wide camera test" width="700" height="525" /></a></p>

<p> </p>

<p> </p>

<p>Another example of the falloff in image clarity at the edges (best seen on the <a href="http://www.flickr.com/photos/indigoprime/3383127195/sizes/o/">original image</a>).</p>

<p><a class="tt-flickr tt-flickr-Original" title="Breckenridge - GoPro Helmet Hero Wide camera test" href="http://www.flickr.com/photos/indigoprime/3383127195/"><img class="alignnone" src="http://farm4.static.flickr.com/3594/3383127195_24a4434acb_o.jpg" alt="Breckenridge - GoPro Helmet Hero Wide camera test" width="700" height="525" /></a></p>

<p> </p>

<p> </p>

<p>Finally, here&#8217;s another unretouched image showing how wide the 170 degreee lens is - the bar is the edge of the chairlift. </p>

<p><a class="tt-flickr tt-flickr-Original" title="Breckenridge - GoPro Helmet Hero Wide camera test" href="http://www.flickr.com/photos/indigoprime/3383126261/"><img class="alignnone" src="http://farm4.static.flickr.com/3448/3383126261_ac666f07b3_o.jpg" alt="Breckenridge - GoPro Helmet Hero Wide camera test" width="700" height="525" /></a></p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Media Temple: Moving WordPress and MediaWiki from (gs) to (dv)]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/03/22/media-temple-moving-wordpress-and-mediawiki-from-gs-to-dv/"/>
    <updated>2009-03-22T20:01:05-06:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/03/22/media-temple-moving-wordpress-and-mediawiki-from-gs-to-dv</id>
    <content type="html"><![CDATA[<p>I&#8217;ve reached the point where I&#8217;ve outgrown the <a href="http://www.mediatemple.net/go/order/?refdom=dv.adventurevehicles.com">Media Temple</a> (referral link) <a href="http://mediatemple.net/webhosting/gs/">(gs) gridservice</a> offering and have migrated to a <a href="http://mediatemple.net/webhosting/gs/">(dv) dedicated virtual</a> plan. My primary reasons were increased scalability, performance and flexibility. I&#8217;ve read some negative comments about Media Temple, but I&#8217;ve been with them for 3 years and had no problems, other than the occasional slowness. Their customer service has always been responsive and helpful. </p>

<p>I have a number of sites hosted on the (gs), including <a href="http://wordpress.org/">WordPress</a> and <a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> sites with <a href="http://www.mysql.com/">MySQL</a> databases, some of them are mine and some below to third parties. </p>

<p>(dv) comes with a <a href="http://www.parallels.com/products/plesk/">Plesk</a> front-end management tool, which is ok, but the first thing I did was enable <a href="http://en.wikipedia.org/wiki/Secure_Shell">ssh</a> access as I prefer the extra flexibility that hands-on environment gives you. Though I did spend the afternoon familiarizing myself with the Plesk environment and I like it well enough.</p>

<p>There are a few caveats when moving WordPress to a new site. I also changed the domains, and that added some extra complexity. I moved:</p>

<ul>
    <li>http://exerro.com/</li>
    <li>http://blog.http://nickt.com/ to <a title="Nick Taylor's personal blog" href="http://nickt.com/">http://nickt.com/</a></li>
    <li>http://blog.nickt.com/ to <a title="Nick Taylor's professional tech blog" href="http://nickt.com/">http://nickt.com/</a></li>
    <li>and some other, minor, changes</li>
</ul>


<p>I got rid of the leading hostnames mainly to simplify my environment and it also aids <a title="wikipedia entry on seo" href="http://en.wikipedia.org/wiki/Search_engine_optimization">SEO</a>. </p>

<p>These are some of the things you should watch for:</p>

<ul>
    <li>The backup and restore of the database didn&#8217;t work well and I didn&#8217;t have much confidence in it. (mt) have a <a href="http://kb.mediatemple.net/questions/129/How+can+I+Backup+and+Restore+a+MySQL+database%3F">KnowledgeBase article on the subject</a>. I used the command line to backup the databases like this:
<ul>
    <li><code>$ mysqldump --add-drop-table -u Username -p dbname &gt; dbname.sql</code></li>
</ul>
</li>
    <li>And restored them like this:
<ul>
    <li><code>$ mysql -u Username -p dbname &lt; dbname.sql</code></li>
</ul>
</li>
    <li>As I&#8217;ve moved domains, the databases needed some work to fix links. I found <a href="http://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/">an article that was of help</a>, but what you basically do is
<ul>
    <li>update the wp_options table with:
<ul>
    <li><code>UPDATE wp_options SET option_value = replace(option_value, 'http://OLDURL', 'http://NEWURL') WHERE option_name = 'home' OR option_name = 'siteurl';</code></li>
</ul>
</li>
    <li>update the references to absolute URLs:
<ul>
    <li><code>UPDATE wp_posts SET guid = replace(guid, 'http://OLDURL','http://NEWURL');</code></li>
</ul>
</li>
    <li>update the posts that reference other posts on the site:
<ul>
    <li><code>UPDATE wp_posts SET post_content = replace(post_content, 'http://OLDURL', 'http://NEWURL');</code></li>
</ul>
</li>
</ul>
</li>
    <li>As I changed domain names, the permalinks broke. Make the <a href="http://httpd.apache.org/docs/1.3/howto/htaccess.html">.htaccess</a> file writeable and in wp-admin/settings/permalinks hit &#8220;save changes&#8221; to regenerate the permalinks. If you have a problem here, it&#8217;ll probably be down to the .htaccess file either not existing or not being writable. </li>
    <li>WordPress on (dv) requires the <a title="wikipedia entry on unix file stystem permissions" href="http://en.wikipedia.org/wiki/File_system_permissions">permissions</a> on the wp-content/uploads directory to be 777, or you have problems adding to your media library. There may be a better way of doing this, but after spending a couple of hours I decided it was good enough. You also have to either edit the wp_options table in the database or simply change the settings/misc uploads setting in WordPress admin to be &#8220;wp-content/uploads&#8221; (note there&#8217;s no leading &#8220;/&#8221;). There are a lot of threads on the (mt) forums discussing this, <a href="https://forums.mediatemple.net/viewtopic.php?id=2350">this is the most relevant one</a>. The WordPress forums also <a href="http://wordpress.org/support/topic/180378">discuss this problem</a>. </li>
    <li>Also to allow successful uploads to your media library, <a title="PHP safe mode" href="http://us.php.net/features.safe-mode">PHP safe-mode</a> has to be &#8220;off&#8221; as the httpd server and filesystem permissions are different. The easiest way to change this setting is via the Plesk control panel, but you can also edit <code>/etc/php.ini</code>. </li>
    <li>I had some non-WordPress files, mostly images, on the old sites, so <a href="http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3F">I used .htaccess to redirect</a> to the new locations, specifically for links to files and images I&#8217;ve been posting to forums for years, and didn&#8217;t want them to break. For example, http://nickt.com/landrovers redirects to <a title="Nicks fleet of overland vehicles" href="http://exerro.com/oldsites/2009/http://nickt.com/landrovers/">http://exerro.com/oldsites/2009/http://nickt.com/landrovers/.</a></li>
    <li>I use the <a href="http://wordpress.org/extend/plugins/wp-db-backup/">WordPress Database Backup plugin</a>, and it needed a new backup directory to be created in <code>wp-content</code> and made writable. </li>
    <li>I noticed that the <a href="http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/faq/">WordPress Automatic Upgrade</a> and the automatic plugin upgrades now require an ftp username and password. </li>
    <li>I setup <a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> to use short URLs, like <a href="http://www.wikipedia.org/">Wikipedia</a>, (aka removing &#8220;index.php&#8221; from the URL) in line with best practices for forming URLs using <a href="http://www.mediawiki.org/wiki/Manual:Short_URL">this method</a>. </li>
    <li>Also for the codex exerro&#8221;, I only allowed authorized users to read pages using <a href="http://www.mediawiki.org/wiki/Manual:Short_URL">this method</a>. </li>
    <li>I temporarily disabled account creation by adding &#8221;<code>$wgGroupPermissions['*']['createaccount'] = false;</code>&#8221; to  <code>LocalSettings.php</code></li>
</ul>


<p>I&#8217;m still wondering whether or not to use <a href="http://drupal.org/">Drupal</a> instead of MediaWiki for both the &#8220;codex exerro&#8221; and a private wiki I&#8217;m building. Drupal has more flexibility in terms of user rights management (or is at least simpler than MediaWiki) and managing content (unsurprisingly as it is a Content Management System), but doesn&#8217;t look as good out of the box and is more complex to setup and maintain.</p>

<p>Anyway, it took around a day to migrate half a dozen sites and databases. I&#8217;m looking forward to pushing (dv) to see what it&#8217;s got!</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[2009 is the year for ZFS]]></title>
    <link href="http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/01/05/2009-is-the-year-for-zfs/"/>
    <updated>2009-01-05T21:23:39-07:00</updated>
    <id>http://www.nickt.com.s3-website-us-west-2.amazonaws.com/blog/2009/01/05/2009-is-the-year-for-zfs</id>
    <content type="html"><![CDATA[<p>ZFS will come of age in 2009.</p>

<p>In 2008, I had to <a href="http://www.infoworld.com/archives/videoTemplate.jsp?Id=1152&amp;type=Screencasts&amp;tag=Storage">explain</a> what <a href="http://en.wikipedia.org/wiki/ZFS">ZFS</a> was and why it&#8217;s different to the existing volume/filesystem model. By the end of 2009, IT Pros will all be aware of it, what it does and will likely have at least a little of it in their production infrastructure. <a href="http://www.sun.com/">Sun</a> has already <a href="http://www.sun.com/storagetek/open.jsp">started that ball rolling</a>.</p>

<p>Heck, with full-blown support of ZFS likely to be in <a href="http://en.wikipedia.org/wiki/Mac_OS_X_v10.6">OSX 10.6</a>, &#8220;Snow Leopard&#8221;, it&#8217;ll even make in-roads to the home-market. Or course, if Apple announce a ZFS-based upgraded Time Capsule/Home Server at <a href="http://www.macworld.com/topics/macworld_expo.html">MacWorld ExPo</a> tomorrow that&#8217;ll happen sooner.</p>

<p>From a capacity perspective, with 2TB or greater drives being the de-facto standard capacity by the end of 2009 (compared with 1TB today), the growth of all types of media; including photographs, personal video and the increasing availability of internet-distributed hi-def content, coupled with the pack-rat nature of most of us (<a href="http://nickt.com/2008/12/29/zfs-server-specs/">me included</a>), demand for storage capacity has never been higher. It&#8217;ll also push the more mainstream storage user towards the <a href="http://en.wikipedia.org/wiki/Standard_RAID_levels#RAID_5_disk_failure_rate">10-12TB Unrecoverable Read Error issue</a> , aka known as the <a href="http://blogs.zdnet.com/storage/?p=162">death of RAID5</a>. </p>

<p>To deal with increasing capacity and the straight line graph of bit-error rates, drive manufacturers keep making their drives smarter to handle errors and attempt to minimize data loss. This is the wrong approach, but it&#8217;s unavoidable as otherwise they commoditize themselves further. Drives should be stupid and let something further up the stack manage this. That something is ZFS.</p>

<p>Of course, this mostly applies to cheaper <a href="http://en.wikipedia.org/wiki/Sata">SATA</a> drives. The more expensive <a href="http://en.wikipedia.org/wiki/SCSI#Parallel_SCSI">UltraSCSI</a> and <a href="http://en.wikipedia.org/wiki/Serial_Attached_SCSI">SAS</a> commanded a premium for performance and reliability. Move reliability into the filesystem and you&#8217;re just paying a premium for performance. Obviously, some need the performance which is why these drives and ancillary equipment and technologies like <a href="http://en.wikipedia.org/wiki/Fiberchannel">Fibre Channel</a> will stay around, but I think it&#8217;s worth considering if you really need that <a href="http://en.wikipedia.org/wiki/CLARiiON">CLARiiON</a> or <a href="http://en.wikipedia.org/wiki/EMC_Symmetrix">Symmetrix</a>&#8230;</p>
]]></content>
  </entry>
  
</feed>

