<?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>canspice.org &#187; Site News</title>
	<atom:link href="http://www.canspice.org/category/geek-stuff/site-news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.canspice.org</link>
	<description>all about a canadian guy living in canada</description>
	<lastBuildDate>Sun, 05 Feb 2012 14:59:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>And we&#8217;re back!</title>
		<link>http://www.canspice.org/2010/08/17/and-were-back/</link>
		<comments>http://www.canspice.org/2010/08/17/and-were-back/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 17:56:15 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=1427</guid>
		<description><![CDATA[There were a couple of outages, but it looks like I&#8217;ve got things back to normal. Or what passes for normal. I&#8217;ve changed the theme to fusion. I&#8217;ve gone with the Akismet Plugin for handling spam comments, so I apologize in advance if any of your comments get flagged as spam. I&#8217;ll do my best [...]]]></description>
			<content:encoded><![CDATA[<p>There were a <a href="http://www.canspice.org/2010/08/17/possible-canspice-org-outages/">couple of outages</a>, but it looks like I&#8217;ve got things back to normal. Or what passes for normal.</p>
<p>I&#8217;ve changed the theme to <a href="http://digitalnature.ro/projects/fusion/">fusion</a>.</p>
<p>I&#8217;ve gone with the <a href="http://codex.wordpress.org/Plugins/Akismet">Akismet Plugin</a> for handling spam comments, so I apologize in advance if any of your comments get flagged as spam. I&#8217;ll do my best to go through the spam folder over the next few weeks to check for mis-classified comments.</p>
<p>I&#8217;ve also installed the <a href="http://wordpress.org/extend/plugins/wp-codebox/">WP-CodeBox</a> plugin, which lets me do things like this:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1427code2'); return false;">View Code</a> PERL</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p14272"><td class="code" id="p1427code2"><pre class="perl" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">=item B&lt;new&gt;
&nbsp;
Create a new instance of an C&lt;Astro::Flux&gt; object.
&nbsp;
  $flux = new Astro::Flux( $quantity, $type, $waveband );
&nbsp;
The first three parameters must be defined. They are:
&nbsp;
  quantity - numerical value for the flux, my be a primitive, or a
             C&lt;Number::Uncertainty&gt; object.
  type - type of flux. Can be any string.
  waveband - waveband for the given flux. Must be an C&lt;Astro::WaveBand&gt; object.
&nbsp;
If any of the parameters are undefined, the constructor will throw
an error. If the waveband parameter is not an C&lt;Astro::WaveBand&gt; object,
the constructor will throw an error.
&nbsp;
The type is case-insensitive for lookups using the C&lt;quantity&gt; method.
&nbsp;
A fourth optional argument may be passed; this is a hash containing
the following optional keys:
&nbsp;
  quality - an C&lt;Misc::Quality&gt; object denoting quality flags for the
    C&lt;Astro::Flux&gt; object.
  reference_waveband - an C&lt;Astro::WaveBand&gt; object denoting a reference
    waveband for the C&lt;Astro::Flux&gt; object. This is used for determining
    magnitudes when deriving them from C&lt;Astro::FluxColor&gt; objects. See
    C&lt;Astro::Fluxes&gt;.
  datetime - an C&lt;DateTime&gt; object which is the datetime of observation for the
    measurement in the C&lt;Astro::Flux&gt; object.
  obsid - An array reference to a list of observation identifiers. Can be
    used to identify the observation(s) from which this measurement was
    taken (e.g. from a filename).
&nbsp;
=cut</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">sub</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$proto</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$class</span> <span style="color: #339933;">=</span> <span style="color: #000066;">ref</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$proto</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #0000ff;">$proto</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$quantity</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$type</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$waveband</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">%args</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">@_</span><span style="color: #339933;">;</span>
&nbsp;
  croak <span style="color: #ff0000;">&quot;Quantity must be defined&quot;</span>
    <span style="color: #b1b100;">unless</span> <span style="color: #000066;">defined</span> <span style="color: #0000ff;">$quantity</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">unless</span> <span style="color: #009900;">&#40;</span> UNIVERSAL<span style="color: #339933;">::</span><span style="color: #006600;">isa</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$quantity</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;Number::Uncertainty&quot;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #0000ff;">$quantity</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Number<span style="color: #339933;">::</span><span style="color: #006600;">Uncertainty</span><span style="color: #009900;">&#40;</span> Value <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">$quantity</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  croak <span style="color: #ff0000;">&quot;Type must be defined&quot;</span>
    <span style="color: #b1b100;">unless</span> <span style="color: #000066;">defined</span> <span style="color: #0000ff;">$type</span><span style="color: #339933;">;</span>
&nbsp;
  croak <span style="color: #ff0000;">&quot;Waveband must be defined&quot;</span>
    <span style="color: #b1b100;">unless</span> <span style="color: #000066;">defined</span> <span style="color: #0000ff;">$waveband</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">unless</span> <span style="color: #009900;">&#40;</span> UNIVERSAL<span style="color: #339933;">::</span><span style="color: #006600;">isa</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$waveband</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;Astro::WaveBand&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #0000ff;">$waveband</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Astro<span style="color: #339933;">::</span><span style="color: #006600;">WaveBand</span><span style="color: #009900;">&#40;</span> Filter <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">$waveband</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$flux</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>QUANTITY<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span> <span style="color: #000066;">uc</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$type</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">$quantity</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
  <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>WAVEBAND<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$waveband</span><span style="color: #339933;">;</span>
  <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>TYPE<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #000066;">uc</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$type</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000066;">defined</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'quality'</span><span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span>
      UNIVERSAL<span style="color: #339933;">::</span><span style="color: #006600;">isa</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'quality'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;Misc::Quality&quot;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>QUALITY<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'quality'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000066;">defined</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'reference_waveband'</span><span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span>
      UNIVERSAL<span style="color: #339933;">::</span><span style="color: #006600;">isa</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'reference_waveband'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;Astro::WaveBand&quot;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>REFERENCE_WAVEBAND<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'reference_waveband'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000066;">defined</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'datetime'</span><span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span>
      UNIVERSAL<span style="color: #339933;">::</span><span style="color: #006600;">isa</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'datetime'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;DateTime&quot;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>TIME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'datetime'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000066;">defined</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'obsid'</span><span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #0000ff;">$flux</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>OBSID<span style="color: #009900;">&#125;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$args</span><span style="color: #009900;">&#123;</span><span style="color: #ff0000;">'obsid'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #000066;">bless</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$flux</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$class</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000066;">return</span> <span style="color: #0000ff;">$flux</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>As always, let me know if you notice any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2010/08/17/and-were-back/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Possible canspice.org outages</title>
		<link>http://www.canspice.org/2010/08/17/possible-canspice-org-outages/</link>
		<comments>http://www.canspice.org/2010/08/17/possible-canspice-org-outages/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 16:13:05 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=1423</guid>
		<description><![CDATA[I&#8217;m going to be switching around my WordPress installation in a few minutes. I know not many of you read this, and an outage of a few minutes will probably go unnoticed, but I thought I&#8217;d throw up a warning anyhow. For those who care, I&#8217;m switching from tarballs / standard installation to using Subversion. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to be switching around my WordPress installation in a few minutes. I know not many of you read this, and an outage of a few minutes will probably go unnoticed, but I thought I&#8217;d throw up a warning anyhow.</p>
<p>For those who care, I&#8217;m switching from tarballs / standard installation to using Subversion. Thus I&#8217;ll be able to update easier in the future (I hope).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2010/08/17/possible-canspice-org-outages/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Check check 1 2 3</title>
		<link>http://www.canspice.org/2010/07/23/check-check-1-2-3/</link>
		<comments>http://www.canspice.org/2010/07/23/check-check-1-2-3/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 20:02:53 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.canspice.org/2010/07/23/check-check-1-2-3/</guid>
		<description><![CDATA[Is this thing on? I&#8217;m trying out the WordPress iPhone app now. Maybe this means I can post proper posts instead of having weeks and weeks of twitter posts&#8230; &#8230;if I can get used to thumb-typing longer pieces of text, that is.]]></description>
			<content:encoded><![CDATA[<p>Is this thing on? I&#8217;m trying out the WordPress iPhone app now. Maybe this means I can post proper posts instead of having weeks and weeks of twitter posts&#8230;</p>
<p>&#8230;if I can get used to thumb-typing longer pieces of text, that is. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2010/07/23/check-check-1-2-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Now improved on mobile devices!</title>
		<link>http://www.canspice.org/2010/03/24/now-improved-on-mobile-devices/</link>
		<comments>http://www.canspice.org/2010/03/24/now-improved-on-mobile-devices/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 23:05:25 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wptouch]]></category>

		<guid isPermaLink="false">http://www.canspice.org/2010/03/24/now-improved-on-mobile-devices/</guid>
		<description><![CDATA[Visitors to canspice.org on mobile devices will now see a completely new interface, designed especially for those mobile devices. This was done with the WPtouch plugin. Let me know what you think!]]></description>
			<content:encoded><![CDATA[<p>Visitors to <a href="http://www.canspice.org">canspice.org</a> on mobile devices will now see a completely new interface, designed especially for those mobile devices. This was done with the <a href="http://www.bravenewcode.com/products/wptouch/">WPtouch plugin</a>. Let me know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2010/03/24/now-improved-on-mobile-devices/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A new look at canspice.org</title>
		<link>http://www.canspice.org/2009/08/28/a-new-look-at-canspice-org/</link>
		<comments>http://www.canspice.org/2009/08/28/a-new-look-at-canspice-org/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 19:02:14 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[arclite]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=1157</guid>
		<description><![CDATA[If you&#8217;re one of the few people who visit canspice.org instead of reading posts through my RSS feed, you&#8217;ve probably already noticed that things look a little different. That&#8217;s right, I&#8217;m now using the arclite theme by Digital Nature. I think it looks better than the previous theme I was using. Currently the only page [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re one of the few people who visit <a href="http://www.canspice.org/">canspice.org</a> instead of reading posts through <a href="http://feeds.feedburner.com/canspice">my RSS feed</a>, you&#8217;ve probably already noticed that things look a little different. That&#8217;s right, I&#8217;m now using the <a href="http://digitalnature.ro/projects/arclite/">arclite</a> theme by <a href="http://digitalnature.ro/">Digital Nature</a>. I think it looks better than the previous theme I was using.</p>
<p>Currently the only page that doesn&#8217;t seem to work is the <a href="http://www.canspice.org/archives/">archives</a> page. That&#8217;ll be fixed sometime in the future.</p>
<p>What do you think? Keep the colour or go back to the stark black &amp; white of yesterday?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2009/08/28/a-new-look-at-canspice-org/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I&#8217;m an FBI Blogger</title>
		<link>http://www.canspice.org/2009/03/22/im-an-fbi-blogger/</link>
		<comments>http://www.canspice.org/2009/03/22/im-an-fbi-blogger/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 22:00:21 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Hawaii]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[big island]]></category>
		<category><![CDATA[fbi blogs]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=979</guid>
		<description><![CDATA[No, not that FBI. FBI in this case stands for &#8220;From Big Island.&#8221; That&#8217;s right, I&#8217;m a blogger from the Big Island, and Damon Tucker has tagged me as one of the select few (okay, one of twenty-five) bloggers from the Big Island whose posts are going to be aggregated on FBI Blogs. If you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>No, not <a href="http://www.fbi.gov/">that FBI</a>. FBI in this case stands for &#8220;From Big Island.&#8221; That&#8217;s right, I&#8217;m a blogger from the <a href="http://www.bigisland.org/">Big Island</a>, and <a href="http://damontucker.wordpress.com/">Damon Tucker</a> has tagged me as one of the select few (okay, one of twenty-five) bloggers from the Big Island whose posts are going to be aggregated on <a href="http://fbiblogs.wordpress.com/">FBI Blogs</a>.</p>
<p>If you&#8217;re interested in news from the Big Island, or news from around the world with a Big Island perspective, check out the <a href="http://fbiblogs.wordpress.com/">FBI Blogs</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2009/03/22/im-an-fbi-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update your RSS readers!</title>
		<link>http://www.canspice.org/2009/01/21/update-your-rss-readers/</link>
		<comments>http://www.canspice.org/2009/01/21/update-your-rss-readers/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 04:55:13 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=849</guid>
		<description><![CDATA[If you subscribe to my blog via its RSS feed, please update your readers to point to http://feeds2.feedburner.com/canspice (for posts) and http://feeds2.feedburner.com/canspice-comments (for comments). I believe that things are supposed to forward automatically, but you never know with these things. It&#8217;s a small change, going from feeds to feeds2, but please make it! Why the [...]]]></description>
			<content:encoded><![CDATA[<p>If you subscribe to my blog via its RSS feed, please update your readers to point to http://feeds2.feedburner.com/canspice (for posts) and http://feeds2.feedburner.com/canspice-comments (for comments). I believe that things are supposed to forward automatically, but you never know with these things.</p>
<p>It&#8217;s a small change, going from feeds to feeds2, but please make it! Why the change? So I can serve up evil nasty ads and help offset some of the cost of canspice.org, which is currently (only) about $100 a year. Ads should only show up on posts longer than about 100 words, so this one might slip in ad-free.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2009/01/21/update-your-rss-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes afoot</title>
		<link>http://www.canspice.org/2009/01/14/changes-afoot/</link>
		<comments>http://www.canspice.org/2009/01/14/changes-afoot/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 17:43:03 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[blogroll]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=825</guid>
		<description><![CDATA[Astute readers may have noticed that last night I switched themes here on canspice.org. The new theme is named iNove. This theme allows me to put in a sidebar, which is something I&#8217;ve been meaning to do for a while but haven&#8217;t got around to it. I have since discovered that commenting appears to be [...]]]></description>
			<content:encoded><![CDATA[<p>Astute readers may have noticed that last night I switched themes here on <a href="http://www.canspice.org/">canspice.org</a>. The new theme is named <a href="http://wordpress.org/extend/themes/inove">iNove</a>. This theme allows me to put in a sidebar, which is something I&#8217;ve been meaning to do for a while but haven&#8217;t got around to it.</p>
<p>I have since discovered that commenting appears to be slightly broken in that most legitimate comments are ending up classified as spam. I&#8217;m working on fixing this, and have approved the four comments that I&#8217;ve found so far. If your comment hasn&#8217;t come through, <a href="mailto:brad.cavanagh@gmail.com">email me</a>.</p>
<p>I&#8217;ve also trimmed up my blogroll. If you think you should be on it, let me know!</p>
<p>And just to keep things current, I&#8217;ve updated to WordPress 2.7!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2009/01/14/changes-afoot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Twitter!</title>
		<link>http://www.canspice.org/2008/06/20/hello-twitter/</link>
		<comments>http://www.canspice.org/2008/06/20/hello-twitter/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 20:43:42 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=549</guid>
		<description><![CDATA[I&#8217;ve just installed Alex King&#8216;s Twitter Tools plugin. If all goes well, something to do with this post should show up on my Twitter thingie. Edit: Holy shit it worked!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just installed <a href="http://alexking.org/">Alex King</a>&#8216;s <a href="http://wordpress.org/extend/plugins/twitter-tools/">Twitter Tools</a> plugin. If all goes well, something to do with this post should show up on <a href="http://twitter.com/CanSpice">my Twitter thingie</a>.</p>
<p><strong>Edit</strong>: Holy shit it worked!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2008/06/20/hello-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello Facebook!</title>
		<link>http://www.canspice.org/2008/06/20/hello-facebook/</link>
		<comments>http://www.canspice.org/2008/06/20/hello-facebook/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 20:36:51 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.canspice.org/?p=548</guid>
		<description><![CDATA[This is directed to those of you who might only read these notes on Facebook. You may (or may not, which is more likely) be interested to know that I don&#8217;t write these on Facebook; they get pulled over from my blaugh at www.canspice.org. If you&#8217;re at all interested in following along, I suggest subscribing [...]]]></description>
			<content:encoded><![CDATA[<p>This is directed to those of you who might only read these notes on <a href="http://www.facebook.com/">Facebook</a>. You may (or may not, which is more likely) be interested to know that I don&#8217;t write these on Facebook; they get pulled over from my <a href="http://en.wikipedia.org/wiki/Blog">blaugh</a> at <a href="http://www.canspice.org/">www.canspice.org</a>.</p>
<p>If you&#8217;re at all interested in following along, I suggest subscribing to <a href="http://feeds.feedburner.com/canspice">my RSS feed</a>. What is <a href="http://en.wikipedia.org/wiki/RSS">RSS</a>? It&#8217;s a standard way for websites (and other such technologies) to publish updates automatically, and software polls RSS feeds on a periodic basis to retrieve these updates. Using an <a href="http://en.wikipedia.org/wiki/Aggregator">aggregator</a> (also referred to as an RSS reader or news reader), you can keep up-to-date with a number of websites at the same time without having to visit them individually. Personally, I use <a href="http://www.vienna-rss.org/vienna2.php">Vienna</a> on OS X. Other OS X RSS readers include <a href="http://www.newsgator.com/INDIVIDUALS/NETNEWSWIRE/">NetNewsWire</a> and <a href="http://www.newsfirerss.com/">NewsFire</a>. Web-based RSS readers include <a href="http://www.google.com/reader/">Google Reader</a>, which allows you to access your RSS feeds from any Internet-connected computer.</p>
<p>So Facebook readers, you don&#8217;t need to follow along on Facebook, you can use a separate program and collect updates from all kinds of websites in one convenient location!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.canspice.org/2008/06/20/hello-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

