<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Campbell Gunn</title>
	<atom:link href="http://blog.campbellgunn.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.campbellgunn.com</link>
	<description>Life, Work, Research and Firefighting</description>
	<lastBuildDate>Sat, 28 Aug 2010 00:45:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ever wanted to easily switch from different ruby versions? Look no further then&#8230;.</title>
		<link>http://blog.campbellgunn.com/2010/08/ever-wanted-to-easily-switch-from-different-ruby-versions-look-no-further-then/</link>
		<comments>http://blog.campbellgunn.com/2010/08/ever-wanted-to-easily-switch-from-different-ruby-versions-look-no-further-then/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 00:45:00 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/08/ever-wanted-to-easily-switch-from-different-ruby-versions-look-no-further-then/</guid>
		<description><![CDATA[So, with Ruby versions coming out so often, well it feels like it. Don’t get me wrong, that is a good thing. The problem is that it requires some testing of existing applications on different versions until it is upgraded. Not only does this apply to Ruby, but also Ruby on Rails as well. I [...]]]></description>
			<content:encoded><![CDATA[<p>So, with Ruby versions coming out so often, well it feels like it. Don’t get me wrong, that is a good thing. The problem is that it requires some testing of existing applications on different versions until it is upgraded. Not only does this apply to Ruby, but also Ruby on Rails as well.</p>
<p>I did my trusty search on Bing! and come across <a href="http://rvm.beginrescueend.com">RVM: Ruby Version Manager</a>. </p>
<p>To Install RVM, do the following:</p>
<p>$ gem sources -a <a href="http://gemcutter.org/">http://gemcutter.org/</a><br />
$ gem install rvm<br />
$ rvm-install<br />
$ echo “if [[ ! -z $HOME/.rvm ]] ; then source $HOME/.rvm ; fi” &gt;&gt; ~/.bash_profile<br />
$ source ~/.rvm/scripts/rvm</p>
<p>Now, you can install the necessary gems, that you want to install. Notice: Also, don’t use sudo as it will mess up the configuration.</p>
<p>Here I install the different Ruby interpreters:</p>
<p>$ rvm  install ruby-1.8.7-p160<br />
$ rvm  install ruby-1.9.1</p>
<p>Now it’s important to notice that at this point you have separate gem installations for each of the interpreters you’ve installed in the previous step. That said, just go ahead and switch between your interpreters and use your command line scripts &#8211; ruby, gem, etc… &#8211; as usual.</p>
<p>Now, here is a way to switch between interpreters and install Ruby on Rails versions as well.</p>
<p>$ rvm ruby-1.8.7-p160  #switch to the specified version<br />
$ ruby -v<br />
ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9.8.0]<br />
$ gem install rails  #note I&#8217;m not using sudo since the new gem paths point to the user&#8217;s home directory </p>
<p>$ rvm ruby-1.9.1  #switch to the specified version<br />
$ ruby -v<br />
ruby 1.9.1p376 (2009-12-07 revision 26041) [i386-darwin9.8.0]<br />
$ gem install rails  #note I&#8217;m not using sudo since the new gem paths point to the user&#8217;s home directory</p>
<p>Okay, you can now switch to a specific interpreter and have multiple rails versions, especially if you are migrating from 2.x to 3.</p>
<p>$ rvm gemset create rails222 rails126<br />
Gemset &#8216;rails222&#8242; created.<br />
Gemset &#8216;rails126&#8242; created.</p>
<p>$ rvm 1.9.2-head@rails222<br />
$ gem install rails -v 2.2.2</p>
<p>$ rvm 1.9.2-head@rails126<br />
$ gem install rails -v 1.2.6</p>
<p>There you go, pretty cool!</p>
<p>-Later.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/08/ever-wanted-to-easily-switch-from-different-ruby-versions-look-no-further-then/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a terminal alias in Mac OSX</title>
		<link>http://blog.campbellgunn.com/2010/08/how-to-make-a-terminal-alias-in-mac-osx/</link>
		<comments>http://blog.campbellgunn.com/2010/08/how-to-make-a-terminal-alias-in-mac-osx/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 00:18:57 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/08/how-to-make-a-terminal-alias-in-mac-osx/</guid>
		<description><![CDATA[After looking around on the Internet, I found a site that provides exactly what I am looking for. Namely, creating an alias, as I am swapping from different operating systems and still put the wrong commands in. So, I know how to do an alias, but the step I always forget is to reload my [...]]]></description>
			<content:encoded><![CDATA[<p>After looking around on the Internet, I found a site that provides exactly what I am looking for.<br />
Namely, creating an alias, as I am swapping from different operating systems and still put the wrong commands in.</p>
<p>So, I know how to do an alias, but the step I always forget is to reload my profile settings.</p>
<p>Here is a quick blurb, for those who have not used the command before.</p>
<p>   1. First we edit/create a profile. For a normal user do:<br />
      pico /etc/profle<br />
      &#8230;or if you are not a root/superuser do:<br />
      pico ~/.profile</p>
<p>   2. Add your alias like so to the file:<br />
      alias aliasname=&#8217;mycommand /path/path&#8217; , I usually put in alias cls=‘clear’ as an example.<br />
      (notice no space between equal sign and &#8216;)</p>
<ol style="list-style-type: decimal">
<li>Save your changes and close the file.</li>
<li>Load/reload your profile with:</li>
</ol>
<p>      . /etc/profile<br />
      &#8230;or if you are not a root/superuser do:<br />
      . ~/.profile<br />
     *Note: the last file is probably already there as a normal user. Also this is the step I always forget. <img src='http://blog.campbellgunn.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<ol style="list-style-type: decimal">
<li>If you are using root/sudo you will need to use sudo -i in order to load the profile upon login (more info about this here).</li>
</ol>
<p>   6. Done.</p>
<p>-Later</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/08/how-to-make-a-terminal-alias-in-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora (Mobile Music)</title>
		<link>http://blog.campbellgunn.com/2010/08/pandora-mobile-music/</link>
		<comments>http://blog.campbellgunn.com/2010/08/pandora-mobile-music/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 20:28:29 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/08/pandora-mobile-music/</guid>
		<description><![CDATA[The streaming music recommendation service Pandora is a great example of a native Web application: it stores content in the cloud, it gets better as it adds users, it is personalized, and most recently it has been focused on the mobile experience. So what happens when a Web app hits on all these cylinders? Let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>The streaming music recommendation service <a href="http://www.pandora.com/">Pandora</a> is a great example of a native Web application: it stores content in the cloud, it gets better as it adds users, it is personalized, and most recently it has been focused on the mobile experience. So what happens when a Web app hits on all these cylinders? Let&#8217;s look at the numbers.</p>
<ul style="list-style-type: disc">
<li>In July 2010, Pandora had 60 million listeners registered. This is up from 50 million in April, and 40 million in December. (<a href="http://techcrunch.com/2010/07/21/pandora-stats/">source</a>)</li>
<li>Previously, it took Pandora all of 2009 to double in size from 20 million to 40 million. (<a href="http://techcrunch.com/2010/07/21/pandora-stats/">source</a>)</li>
<li>In December 2009 alone, 3 million new listeners joined Pandora — of which 2.7 million of them activated the service on a device other than a computer. (<a href="http://techcrunch.com/2010/07/21/pandora-stats/">source</a>)</li>
<li>Pandora is available for the iPhone, the Blackberry, the Palm Pre, and devices running Google&#8217;s Android and Microsoft&#8217;s Windows Mobile operating systems. (<a href="http://www.physorg.com/news199264403.html">source</a>)</li>
<li>About 90,000 new people a day activate Pandora on a mobile device and that number is growing (<a href="http://www.physorg.com/news199264403.html">source</a>)</li>
<li>Pandora currently has hundreds of thousands of songs in its catalog from over 90,000 different artists. 80 percent of those artists are played each month. (<a href="http://gigaom.com/2010/01/12/pandora-everywhere/">source</a>)</li>
<li>Out of 100 hours, 1 hour and 15 minutes of radio is listened to on Pandora. (<a href="hhttp://www.hypebot.com/hypebot/2010/03/pandora-by-the-numbers.html">source</a>)</li>
<li>Pandora has 3/4 of a million songs so far; 90 million of those three-fourths were played last month. (<a href="hhttp://www.hypebot.com/hypebot/2010/03/pandora-by-the-numbers.html">source</a>)</li>
<li>1 out of every 4 or 5 songs gets a thumb (whether up or down). (<a href="hhttp://www.hypebot.com/hypebot/2010/03/pandora-by-the-numbers.html">source</a>)</li>
<li>On average an individual listens to 17 hours of radio per week. Of the 17 hours of radio listened, 96% are listened to through broadcast radio (so NOT Pandora because it is a unicast radio). (<a href="hhttp://www.hypebot.com/hypebot/2010/03/pandora-by-the-numbers.html">source</a>)</li>
</ul>
<p>I find this interesting, given not so long ago I got an email from the Founder of Pandora, saying they where in financial trouble.</p>
<p>Thanks to LukeW to providing the numbers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/08/pandora-mobile-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet: Teens on Facebook GOL (grumble out loud) as mothers become friends &#8211; latimes.com</title>
		<link>http://blog.campbellgunn.com/2010/08/internet-teens-on-facebook-gol-grumble-out-loud-as-mothers-become-friends-latimes-com/</link>
		<comments>http://blog.campbellgunn.com/2010/08/internet-teens-on-facebook-gol-grumble-out-loud-as-mothers-become-friends-latimes-com/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 03:53:29 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/?p=384</guid>
		<description><![CDATA[Mothers have found a even better way to humiliate their children than showing baby pictures: becoming a friend on Facebook. Internet: Teens on Facebook GOL (grumble out loud) as mothers become friends &#8211; latimes.com.]]></description>
			<content:encoded><![CDATA[<p>Mothers have found a even better way to humiliate their children than showing baby pictures: becoming a friend on <a id="ORCRP006023" class="taxInlineTagLink" title="Facebook" href="http://www.latimes.com/topic/arts-culture/internet/facebook-ORCRP006023.topic">Facebook</a>.</p>
<p><a href="http://blog.campbellgunn.com/wp-content/uploads/2010/08/fbipadimage.jpg"><img class="alignnone size-full wp-image-386" title="Facebook" src="http://blog.campbellgunn.com/wp-content/uploads/2010/08/fbipadimage.jpg" alt="" width="524" height="288" /></a></p>
<p><a href="http://www.latimes.com/business/la-fi-facebook-teens-20100825,0,5741860.story">Internet: Teens on Facebook GOL (grumble out loud) as mothers become friends &#8211; latimes.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/08/internet-teens-on-facebook-gol-grumble-out-loud-as-mothers-become-friends-latimes-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Accessories, iPhone Cases, iPod Accessories &amp; Cases: XtremeMac</title>
		<link>http://blog.campbellgunn.com/2010/08/iphone-accessories-iphone-cases-ipod-accessories-cases-xtrememac/</link>
		<comments>http://blog.campbellgunn.com/2010/08/iphone-accessories-iphone-cases-ipod-accessories-cases-xtrememac/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 04:03:37 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/?p=379</guid>
		<description><![CDATA[Great accessories for iphone and ipad. iPhone Accessories, iPhone Cases, iPod Accessories &#38; Cases: XtremeMac.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.campbellgunn.com/wp-content/uploads/2010/08/Finder.png"><img class="alignnone size-full wp-image-381" title="iPhone and iPad duo dock" src="http://blog.campbellgunn.com/wp-content/uploads/2010/08/Finder.png" alt="" width="332" height="383" /></a></p>
<p>Great accessories for iphone and ipad.</p>
<p><a href="http://www.xtrememac.com/en/?sms_ss=wordpress">iPhone Accessories, iPhone Cases, iPod Accessories &amp; Cases: XtremeMac</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/08/iphone-accessories-iphone-cases-ipod-accessories-cases-xtrememac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some interesting Mac OSX applications that are Free</title>
		<link>http://blog.campbellgunn.com/2010/05/some-interesting-mac-osx-applications-that-are-free/</link>
		<comments>http://blog.campbellgunn.com/2010/05/some-interesting-mac-osx-applications-that-are-free/#comments</comments>
		<pubDate>Sun, 23 May 2010 19:14:21 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/05/some-interesting-mac-osx-applications-that-are-free/</guid>
		<description><![CDATA[The first program that I discovered today was Xyle Scope. This application provides a better way of understand CSS. Here is a screen shot of the capabilities. The beauty of this application is that it is free! Another program I came across was Carbon Copy Cloner, this is a backup program, I like it because [...]]]></description>
			<content:encoded><![CDATA[<p>The first program that I discovered today was Xyle Scope. This application provides a better way of understand CSS. </p>
<p>Here is a screen shot of the capabilities.</p>
<p><a href="http://culturedcode.com/xyle/"><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-Screenshot_en-2010-05-23-12-141.jpg" alt="wpid-Screenshot_en-2010-05-23-12-141.jpg" width="420" height="360" /></a></p>
<p>The beauty of this application is that it is free!</p>
<p><a href="http://www.bombich.com/ccc_features.html"><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-carbon_copy_cloner_logo-2010-05-23-12-14.jpg" alt="wpid-carbon_copy_cloner_logo-2010-05-23-12-14.jpg" width="261" height="83" /></a></p>
<p>Another program I came across was Carbon Copy Cloner, this is a backup program, I like it because you can use other macs as the backup destination.</p>
<p>It is free as well, it would be nice to donate to the author as well. Some other features are:</p>
<p><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-feat_clone-2010-05-23-12-14.jpg" alt="wpid-feat_clone-2010-05-23-12-14.jpg" width="125" height="120" /></p>
<p>    * A Better Bootable Backup — your data, the operating system&#8217;s data, all preserved impeccably on a bootable volume, ready for production at a moments notice<br />
    * Simplest method to migrate to a new, larger hard drive<br />
    * Support for block-level disk-to-disk clones for super-fast upgrades.</p>
<p>Don’t take my word for it, try it out yourself!</p>
<p>The last program is Anxiety, this program is a simple ToDo program.</p>
<p><a href="http://www.anxietyapp.com/"><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-list-window-thumb-2010-05-23-12-14.png" alt="wpid-list-window-thumb-2010-05-23-12-14.png" width="260" height="96" /></a></p>
<p>I like this program because it is simple, yet very functional.</p>
<p>Also, this program of course is free too.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/05/some-interesting-mac-osx-applications-that-are-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another year of Live Fire for Duvall Fire 45</title>
		<link>http://blog.campbellgunn.com/2010/05/another-year-of-live-fire-for-duvall-fire-45/</link>
		<comments>http://blog.campbellgunn.com/2010/05/another-year-of-live-fire-for-duvall-fire-45/#comments</comments>
		<pubDate>Sat, 15 May 2010 21:10:38 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Firefighting]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/05/another-year-of-live-fire-for-duvall-fire-45/</guid>
		<description><![CDATA[Here is a couple of photos that were taken at Live fire this year. This is the Helicopter prop, and we have to get close to it to get someone out, but also provide adequate protection for us. Here is our crew moving onto the prop. A picture of me in front of the prop.]]></description>
			<content:encoded><![CDATA[<p>Here is a couple of photos that were taken at Live fire this year.</p>
<p>This is the Helicopter prop, and we have to get close to it to get someone out, but also provide adequate protection for us.</p>
<p><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-P4240025-2010-05-15-14-10.jpg" alt="wpid-P4240025-2010-05-15-14-10.jpg" width="512" height="384" /></p>
<p>Here is our crew moving onto the prop.</p>
<p><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-P4240030-2010-05-15-14-10.jpg" alt="wpid-P4240030-2010-05-15-14-10.jpg" width="512" height="384" /></p>
<p>A picture of me in front of the prop.</p>
<p><img src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/wpid-P4240012-2010-05-15-14-10.jpg" alt="wpid-P4240012-2010-05-15-14-10.jpg" width="512" height="384" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/05/another-year-of-live-fire-for-duvall-fire-45/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefighter Survival: Ammonia leak poses big hazard, or is it the PPE? Or, the shots fired!? WTF!</title>
		<link>http://blog.campbellgunn.com/2010/05/firefighter-survival-ammonia-leak-poses-big-hazard-or-is-it-the-ppe-or-the-shots-fired-wtf/</link>
		<comments>http://blog.campbellgunn.com/2010/05/firefighter-survival-ammonia-leak-poses-big-hazard-or-is-it-the-ppe-or-the-shots-fired-wtf/#comments</comments>
		<pubDate>Sun, 02 May 2010 18:32:02 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/05/firefighter-survival-ammonia-leak-poses-big-hazard-or-is-it-the-ppe-or-the-shots-fired-wtf/</guid>
		<description><![CDATA[Firefighter Survival: Ammonia leak poses big hazard, or is it the PPE? Or, the shots fired!? WTF! Posted using ShareThis]]></description>
			<content:encoded><![CDATA[<p><a href=http://www.firefighterclosecalls.com/news/fullstory/newsid/106800>Firefighter Survival: Ammonia leak poses big hazard, or is it the PPE? Or, the shots fired!? WTF!</a></p>
<p>Posted using <a href="http://sharethis.com">ShareThis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/05/firefighter-survival-ammonia-leak-poses-big-hazard-or-is-it-the-ppe-or-the-shots-fired-wtf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want to tie a bow tie, well this might get your attention!</title>
		<link>http://blog.campbellgunn.com/2010/05/want-to-tie-a-bow-tie-well-this-might-get-your-attention/</link>
		<comments>http://blog.campbellgunn.com/2010/05/want-to-tie-a-bow-tie-well-this-might-get-your-attention/#comments</comments>
		<pubDate>Sat, 01 May 2010 21:10:10 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/05/want-to-tie-a-bow-tie-well-this-might-get-your-attention/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/jbvjaUGiM4A&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/jbvjaUGiM4A&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/05/want-to-tie-a-bow-tie-well-this-might-get-your-attention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Walk a mile in your feet</title>
		<link>http://blog.campbellgunn.com/2010/05/walk-a-mile-in-your-feet/</link>
		<comments>http://blog.campbellgunn.com/2010/05/walk-a-mile-in-your-feet/#comments</comments>
		<pubDate>Sat, 01 May 2010 08:19:48 +0000</pubDate>
		<dc:creator>cgunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.campbellgunn.com/2010/05/walk-a-mile-in-your-feet/</guid>
		<description><![CDATA[Walk a mile in your feet… I think I might get a pair of these shoes to try out! I think it would be interesting to have them for my fire fighter agility test. Posted using ShareThis]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><a href="http://blog.campbellgunn.com/wp-content/uploads/2010/05/Picture-6.png"><img class="alignnone size-full wp-image-349" title="Vibram Five Fingers" src="http://blog.campbellgunn.com/wp-content/uploads/2010/05/Picture-6.png" alt="" width="796" height="366" /></a><br />
</span></p>
<p><span style="text-decoration: underline;"><a href="http://www.bonobos.com/blog/uncategorized/walk-a-mile-in-your-feet/">Walk a mile in your feet…</a></span></p>
<p>I think I might get a pair of these shoes to try out! I think it would be interesting to have them for my fire fighter agility test. <img src='http://blog.campbellgunn.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Posted using <span style="text-decoration: underline;"><a href="http://sharethis.com/">ShareThis</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.campbellgunn.com/2010/05/walk-a-mile-in-your-feet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
