<?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>Simple10</title>
	<atom:link href="http://www.simple10.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simple10.com</link>
	<description>Simple is good.</description>
	<lastBuildDate>Mon, 09 Aug 2010 22:06:31 +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>APE Comet Server Local Dev Environment Setup</title>
		<link>http://www.simple10.com/ape-comet-server-local-dev-environment-setup/</link>
		<comments>http://www.simple10.com/ape-comet-server-local-dev-environment-setup/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 20:45:47 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[realtime]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[ape]]></category>
		<category><![CDATA[comet]]></category>

		<guid isPermaLink="false">http://www.simple10.com/?p=147</guid>
		<description><![CDATA[APE (Ajax Push Engine) is a scalable comet or AJAX push server written in C.  It&#8217;s great for embedding HTML chat clients or making real-time games without Flash. I&#8217;ve been playing around with APE for a couple different applications.  Setting up the demos on a single server that runs both Apache and the APE server [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.ape-project.org">APE (Ajax Push Engine)</a> is a scalable comet or AJAX push server written in C.  It&#8217;s great for embedding HTML chat clients or making real-time games without Flash.</p>
<p>I&#8217;ve been playing around with APE for a couple different applications.  Setting up the demos on a single server that runs both Apache and the APE server is relatively straight forward.  However, running the APE server separate from the web server is not as simple.</p>
<p>Here&#8217;s my dev environment&#8230;</p>
<ul>
<li>Web server: Ruby on Rails running locally on my mac at http://0.0.0.0:3000</li>
<li>APE server: running in a Debian VMWare server at http://192.168.0.99:6969</li>
</ul>
<p>The production environment is similar with <a href="http://heroku.com">Heroku</a> as the web server and <a href="http://www.linode.com">Linode</a> running the APE server.</p>
<p>Here&#8217;s what you have to do to get the dev environment setup from scratch&#8230;</p>
<ol>
<li>Download <a href="http://www.ape-project.org/download/APE_Complete_Package.html">APE Project</a></li>
<li>Follow the <a href="http://www.ape-project.org/wiki/index.php/Setup">APE doc</a> for installing the server</li>
<li>Create a new rails project and copy the ape-jsf folder into your rails project&#8217;s public dir</li>
<li>Edit /etc/hosts on your mac and add the entries below</li>
<li>Edit ape-jsf/Demos/config.js as directed below</li>
<li>Modify JS Request methods to use GET instead of POST</li>
</ol>
<p><strong>Add to /etc/hosts</strong></p>
<pre class="brush: bash;">

192.168.0.99 ape.dummy-domain.com
192.168.0.99 0.ape.dummy-domain.com
192.168.0.99 1.ape.dummy-domain.com
192.168.0.99 2.ape.dummy-domain.com
192.168.0.99 3.ape.dummy-domain.com
192.168.0.99 4.ape.dummy-domain.com
192.168.0.99 5.ape.dummy-domain.com
192.168.0.99 6.ape.dummy-domain.com
192.168.0.99 7.ape.dummy-domain.com
192.168.0.99 8.ape.dummy-domain.com
192.168.0.99 9.ape.dummy-domain.com

0.0.0.0 dummy-domain.com
</pre>
<p><strong>Edit ape-jsf/Demos/config.js</strong></p>
<pre class="brush: jscript;">

APE.Config.baseUrl = 'http://dummy-domain.com:3000/ape-jsf'; //APE JSF
APE.Config.domain = 'auto';
APE.Config.server = 'ape.dummy-domain.com:6969'; //APE server URL
</pre>
<p>Last but not least, edit ape-jsf/Tools/Check/index.html and modify all Request calls to use GET instead of POST.  By default, MooTools Request object uses POST for XHR requests which will cause a problem with Rails.</p>
<pre class="brush: jscript;">

this.addTest('Loading Client', function() {
		var req = new Request({
			'url': '../../Clients/MooTools.js',
			'method': 'GET',
			'evalResponse': true,
			'onComplete': function(resp) {
				if (window.APE) this.fireEvent('testComplete', {'sucess': true});
				else this.fireEvent('testComplete', {'error': &quot;Can't load client, check the file &quot; + window.location.href.replace('/Tools/Check/', '') + &quot;/Clients/MooTools.js is available&quot;});
			}.bind(this)
		}).send();
}.bind(this));
</pre>
<p>The test script should now run properly at http://dummy-domain.com:3000/ape-jsf/Toosl/Check/</p>
<p>APE uses iframe and JSONP hacks to transparently handle javascript subdomain security issues.</p>
<p>If you look at what&#8217;s going on in Firebug, you&#8217;ll see APE embedding an iframe in the page, setting the iframe domain to dummy-domain.com, and making calls to the APE server through iframe.  This trick only works if the main HTML page is on a different sub-domain than the APE server.  It will not work for two completely different domains.  This is a limitation of Javascript browser security and not APE.</p>
<p>Thanks to the APE dev team for making an awesome comet server!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/ape-comet-server-local-dev-environment-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building the Wikitude Sample App for iPhone 4</title>
		<link>http://www.simple10.com/building-the-wikitude-sample-app-for-iphone-4/</link>
		<comments>http://www.simple10.com/building-the-wikitude-sample-app-for-iphone-4/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 20:58:28 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[wikitude]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://www.simple10.com/?p=133</guid>
		<description><![CDATA[I&#8217;m new to iPhone development but wanted to see how quickly I could build an augmented reality prototype for a simple AR treasure hunt game.  I looked at the APIs for Layar, ARToolKit, Junaio, and settled on Wikitude for this test.  Wikitude provides an augmented reality library that you can drop into your iPhone project [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m new to iPhone development but wanted to see how quickly I could build an augmented reality prototype for a simple AR treasure hunt game.  I looked at the APIs for <a title="Layar Augmented Reality" href="http://site.layar.com/create/platform-overview/">Layar</a>, <a href="http://artoolworks.com/Home.html">ARToolKit</a>, <a title="Junaio AR API" href="http://www.junaio.com/">Junaio</a>, and settled on <a title="Wikitude Augmented Reality API" href="http://www.wikitude.org/enwikitude-iphone-api">Wikitude</a> for this test.  Wikitude provides an augmented reality library that you can drop into your iPhone project in less than an hour.  Bad ass.  Assuming you&#8217;re not an iPhone dev n00b like me.  Then it takes you three hours.</p>
<p>If you&#8217;ve never tried to build a downloaded sample app, hopefully this guide will save you a couple hours of futzing around with plist and project configuration.</p>
<p>I&#8217;m using XCode 3.2.3 with the iOS SDK 4.0.1 and targeting an iPhone 4 device connected to my MacBook Pro.</p>
<p><strong>Getting Started</strong></p>
<ol>
<li>Download the <a href="http://www.wikitude.org/developers">Wikitude iPhone API</a> and unzip the sample app</li>
<li>Open WikitudeAPI-SCM-Test.xcodeproj in XCode</li>
<li>Click &#8220;Build and Run&#8221; on the XCode toolbar</li>
</ol>
<p>You&#8217;ll probably get one or more of the following errors:<em> </em></p>
<ul>
<li><em>There is no SDK with the name or path &#8216;iphoneos3.1.2&#8242;.</em></li>
<li><em>Code Sign error: a valid provisioning profile matching the application&#8217;s Identifier &#8216;com.companyname.productname&#8217; could not be found</em></li>
</ul>
<p>Time for to fix the sample app configuration.  Search paths, target architecture, base SDK, and code signing will all need to be changed in order to successfully build the project.</p>
<p>Before you go any further, make sure you&#8217;re set up through the <a href="https://developer.apple.com/iphone/manage/overview/index.action">iPhone Dev Center Provisioning Portal</a> to sign code.  The Wikitude API will not run in a simulator, and building for devices requires a valid code signing identity.  You can apparently use the XCode Organizer to create your code signing profiles.  However, I kept getting an unexpected error and ended up doing everything through the web portal.  For simplicity, I created a wildcard domain (com.simple10.*) for the App ID so that I can use the same provisioning profile for other apps.</p>
<p>Once your provisioning profile is ready to go, it&#8217;s time to fix the XCode project configuration so the sample app will build.</p>
<p><strong>Fixing Config Options in XCode</strong></p>
<p>Open the project info build options panel by double clicking on WikitudeAPI-SCM-Test project.</p>
<p><strong><a href="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen1.png"><img class="alignnone size-medium wp-image-136" title="Wikitude Sample App Configuration" src="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen1-300x172.png" alt="Wikitude Sample App Configuration" width="300" height="172" /></a></strong></p>
<p>Make the following changes to the build options&#8230;</p>
<p><strong>Architectures</strong></p>
<ul>
<li>Architectures: Standard (armv6 armv7)</li>
<li>Base SDK: iPhone Device 4.0</li>
<li>Build Active Architecture Only: [checked]</li>
</ul>
<p><strong>Code Signing</strong></p>
<ul>
<li>Code Signing Identity &gt; Any iPhone OS Device: [select your provisioned profile]</li>
</ul>
<p>Open the targets build option panel by expanding the Targets tree and double clicking on WikitudeAPI-SCM-Test.</p>
<p><a href="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen2.png"></a><a href="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen2.png"><img class="alignnone size-medium wp-image-138" title="Wikitude Sample App Config Screen 2" src="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen2-300x218.png" alt="Wikitude Sample App Config Screen 2" width="300" height="218" /></a></p>
<p>Make the following changes to the target build options&#8230;</p>
<p><strong>Search Paths &gt; Library Search Paths</strong></p>
<ul>
<li>Remove &#8220;$(SRCROOT)/../WikitudeAPI-SCM/build/Debug-iphoneos&#8221;</li>
<li>Remove &#8220;$(SRCROOT)/../../../Desktop/WikitudeAPI&#8221;</li>
</ul>
<p>Open WikitudeAPI_SCM_Test-Info.plist and edit the bundler identifier to match the domain used in your provisioning profile.</p>
<p><a href="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen3.png"><img class="alignnone size-medium wp-image-139" title="Wikitude Sample App Screen 3" src="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen3-300x188.png" alt="Wikitude Sample App Screen 3" width="300" height="188" /></a></p>
<p>Finally, make sure that Active Architecture setting in the build target drop down menu is set to armv6.</p>
<p><a href="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen4.png"><img class="alignnone size-medium wp-image-140" title="wikitude_sample_config_screen4" src="http://www.simple10.com/wp-content/uploads/2010/08/wikitude_sample_config_screen4-300x226.png" alt="" width="300" height="226" /></a></p>
<p>Click Build and Run.  The app should build, deploy, and automatically run on your connected iPhone.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/building-the-wikitude-sample-app-for-iphone-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macports to Homebrew</title>
		<link>http://www.simple10.com/macports-to-homebrew/</link>
		<comments>http://www.simple10.com/macports-to-homebrew/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 18:00:52 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://www.simple10.com/?p=130</guid>
		<description><![CDATA[Thanks to a new macbook pro with a clean OS install and minimal dev tools, I made the switch from macports to homebrew.  Easy enough with a few caveats. The homebrew people recommend uninstalling macports first. Then install homebrew. Everything worked fine until trying to &#8216;brew install imagemagick&#8216;.  The compilation fails.  This seems to be [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Thanks to a new macbook pro with a clean OS install and minimal dev tools, I made the switch from macports to homebrew.  Easy enough with a few caveats.</p>
<p>The homebrew people recommend <a title="Uninstall MacPorts" href="http://guide.macports.org/#installing.macports.uninstalling">uninstalling macports first</a>.</p>
<p>Then <a title="Install Homebrew" href="http://wiki.github.com/mxcl/homebrew/installation">install homebrew</a>.</p>
<p>Everything worked fine until trying to &#8216;<strong>brew install imagemagick</strong>&#8216;.  The compilation fails.  This seems to be a <a href="http://www.google.com/search?q=brew+install+imagemagick+fails&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a">common problem</a>.</p>
<p>The quick solution was to &#8216;<strong>sudo brew install imagemagick</strong>&#8216;.  Compilation worked.  However, sudo installing ghostscript after installing imagemagick failed to find the jpeg lib which was previously installed without sudo.  Yuck!</p>
<p>The final solution was to brew uninstall all image packages (jpeg, libtiff, ghostscript, etc.) and then run the following&#8230;</p>
<pre class="brush: bash;">
$ brew list
git
$ sudo brew install ghostscript
$ sudo brew install imagemagick
$ brew list
ghostscript    imagemagick    jpeg
little-cms     git        jasper        libtiff
pkg-config
</pre>
<p>I&#8217;m not sure if it&#8217;s possible to install ghostscript and imagemagick without using sudo.  I tried several times, and in the end sudo worked where other attempts failed.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/macports-to-homebrew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ordered Formsets in Google App Engine Patch</title>
		<link>http://www.simple10.com/google-app-engine-patch-django-formsets/</link>
		<comments>http://www.simple10.com/google-app-engine-patch-django-formsets/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 20:55:53 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Google App Engine]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[appenginepatch]]></category>
		<category><![CDATA[googleappengine]]></category>

		<guid isPermaLink="false">http://simple10.com/?p=105</guid>
		<description><![CDATA[The current version (1.1RC) of Google App Engine Patch does not allow for easy ordering of forms in formsets.  Normally, Django obeys a model&#8217;s Meta.ordering property as the default for formset data.  However, Google App Engine Patch fetches unordered data by default. There may already be an undocumented solution from the Google App Engine Patch [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The current version (1.1RC) of <a href="http://code.google.com/p/app-engine-patch/">Google App Engine Patch</a> does not allow for easy ordering of forms in formsets.  Normally, Django obeys a model&#8217;s Meta.ordering property as the default for formset data.  However, Google App Engine Patch fetches unordered data by default.<br />
<span id="more-105"></span><br />
There may already be an undocumented solution from the Google App Engine Patch team, but here&#8217;s a slick unobtrusive workaround that provides a lot of flexibility.</p>
<p>First off, we need a new Formset class and formset factory function &#8230;</p>
<pre class="brush: python;">
# formsets.py
from django.forms.models import inlineformset_factory
from django.forms.models import BaseInlineFormSet

class OrderedFormset(BaseInlineFormSet):
    def __init__(self, data=None, files=None, instance=None,
                 save_as_new=False, prefix=None):
        qs = ()
        if hasattr(self.form, 'Meta') and hasattr(self.form.Meta, 'ordering'):
            qs = instance.__getattribute__(self.model.__name__.lower()+'_set')
            for i in self.form.Meta.ordering:
                qs.order(i)
        self.instance = instance
        self.save_as_new = save_as_new
        super(BaseInlineFormSet, self).__init__(data, files, prefix=prefix, queryset=qs)

def orderedformset_factory(parent_model, model, **kwargs):
    kwargs['formset'] = OrderedFormset
    fs = inlineformset_factory(parent_model, model, **kwargs)
    return fs&lt;/pre&gt;
</pre>
<p>Usage is as simple as specifying formset_factory=orderedformset_factory for each formset field&#8230;</p>
<pre class="brush: python;">
&lt;pre&gt;# forms.py
from formsets import orderedformset_factory

class GuestForm(forms.ModelForm):
    confirmed = forms.BooleanField(required=False)
    class Meta:
        model = Guest
        ordering = ('first_name',)

class EventForm(forms.ModelForm):
    guests = FormSetField(Guest, form=GuestForm, extra=10, can_order=False, formset_factory=orderedformset_factory)
    class Meta:
        model = Event
        ordering = ('number',)
EventForm = FormWithSets(EventForm)
</pre>
</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/google-app-engine-patch-django-formsets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HiveMaps Makes Google Maps Easy</title>
		<link>http://www.simple10.com/hivemaps-makes-google-maps-easy/</link>
		<comments>http://www.simple10.com/hivemaps-makes-google-maps-easy/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 19:08:36 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[maps]]></category>

		<guid isPermaLink="false">http://simple10.com/?p=103</guid>
		<description><![CDATA[Just released HiveMaps.  An open source JavaScript framework for Google Maps that makes it super easy to put thousands of data points on a map.  HiveMaps supports client-side marker clustering, back button, dynamic marker lists, geocoding, embedding, and smart handling of overlapping markers. HiveMaps currently uses an improved version of MarkerClusterer available in the source [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Just released <a href="http://socialhive.org/hivemaps">HiveMaps</a>.  An open source JavaScript framework for Google Maps that makes it super easy to put thousands of data points on a map.  HiveMaps supports client-side marker clustering, back button, dynamic marker lists, geocoding, embedding, and smart handling of overlapping markers.</p>
<p>HiveMaps currently uses an improved version of <a href="http://googlegeodevelopers.blogspot.com/2009/04/markerclusterer-solution-to-too-many.html">MarkerClusterer</a> available in the <a href="http://code.google.com/p/hivemap/source/browse/trunk/js/markerclusterer.js">source code repo</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/hivemaps-makes-google-maps-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hat Creek Paragliding</title>
		<link>http://www.simple10.com/hat-creek-paragliding/</link>
		<comments>http://www.simple10.com/hat-creek-paragliding/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 19:52:35 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://simple10.com/?p=90</guid>
		<description><![CDATA[Hat Creek, California.  July 24-27, 2009.  Paragliding trip with Jeff Greenbaum and crew.  HD version viewable on Vimeo.]]></description>
			<content:encoded><![CDATA[<p></p><p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5868940&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5868940&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><br /></p>
<p><a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=hat+creek,+ca&amp;sll=42.939444,-104.369167&amp;sspn=0.576062,1.284027&amp;g=hat+creek&amp;ie=UTF8&amp;ll=40.805266,-121.507373&amp;spn=0.018613,0.040126&amp;t=h&amp;z=15&amp;iwloc=A">Hat Creek, California</a>.  July 24-27, 2009.  Paragliding trip with <a href="http://www.paragliding-lessons.com/">Jeff Greenbaum</a> and crew.  <a href="http://www.vimeo.com/5868940">HD version</a> viewable on Vimeo.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/hat-creek-paragliding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bay Area Backpacking</title>
		<link>http://www.simple10.com/bay-area-backpacking/</link>
		<comments>http://www.simple10.com/bay-area-backpacking/#comments</comments>
		<pubDate>Fri, 22 May 2009 19:17:57 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://simple10.com/?p=81</guid>
		<description><![CDATA[Google Map with trails Yolo County (Cache Creek) hiking &#38; camping Cache Creek BLM]]></description>
			<content:encoded><![CDATA[<p></p><ul>
<li><a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=2">Google Map with trails</a></li>
<li><a href="http://www.yolohiker.org/">Yolo County</a> (Cache Creek) hiking &amp; camping</li>
<li><a href="http://www.blm.gov/ca/st/en/fo/ukiah/cachecreek.html">Cache Creek BLM</a></li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simple10.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simple10.com/bay-area-backpacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
