<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>I'd Rather Be Caching</title>
	<atom:link href="http://bcaching.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bcaching.wordpress.com</link>
	<description>Geocaching, for the thrill of the hunt.</description>
	<lastBuildDate>Fri, 23 Oct 2009 18:28:49 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='bcaching.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7b9ab1e26b28581dd5619905e43c4e27?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>I'd Rather Be Caching</title>
		<link>http://bcaching.wordpress.com</link>
	</image>
			<item>
		<title>BCaching API</title>
		<link>http://bcaching.wordpress.com/2009/10/23/bcaching-api/</link>
		<comments>http://bcaching.wordpress.com/2009/10/23/bcaching-api/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 18:12:10 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=260</guid>
		<description><![CDATA[The bcaching API is intended for use by mobile geocaching apps to retrieve geocache data and have access to a large repository of geocache data without needing to store it all on the device itself. Response data for all requests except for &#8220;login&#8221; is in the standard GPX format.
Request format is
http://(www&#124;test).bcaching.com/api/q.ashx?u=&#60;username&#62;&#38;{{REQUEST}}&#38;time=&#60;current-time&#62;&#38;sig=&#60;signature&#62;
where:

username is a valid bcaching.com [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=260&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The bcaching API is intended for use by mobile geocaching apps to retrieve geocache data and have access to a large repository of geocache data without needing to store it all on the device itself. Response data for all requests except for &#8220;login&#8221; is in the standard GPX format.</p>
<p>Request format is<br />
http://(www|test).bcaching.com/api/q.ashx?u=&lt;username&gt;&amp;{{REQUEST}}&amp;time=&lt;current-time&gt;&amp;sig=&lt;signature&gt;<br />
where:</p>
<ul>
<li><strong>username </strong>is a valid <a href="http://bcaching.com/" target="_blank">bcaching.com</a> username</li>
<li><strong>current-time</strong> is the current mobile device time in &#8220;java&#8221; milliseconds (i.e. java.util.Date.getTime) or equivalent</li>
<li><strong>signature</strong> is an md5 hash of the querystring plus an md5 hash of the bcaching user&#8217;s password.</li>
</ul>
<p><strong>{{REQUEST}}</strong> can be one of the following:</p>
<ul>
<li><em>Verify login only: </em><strong>a=login</strong><br />
Does nothing more than return success or failure based on the validation of the username password/hashword.</li>
</ul>
<ul>
<li><em>Find nearest caches (Summary):</em> <strong>a=find</strong>&amp;lat=&lt;latitude&gt;&amp;lon=&lt;longitude&gt;&amp;find=&lt;find&gt;&amp;maxdistance=&lt;max-distance&gt;&amp;maxcount=&lt;max-count&gt;<br />
Returns summary-only gpx data &#8212; with no short or long descriptions, extra waypoints, logs, etc.</p>
<ul>
<li><strong>latitude </strong>is the latitude in signed degree decimal form i.e. 40.123456</li>
<li><strong>longitude </strong>is the longitude in signed degree decimal form i.e. -74.987654</li>
<li><strong>find</strong> is a URL-encoded string to search for caches by waypoint# (with or without the GC prefix) or partial name match.</li>
<li><strong>max-distance</strong> is optional and specifies the maximum distance in degrees. Default is 0.3 &#8211; about 30 miles</li>
<li><strong>max-count </strong>is optional and specifies the maximum number of nearest caches to return in the gpx data. Default is 50.</li>
</ul>
</li>
</ul>
<ul>
<li><em>Get cache detail</em>: <strong>a=detail</strong>&amp;ids=&lt;cache-id-list&gt;&amp;desc=&lt;description-mode&gt;&amp;wpts=&lt;wpts&gt;&amp;logs=&lt;logs&gt;&amp;tbs=&lt;tbs&gt;<br />
Returns detailed gpx data for one or more caches</p>
<ul>
<li><strong>cache-id-list </strong>is a comma-separated list of cache ids (not waypoint numbers). Cache ids are included in the summary gpx request.</li>
<li><strong>description-mode </strong>indicates what form to send the description and can be one of the following:
<ul>
<li><strong>none</strong>: neither short nor long description is included</li>
<li><strong>short</strong>: short description is included, converted to text if was html</li>
<li><strong>long</strong>: short and long description are included, converted to text they were html</li>
<li><strong>html</strong>: full original short and long descriptions are included</li>
</ul>
</li>
<li><strong>wpts</strong> is a flag indicating whether or not additional waypoints should be included: 0 = no waypoints (default), 1 = include waypoints</li>
<li><strong>logs</strong> is the maximum number of logs to include: 0 = none (default), 1 or more indicates the maximum number</li>
<li><strong>tbs</strong> is a flag indicating whether or not cache inventory should be included: 0 = no waypoints (default), 1 = include TBs</li>
</ul>
</li>
</ul>
<ul>
<li><em>Get nearest caches (Detail):</em> a=nearest&amp;maxcount=&lt;max-count&gt;&amp;desc=&lt;description-mode&gt;&amp;wpts=&lt;wpts&gt;&amp;logs=&lt;logs&gt;&amp;tbs=&lt;tbs&gt;
<ul>
<li><strong>max-count </strong>is optional and specifies the maximum number of nearest caches to return in the gpx data. Default is 30.</li>
<li>all other parameters (desc, wpts, logs, tbs) are identical to <em>Get cache detail</em> section.</li>
</ul>
</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/260/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=260&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/10/23/bcaching-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>Server Outage</title>
		<link>http://bcaching.wordpress.com/2009/09/25/server-outage-2/</link>
		<comments>http://bcaching.wordpress.com/2009/09/25/server-outage-2/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 20:54:33 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=253</guid>
		<description><![CDATA[The hosting provider for bcaching.com is experiencing issues with the database server and is actively working to bring it back online.
I will post updates here as they become available.
15:15 MST: Root cause was an issue with the database server RAID hardware (guess it was hardware related after all!) The solution involved RAID card replacement, RAID [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=253&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The hosting provider for bcaching.com is experiencing issues with the database server and is actively working to bring it back online.</p>
<p>I will post updates here as they become available.</p>
<p>15:15 MST: Root cause was an issue with the database server RAID hardware (guess it was hardware related after all!) The solution involved RAID card replacement, RAID and Motherboard BIOS updates, and a full filesystem checkdisk. Although the site is back online, the DB server is running a RAID rebuild which may slow performance somewhat.</p>
<p>15:10 MST: Server is coming back online now.</p>
<p>14:50 MST: Doesn&#8217;t appear to be a hardware error. There was disk corruption error in a database log file (not the bcaching database).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/253/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=253&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/09/25/server-outage-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>BCaching Release 0.6</title>
		<link>http://bcaching.wordpress.com/2009/09/21/bcaching-release-0-6/</link>
		<comments>http://bcaching.wordpress.com/2009/09/21/bcaching-release-0-6/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 13:35:26 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=251</guid>
		<description><![CDATA[The latest release has been completed and includes some cool new features including Custom Waypoints, Desktop Map &#8220;Universal Search&#8221;, Mobile Coordinates Conversion, Geolocation support, and more!
See the forum post for full details
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=251&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The latest release has been completed and includes some cool new features including Custom Waypoints, Desktop Map &#8220;Universal Search&#8221;, Mobile Coordinates Conversion, Geolocation support, and more!</p>
<p>See the <a href="http://www.bcaching.com/forums/viewtopic.php?f=2&amp;t=76">forum post</a> for full details</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=251&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/09/21/bcaching-release-0-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>Upcoming Release</title>
		<link>http://bcaching.wordpress.com/2009/09/09/upcoming-release/</link>
		<comments>http://bcaching.wordpress.com/2009/09/09/upcoming-release/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 03:43:41 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=249</guid>
		<description><![CDATA[I&#8217;ve been busy working on a bunch of features lately so the upcoming release is a bit more significant in scope than earlier ones have been. As a consequence the chance of bugs and issues associated with the release are increased as well.
Unfortunately my testing team currently consists of &#8230; well, myself and I would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=249&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been busy working on a bunch of features lately so the upcoming release is a bit more significant in scope than earlier ones have been. As a consequence the chance of bugs and issues associated with the release are increased as well.</p>
<p>Unfortunately my testing team currently consists of &#8230; well, myself and I would appreciate any help I could get from a few real users before I unleash a big mess on everyone. So if you would be interested in participating in some pre-release testing, jump over to the <a href="http://www.bcaching.com/forums/viewtopic.php?f=2&amp;t=72">forum post </a>for more details.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=249&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/09/09/upcoming-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>BCaching Release 0.5.1</title>
		<link>http://bcaching.wordpress.com/2009/08/18/bcaching-release-0-5-1/</link>
		<comments>http://bcaching.wordpress.com/2009/08/18/bcaching-release-0-5-1/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 03:20:27 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=247</guid>
		<description><![CDATA[This release fixes a couple of GPX file export issues that were causing problems with CacheBerry and BlackStar Navigation.
There is also a new GPX link on the mobile Nearest Caches page that will export geocache data for up to 20 nearest caches at once. If CacheBerry is installed it will process the GPX export automatically [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=247&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This release fixes a couple of GPX file export issues that were causing problems with <a href="http://www.cacheberry.com/">CacheBerry</a> and <a href="http://www.blackstarnavigation.com/">BlackStar Navigation</a>.</p>
<p>There is also a new GPX link on the mobile Nearest Caches page that will export geocache data for up to 20 nearest caches at once. If CacheBerry is installed it will process the GPX export automatically without need for an intermediate save.</p>
<p>There are a few other minor changes. Full details are on the <a href="http://www.bcaching.com/forums/viewtopic.php?f=2&amp;t=64&amp;p=176">forums</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=247&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/08/18/bcaching-release-0-5-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>bcaching or www.bcaching?</title>
		<link>http://bcaching.wordpress.com/2009/08/07/bcaching-or-www-bcaching/</link>
		<comments>http://bcaching.wordpress.com/2009/08/07/bcaching-or-www-bcaching/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 12:57:36 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=244</guid>
		<description><![CDATA[If you&#8217;re using &#8220;http://bcaching.com&#8221; instead of &#8220;http://www.bcaching.com&#8221; your browser will be redirected to the www version from now on. You will probably need to login again the first time it happens. Please update any of your bookmarks to use the www. version instead.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=244&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you&#8217;re using &#8220;http://bcaching.com&#8221; instead of &#8220;http://www.bcaching.com&#8221; your browser will be redirected to the www version from now on. You will probably need to login again the first time it happens. Please update any of your bookmarks to use the www. version instead.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/244/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=244&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/08/07/bcaching-or-www-bcaching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>Server Outage</title>
		<link>http://bcaching.wordpress.com/2009/08/01/server-outage/</link>
		<comments>http://bcaching.wordpress.com/2009/08/01/server-outage/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 11:49:49 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=239</guid>
		<description><![CDATA[You may have noticed BCaching is down Saturday morning (the worst possible time?). The hosting provider had some scheduled maintenance this morning that was supposed to be relatively short but they ran into some unforeseen difficulties. Rest assured they are working to restore the server as soon as possible. I apologize for the inconvenience.
- Update [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=239&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You may have noticed BCaching is down Saturday morning (the worst possible time?). The hosting provider had some scheduled maintenance this morning that was supposed to be relatively short but they ran into some unforeseen difficulties. Rest assured they are working to restore the server as soon as possible. I apologize for the inconvenience.</p>
<p>- Update 5:30 pm</p>
<p>Yes, the site is still down. Turns out there was a RAID disk controller failure during the migration from the old disks to the new disks (the new disks were the scheduled maintenance). When the controller failed it caused some corruption and the only way to get the system back up and running is with a &#8220;bare metal restore&#8221;. As of 3pm MST it had been running for over 6 hours and was 87% complete.</p>
<p>- Update 6:30 pm</p>
<p>And it&#8217;s back!! They are proceeding with the disk migration which may cause things to respond a little slower than usual but everything should be functional again.  We cached all day **without** bcaching&#8230; it was painful.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=239&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/08/01/server-outage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>Puzzle Solving 101</title>
		<link>http://bcaching.wordpress.com/2009/07/31/puzzle-solving-101/</link>
		<comments>http://bcaching.wordpress.com/2009/07/31/puzzle-solving-101/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 22:29:30 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Puzzle Caches]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=236</guid>
		<description><![CDATA[Here&#8217;s a great series of Puzzle Caches by ePeterso2 in a lesson format. The location is Ft. Lauderdale, Florida, but you can still solve them remotely and post a note that you did it. Maybe you&#8217;ll even be in Ft. Lauderdale at some point and can find them too. Either way they&#8217;re good practice for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=236&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s a <a href="http://www.geocaching.com/bookmarks/view.aspx?guid=37f3d8f3-62ba-40ac-b0ef-901807ba9c98">great series of Puzzle Caches </a>by <strong><span><a href="http://www.geocaching.com/profile/?guid=81d1fa94-2c48-4781-ac03-04137203ca81">ePeterso2</a></span> </strong>in a lesson format. The location is Ft. Lauderdale, Florida, but you can still solve them remotely and post a note that you did it. Maybe you&#8217;ll even be in Ft. Lauderdale at some point and can find them too. Either way they&#8217;re good practice for solving puzzles no matter where you are.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=236&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/07/31/puzzle-solving-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
		<item>
		<title>Garmin Custom Waypoint Symbols</title>
		<link>http://bcaching.wordpress.com/2009/07/28/garmin-custom-waypoint-symbols/</link>
		<comments>http://bcaching.wordpress.com/2009/07/28/garmin-custom-waypoint-symbols/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 14:00:29 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[garmin]]></category>
		<category><![CDATA[geocaching]]></category>
		<category><![CDATA[symbols]]></category>
		<category><![CDATA[waypoint]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=222</guid>
		<description><![CDATA[You can use BCaching to send geocaching waypoints to your Garmin device using custom geocaching waypoint symbols that differentiate cache type (Traditional, Multi-Cache, Mystery Cache, Letterbox, etc.) using the following symbol set:

First you must load the custom symbols onto your device (see below), then to use the custom symbols, go to the BCaching Desktop Map [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=222&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You can use BCaching to send geocaching waypoints to your Garmin device using custom geocaching waypoint symbols that differentiate cache type (Traditional, Multi-Cache, Mystery Cache, Letterbox, etc.) using the following symbol set:</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-224" title="Custom Symbols" src="http://bcaching.files.wordpress.com/2009/07/custom-symbols.png?w=170&#038;h=92" alt="Custom Symbols" width="170" height="92" /></p>
<p style="text-align:left;">First you must load the custom symbols onto your device (see below), then to use the custom symbols, go to the BCaching <a href="http://www.bcaching.com/Map.aspx" target="_blank">Desktop Map View</a>, find the location you want to use as the center of the geocache data to load. Click [Send to Garmin Device] at the bottom of the page, then choose [Custom Waypoint Symbols] and follow the rest of the instructions on that page to finish.</p>
<p style="text-align:left;">Note that using Custom symbols will limit the Geocaching &#8220;functionality&#8221; built into some Garmin devices since only one symbol can be designated as a  &#8220;Geocache&#8221; that can be marked &#8220;Found&#8221;. If you want to retain that functionality for all geocache types then don&#8217;t use this feature. If you want to designate one of the custom symbols as a Geocache (such as the symbol for Traditional since they&#8217;re the most common), use the the Geocache Setup function on your device (on the 60CSx: Find =&gt; Geocache =&gt; Menu =&gt; Geocache Setup) and change the Find symbol.</p>
<h3 style="text-align:left;">Loading Symbols onto your Garmin Device</h3>
<ol>
<li>To load the custom symbols into your Garmin device, you must first download and install <a href="http://www8.garmin.com/support/download_details.jsp?id=545" target="_blank">Garmin&#8217;s xImage utility</a> (for Windows 2000 or later only).</li>
<li>Then download the Custom <a href="http://www.bcaching.com/Pub/Custom%20Waypoint%20Symbols.zip">Waypoint Symbols ZIP file</a> and extract them to a temporary folder on your computer.</li>
<li> Connect your Garmin device to your computer and turn it on.</li>
<li> Run the xImage program and click [Next] on the Welcome page.</li>
<li> On the Device Settings page, click [Find Device] to identity and select your device, then click [Next].</li>
<li> Click [Send images to the GPS] and click [Next].</li>
<li> Click [Select All] to highlight all Waypoint Symbols then click [Next].</li>
<li> Browse for and select the Custom Waypoint Symbols folder from where you extracted the ZIP file and click [OK]. xImage will then send the images to your device.</li>
<li> Click [Finish] to exit.</li>
</ol>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/222/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=222&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/07/28/garmin-custom-waypoint-symbols/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>

		<media:content url="http://bcaching.files.wordpress.com/2009/07/custom-symbols.png" medium="image">
			<media:title type="html">Custom Symbols</media:title>
		</media:content>
	</item>
		<item>
		<title>BCaching Release 0.5</title>
		<link>http://bcaching.wordpress.com/2009/07/18/bcaching-release-0-5/</link>
		<comments>http://bcaching.wordpress.com/2009/07/18/bcaching-release-0-5/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 14:52:17 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Paperless Caching]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[garmin]]></category>
		<category><![CDATA[geocaching]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[paperless]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://bcaching.wordpress.com/?p=216</guid>
		<description><![CDATA[Release 0.5 includes a few new Desktop Map features (no mobile enhancements with this release)

 Desktop Map now includes a Filter panel that allows filtering of geocache types, containers, terrain, difficulty and more.
 You can now download a summary GPX file (up to 999 waypoints) based on the current filter. The GPX file may be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=216&subd=bcaching&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Release 0.5 includes a few new Desktop Map features (no mobile enhancements with this release)</p>
<ul>
<li> Desktop Map now includes a Filter panel that allows filtering of geocache types, containers, terrain, difficulty and more.</li>
<li> You can now download a summary GPX file (up to 999 waypoints) based on the current filter. The GPX file may be used in Google Earth or to send to your GPS device. The summary includes additional waypoints, but it does not include descriptions or logs. Enter the maximum number of waypoints (default is 500) and click the [Download GPX] button at the bottom of the Desktop Map page.</li>
<li> You can also <strong>send cache data directly to your Garmin device</strong> using the Garmin Communicator web plug-in. It also uses the current filter and sends the same information that would be sent in the GPX file. To begin, click the [Send to Garmin Device] button at the bottom of the Desktop Map page.</li>
</ul>
<p>If you encounter any issues, please post them on the <a href="http://www.bcaching.com/forums/viewtopic.php?f=2&amp;t=47">forum</a>.</p>
<p>- Update 7.28.2009</p>
<p>This wasn&#8217;t quite ready last week, but now you can also send waypoints to your Garmin using <strong>Custom Waypoint Symbols </strong>that represent cache type: traditional, multi, letterbox, mystery, etc. See the <a href="http://bcaching.wordpress.com/2009/07/28/garmin-custom-waypoint-symbols/">follow-up post </a>for details.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bcaching.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bcaching.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bcaching.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bcaching.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bcaching.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bcaching.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bcaching.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bcaching.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bcaching.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bcaching.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bcaching.wordpress.com&blog=4417731&post=216&subd=bcaching&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bcaching.wordpress.com/2009/07/18/bcaching-release-0-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4dc696b8d13ceb9f001a7e92b4c5c753?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mark</media:title>
		</media:content>
	</item>
	</channel>
</rss>