<?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>parabola.ca &#187; Updates</title>
	<atom:link href="http://www.parabola.ca/category/updates/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.parabola.ca</link>
	<description>Online Home of Steve Almond</description>
	<lastBuildDate>Sat, 03 Sep 2011 00:54:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>First Post from WordPress for BlackBerry</title>
		<link>http://www.parabola.ca/2009/09/first-post-from-wordpress-for-blackberry/</link>
		<comments>http://www.parabola.ca/2009/09/first-post-from-wordpress-for-blackberry/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 04:44:31 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.parabola.ca/?p=248</guid>
		<description><![CDATA[<p>I&#8217;m doing a massive rehaul around here, foremost being a switch to the WordPress blogging platform from a very outdated version of b2evolution.  I&#8217;ve been using WP for Steve&#8217;s Buffyverse Timeline and have been extremely satisfied. I also love the WordPress for BlackBerry app for doing posts while on the go, which I can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m doing a massive rehaul around here, foremost being a switch to the WordPress blogging platform from a very outdated version of b2evolution.  I&#8217;ve been using WP for <a href="http://www.buffytimeline.com"  alt="Steve's Buffyverse Timeline">Steve&#8217;s Buffyverse Timeline</a> and have been extremely satisfied. I also love the <a href="http://blackberry.wordpress.org"  alt="WordPress for BlackBerry">WordPress for BlackBerry</a> app for doing posts while on the go, which I can make use of during the film fest.</p>
<p>So this is just a quick test of things &#8230; I still have lots to do!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2009/09/first-post-from-wordpress-for-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unhappy Blogger</title>
		<link>http://www.parabola.ca/2006/01/unhappy-blogger/</link>
		<comments>http://www.parabola.ca/2006/01/unhappy-blogger/#comments</comments>
		<pubDate>Mon, 23 Jan 2006 00:32:35 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=49</guid>
		<description><![CDATA[<p>Spammers, you can fuck off and die.  Of course, you&#8217;re not likely to be reading this since it&#8217;s your automated scripts that are doing the dirty work, but the point stands.</p>
<p>I got sick and tired of the comment spam over the past few weeks.  I guess once you&#8217;ve been identified as using open [...]]]></description>
			<content:encoded><![CDATA[<p>Spammers, you can fuck off and die.  Of course, you&#8217;re not likely to be reading this since it&#8217;s your automated scripts that are doing the dirty work, but the point stands.</p>
<p>I got sick and tired of the comment spam over the past few weeks.  I guess once you&#8217;ve been identified as using open commenting on a common blog system (in my case, b2evolution) it doesn&#8217;t take long before you&#8217;re completely inundated.  I did a pretty good job of deleting them daily, so you may not have even seen any of the offending posts.</p>
<p>The anti-spam feature of b2evolution turned out to be pretty useless; the central blacklist that we can check against and submit to is a nice idea, but there&#8217;s just countless new domains popping up.  The next logical measure was to turn off commenting except for registered users (not that anyone is posting legitimate comments nowadays, though).  Unbelievably, after much searching in the admin tool and the rest of the Interweb, nothing like this seemed to exist!  Even just a simple thing like disabling comments for everyone is only done on a post-by-post basis.</p>
<p>I decided to check out the code myself and luckily enough the changes I wanted were fairly easy to make.  So for any other frustrated souls out there, hopefully the following is useful.</p>
<p>The first step was to foil the comment-posting bots.  You may have already tried renaming your <code>htsrv</code> directory and some other steps to prevent them from posting directly to the post-handling programs, but even that only works for so long.  But either way, make this change to your <code>comment_post.php</code></p>
<pre>if( is_logged_in() )
{ // User is logged in, we'll use his ID
$author_ID = $current_User-&gt;ID;
$author = NULL;
$email = NULL;
$url = NULL;
}
else
{	// User is not logged in, we need some id info from him:
// <strong>NEW</strong> - add error message if not logged in
errors_add( T_('Only registered users may post comments') );
// <strong>NEW</strong> - comment out everything else if not logged in
/*	$author_ID = NULL;
if ($require_name_email)
{ // Blog wants Name and EMail with comments
if( empty($author) )
errors_add( T_('Please fill in the name field') );
if( empty($email) )
errors_add( T_('Please fill in the email field') );
}
if( (!empty($email)) &amp;&amp; (!is_email($email)) )
{
errors_add( T_('Supplied email address is invalid') );
}
<em> add 'http:</em>' if no protocol defined for URL
$url = ((!stristr($url, '://'))
&amp;&amp; ($url != '')) ? 'http://' . $url : $url;
if( strlen($url) &lt; 7 ){
$url = '';
}
if( $error =
validate_url( $url, $comments_allowed_uri_scheme ) )
{
errors_add( T_('Supplied URL is invalid: ') . $error );
}
*/
}</pre>
<p>Really simple!  If the user is not logged in, add the error message and comment out the rest (or delete, but it&#8217;s nice leaving in the original code for later reference if need be).  By flagging the error, this will prevent code later in the file from adding the comment to the database.</p>
<p>It&#8217;s been the better part of a week since I made this change, and the spam-free existence has been wonderful!</p>
<p>Now, if you want to be real user-friendly about things, recall that on the default comment page if the person is not logged in they can leave a comment as a &#8216;Visitor&#8217;.  If they go to the trouble of typing up a nice long message for you and hit submit, the above change will present them with the new error message.  It might be nice to warn them beforehand and not waste their time.</p>
<p>So in this next bit, I&#8217;ll describe (the code is too long to copy, paste, &amp; format properly, so just read carefully) a few changes to make to your <code>skins/_feedback.php</code> file.  Find the section that begins with</p>
<pre>&lt;!-- form to add a comment --&gt;</pre>
<p>Move the following</p>
<pre>&lt;form action=...
&lt;input type= ....
&lt;input type= ....</pre>
<p>a few lines below, to <strong>within</strong> and above the existing contents of the block that starts with</p>
<pre>if( is_logged_in() )
{ // User is logged in:</pre>
<p>Then, after this IF-ELSE block is the rest of the HTML for the comment form.  Cut everything form <code>form_textarea( ...</code> all the way down to where you find the <code>&lt;/form&gt;</code> tag and paste it within the <code>if( is_logged_in() )</code> block, below what was already there.  Finally, within the ELSE portion of the block, comment out or delete what was already there and do something like</p>
<pre>else
{ // User is not loggued in:
?&gt;
&lt;div class="bComment"&gt;&lt;p&gt;Only registered users may submit comments.
&lt;/p&gt;&lt;/div&gt;
&lt;?php
}</pre>
<p>If you still want to allow anonymous comments in some fashion, this is what I did:  I created another, dummy, user account and put the login and password info in my message above.  It&#8217;s a bit more work for the user, but if they&#8217;re really against registering then this still gives them the option to post.  And if this setup gets abused, it&#8217;s easy enough to just delete the dummy account.</p>
<p>Hopefully I&#8217;ve described everything clear enough, but if you have any questions then feel free to contact me.  I&#8217;d be happy to help in your fight against spam.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2006/01/unhappy-blogger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DVD Updates</title>
		<link>http://www.parabola.ca/2006/01/dvd-updates/</link>
		<comments>http://www.parabola.ca/2006/01/dvd-updates/#comments</comments>
		<pubDate>Wed, 11 Jan 2006 04:00:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=50</guid>
		<description><![CDATA[<p>It seemed like a quick task: update my DVD list for some people looking to borrow some stuff.  Turns out it was much more out of date than I remembered.  For those who have already browsed through my collection, here&#8217;s the new stuff:</p>

A Very Long Engagement
Angel &#8211; Season 5
Back the the Future: The [...]]]></description>
			<content:encoded><![CDATA[<p>It seemed like a quick task: update my <a href="http://www.parabola.ca/page.php?disp=dvds">DVD list</a> for some people looking to borrow some stuff.  Turns out it was much more out of date than I remembered.  For those who have already browsed through my collection, here&#8217;s the new stuff:</p>
<ul class="dvds">
<li>A Very Long Engagement</li>
<li>Angel &#8211; Season 5</li>
<li>Back the the Future: The Complete Trilogy</li>
<li>Bend it Like Beckham</li>
<li>Corner Gas &#8211; Season 2</li>
<li class="c">Dirty Pretty Things</li>
<li>Family Guy &#8211; Volume 3</li>
<li>Gilmore Girls &#8211; Seasons 4-5</li>
<li>He-Man and the Masters of the Universe: The 10 Best Episodes</li>
<li>Lost &#8211; Season 1</li>
<li>Lost in Translation</li>
<li class="c">Mean Girls</li>
<li class="c">Napoleon Dynamite</li>
<li>Office Space</li>
<li>The Ren and Stimpy Show: The First and Second Seasons</li>
<li>Serenity</li>
<li class="c">Sex and the City &#8211; Season 4</li>
<li class="c">Shrek 2</li>
<li>The Simpsons &#8211; Seasons 6-7</li>
<li>Star Wars III: Revenge of the Sith</li>
<li>Star Wars: Clone Wars &#8211; Volume 2</li>
<li>Toy Story</li>
</ul>
<p>I&#8217;m also in the process of obtaining Six Feet Under and the remaining Sex and the City seasons.  Plus my birthday&#8217;s not too far off and I&#8217;m pretty easy to shop for (a bunch of the above were xmas gifts).  And with a gift card (courtesy of work at xmas time) good at a number of malls and some handy $$-saving HMV coupons, I&#8217;ll be adding even more in the not so distant future!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2006/01/dvd-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Late Than Never</title>
		<link>http://www.parabola.ca/2005/10/better-late-than-never/</link>
		<comments>http://www.parabola.ca/2005/10/better-late-than-never/#comments</comments>
		<pubDate>Tue, 01 Nov 2005 03:47:39 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=64</guid>
		<description><![CDATA[<p>It only took about four and two months respectively, but I&#8217;ve finally added pictures from my other two weddings of the summer!  I might even keep up the momentum and get some other stuff posted in the coming days (it would at least be an appropriate time for last year&#8217;s Hallowe&#8217;en party pics).</p>
<p>Click for [...]]]></description>
			<content:encoded><![CDATA[<p>It only took about four and two months respectively, but I&#8217;ve finally added pictures from my other two weddings of the summer!  I might even keep up the momentum and get some other stuff posted in the coming days (it would at least be an appropriate time for last year&#8217;s Hallowe&#8217;en party pics).</p>
<p>Click for the following weddings:</p>
<ul>
<li><a href="http://www.parabola.ca/pics/categories.php?cat_id=10">Rob &amp; Kennah</a></li>
<li><a href="http://www.parabola.ca/pics/categories.php?cat_id=11">Brad &amp; Lisa</a> (aka The Brother and The Sister-In-Law &#8230; hey, I&#8217;ve got inlaws now!)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/10/better-late-than-never/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revenge of the Weddings</title>
		<link>http://www.parabola.ca/2005/07/revenge-of-the-weddings/</link>
		<comments>http://www.parabola.ca/2005/07/revenge-of-the-weddings/#comments</comments>
		<pubDate>Thu, 07 Jul 2005 03:17:06 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=102</guid>
		<description><![CDATA[<p>It was dÃ©jÃ  vu all over again for Rob &#38; Kennahâ€™s wedding a couple of weekends ago: pick up Kyle at GO station on Friday afternoon, go eat (added twist: went to see a movie â€“ an Imax-size Batman Begins â€¦ great movie by the way â€¦ tangents to tangents â€¦), drop him off with [...]]]></description>
			<content:encoded><![CDATA[<p>It was dÃ©jÃ  vu all over again for Rob &amp; Kennahâ€™s wedding a couple of weekends ago: pick up Kyle at GO station on Friday afternoon, go eat (added twist: went to see a movie â€“ an Imax-size Batman Begins â€¦ great movie by the way â€¦ tangents to tangents â€¦), drop him off with his cousin, drive to London, pick up Patricia on Saturday afternoon, drive to out-of-town wedding.</p>
<p>Destination this time was Guelph, for a full blown churchy wedding.  Despite that point and the religious aspects, the ceremony itself was extremely nice with some live string musicians and some singers thrown in near the end.  We were seated with a bunch of strangers, so it wasnâ€™t until afterwards that we met up people I knew.  Tanya, Mali, Amy, Joanne, and Mary were there, but Sarah and Leo werenâ€™t able to join until the reception in Waterloo.  Oh, and I believe Rob and Kennah may have been around somewhere.</p>
<p>I think the last time that many of us were together was for Sarah &amp; Leoâ€™s wedding a couple of years ago in Simcoe.  Itâ€™s hard to believe that much time has gone by â€¦ emphasized by the fact that Sarahâ€™s looking pretty pregnant nowadays!</p>
<p>The reception was at the Waterloo Inn and was also well done.  Nice set up, great food, good speeches, and Kennahâ€™s brother handled the MC duties well.  Except for Sarah and Leo, all of the UW folks mentioned above were at one table.  But after all the more formal stuff, they were able to hang out at our table and we (in the general sense, not so much me) seemed to spend a lot of time near the bar.</p>
<p>While itâ€™s probably rude to say so, I was quite impressed with this wedding compared to the earlier one.  It was all very classy, and very appropriate for Rob and Kennah.  I donâ€™t think I actually met her until those terms Rob and I (and Amy and Mike) lived together, but when I did it was obvious they made a good couple.  If thereâ€™s one person I know who has his shit together, itâ€™s definitely Rob, so unlike the pessimism I hold towards most of the rest of the population, it seems plausible that he and Kennah will last.  In my little world, thatâ€™s a ringing endorsement.</p>
<p>So, I forgot my own camera in Mississauga and borrowed Brad &amp; Lisaâ€™s for the occasion.  I didnâ€™t have time to get their USB cable and transfer files myself, so Iâ€™ve been waiting over a week and half to get those pictures from my deadbeat brother.  Punk.  But, I did finally get around to posting some <a href="http://www.parabola.ca/pics/categories.php?cat_id=7">pics from Laraâ€™s wedding</a> that Patricia and I went to, so thatâ€™s something.</p>
<p>And a nice little segue into more wedding craziness.  Foolishly believing I was done with such activities and related stuff until Bradâ€™s in September, I find out the other day that I need to make the trip to London for a Jack &amp; Jill thing they are doing on Sunday.  And itâ€™s been relayed to me that this is a gift-giving occasion.  Between this, the engagement party (where they did in fact receive presents from some people, but not me â€“ <a href="http://www.parabola.ca/index.php?title=to_gift_or_not_to_gift&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">see here</a>), the bridal shower (but a female only thing, Iâ€™ve been led to believe?), and the wedding reception itself, itâ€™s all so crazy!  How many times are couples allowed to milk this?  I seem to remember a similar situation on Sex and the City, Iâ€™ll have to look up how Carrie handled it; I just remember it was funny.  And yes, Iâ€™m possibly very cynical about the whole wedding phenomenon (as with much in life).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/07/revenge-of-the-weddings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reflecting Reality</title>
		<link>http://www.parabola.ca/2005/05/reflecting-reality/</link>
		<comments>http://www.parabola.ca/2005/05/reflecting-reality/#comments</comments>
		<pubDate>Mon, 23 May 2005 18:40:53 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=115</guid>
		<description><![CDATA[<p>I&#8217;ve made a few small changes to existing pages.  Since I&#8217;ve found a job for the time being and have moved from Waterloo, my resume is already in need of a change.  I&#8217;ve pulled the documents that were previously posted until I get around to updating them.</p>
<p>I don&#8217;t know what I&#8217;ll do with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a few small changes to existing pages.  Since I&#8217;ve found a job for the time being and have moved from Waterloo, my resume is already in need of a change.  I&#8217;ve pulled the documents that were previously posted until I get around to updating them.</p>
<p>I don&#8217;t know what I&#8217;ll do with my School section since I&#8217;m basically done with that part of my life, but I did go ahead and formally move my last term&#8217;s <a href="http://www.parabola.ca/schedules/">schedule</a> to the archive section.</p>
<p>Related to the first two items, my <a href="http://www.parabola.ca/page.php?disp=contact">Contact</a> page has been updated to remove info about where to find me on campus.  You can&#8217;t.  Although rarely used, it was great to have an office in MC.  Definitely a plus of being a grad student.</p>
<p>Finally, some new additions to the <a href="http://www.parabola.ca/page.php?disp=dvds">DVD list</a> for you folks looking to borrow something.  I picked up season 3 of Gilmore Girls last week, and before I moved Heather let me copy Contact and the Matrix movies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/05/reflecting-reality/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Do I Think There&#039;s an &quot;h&quot; in Azkaban?</title>
		<link>http://www.parabola.ca/2005/04/why-do-i-think-theres-an-h-in-azkaban/</link>
		<comments>http://www.parabola.ca/2005/04/why-do-i-think-theres-an-h-in-azkaban/#comments</comments>
		<pubDate>Mon, 04 Apr 2005 23:51:54 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=133</guid>
		<description><![CDATA[<p>The DVD list is finally up!  And after much updating since its last version.</p>
<p>I owe a few people a gander at this so they can borrow titles off me &#8230; just one of the many little tasks I can now take care of with only one exam remaining (next Monday) until the end of [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.parabola.ca/page.php?disp=dvds">DVD list</a> is finally up!  And after much updating since its last version.</p>
<p>I owe a few people a gander at this so they can borrow titles off me &#8230; just one of the many little tasks I can now take care of with only one exam remaining (next Monday) until the end of the term.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/04/why-do-i-think-theres-an-h-in-azkaban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest Updates</title>
		<link>http://www.parabola.ca/2005/02/latest-updates/</link>
		<comments>http://www.parabola.ca/2005/02/latest-updates/#comments</comments>
		<pubDate>Fri, 18 Feb 2005 04:08:27 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=150</guid>
		<description><![CDATA[<p>Took a bit of time this evening to make a few updates.</p>
<p>Pictures section:</p>

Removed registration and commenting.  If I ever get around to enabling other features such as letting friends post their own pictures, then I&#8217;ll revisit user accounts.  Right now it&#8217;s just confusing having separate registration for the pictures and blog portions of [...]]]></description>
			<content:encoded><![CDATA[<p>Took a bit of time this evening to make a few updates.</p>
<p><a href="http://www.parabola.ca/pics/">Pictures</a> section:</p>
<ul>
<li>Removed registration and commenting.  If I ever get around to enabling other features such as letting friends post their own pictures, then I&#8217;ll revisit user accounts.  Right now it&#8217;s just confusing having separate registration for the pictures and blog portions of the site.</li>
<li>Fixed a number of style elements and removed extraneous data fields to make the pages more readible and less cluttered.</li>
<li>Added pictures from my visit to Ottawa in the fall; mostly stuff that Billie and I took of her and Ryan&#8217;s new place.  Details of my trip to the nation&#8217;s capitol are in the <a href="http://www.parabola.ca/index.php?m=200411">November archives</a>.
</li>
</ul>
<p>I&#8217;ve also imported <a href="http://www.parabola.ca/index.php?m=200410">October</a> blog entries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/02/latest-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You Polled Yourself?</title>
		<link>http://www.parabola.ca/2005/01/you-polled-yourself/</link>
		<comments>http://www.parabola.ca/2005/01/you-polled-yourself/#comments</comments>
		<pubDate>Wed, 26 Jan 2005 02:44:53 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=160</guid>
		<description><![CDATA[<p>You&#8217;ll have to speak up, I&#8217;m wearing a towell!</p>

<p>Eh, just a random quote from my recently completed viewings of season five Simpsons episodes.</p>
<p>Anyway, November blog entries have been copied over.  Highlights include a trip to Ottawa and going to see a Kevin Smith show.  I also have to point out this entry just [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>You&#8217;ll have to speak up, I&#8217;m wearing a towell!</p>
</blockquote>
<p>Eh, just a random quote from my recently completed viewings of season five Simpsons episodes.</p>
<p>Anyway, <a href="http://www.parabola.ca/index.php?m=200411">November</a> blog entries have been copied over.  Highlights include a trip to Ottawa and going to see a Kevin Smith show.  I also have to point out <a href="http://www.parabola.ca/index.php?title=worlds_collide_rk_aamp_gg&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">this entry</a> just because of the great Kirk/statistics moment from this season on Gilmore Girls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/01/you-polled-yourself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Migration Begins</title>
		<link>http://www.parabola.ca/2005/01/blog-migration-begins/</link>
		<comments>http://www.parabola.ca/2005/01/blog-migration-begins/#comments</comments>
		<pubDate>Mon, 17 Jan 2005 04:04:04 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=165</guid>
		<description><![CDATA[<p>I&#8217;ve started the process of transfering entries from my old blog to this new system.  A number of December posts and the lone January one are now housed here.  I plan on leaving them as they are, with no editing except for possibly updating links or minor layout changes.  I&#8217;ll gradually get [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started the process of transfering entries from my old blog to this new system.  A number of December posts and the lone January one are now housed here.  I plan on leaving them as they are, with no editing except for possibly updating links or minor layout changes.  I&#8217;ll gradually get everything moved over, probably in monthly chunks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/01/blog-migration-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

