<?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>cyberpir8.net &#187; Opinion</title>
	<atom:link href="http://www.cyberpir8.net/category/opinion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cyberpir8.net</link>
	<description>Here lies da booty</description>
	<lastBuildDate>Mon, 17 Oct 2011 04:38:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Working with LINQ and .NET</title>
		<link>http://www.cyberpir8.net/2011/05/22/working-with-linq-and-net/</link>
		<comments>http://www.cyberpir8.net/2011/05/22/working-with-linq-and-net/#comments</comments>
		<pubDate>Sun, 22 May 2011 07:52:44 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=227</guid>
		<description><![CDATA[Lately I&#8217;ve been doing some work in C# targeting the 3.5 .NET Framework (because that&#8217;s where LINQ &#8212; Language INtegrated Query &#8212; is introduced).  There are two forms for using LINQ: the query expression form and the method-based query form.  Each allows the exact same functionality and each has its own pros and cons.  I [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>Lately I&#8217;ve been doing some work in C# targeting the 3.5 .NET Framework (because that&#8217;s where LINQ &#8212; Language INtegrated Query &#8212; is introduced).  There are two forms for using LINQ: the query expression form and the method-based query form.  Each allows the exact same functionality and each has its own pros and cons.  I have found that I prefer the method-based form, perhaps because I&#8217;m trying to expand my skills with lambda functions and already know SQL well enough to get by. Here is an example of each technique.</p>
<p>First, here is the build-up to the interaction with LINQ:<br />
<code>using System.Linq;<br />
List&lt;string&gt; names = new List&lt;string&gt; { "Alice", "Bob", "Cathy", "Eddie", "Frank", "Gary" };</code><br />
Easy, right?  Even if you don&#8217;t know programming, you might be able to figure out what this means.  Moving on, the following is the query-expression form to show all names ending in the letter &#8220;y&#8221;. Then the results (in var y_endings) are printed to stdout.<br />
<code>var y_endings = from n in names<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;where n.ToLower().EndsWith("y")<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;select n;<br />
foreach (string name in y_endings)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;System.Console.Out.WriteLine(name);<br />
}</code><br />
Got it?  Good.  Ok, now here&#8217;s a similar query using the method-based form to find all names of length 5 (also printed to stdout):<br />
<code>var fives = names.Where(n =&gt; n.Length == 5);<br />
foreach (string name in fives)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;System.Console.Out.WriteLine(name);<br />
}</code><br />
That lambda function is pretty wacky, but it&#8217;s saying &#8220;Return all values which have a length of 5. I choose to refer to each tested value as &#8216;n&#8217;.&#8221;  They aren&#8217;t so hard in their simplest forms, but still gave me a little trouble because I&#8217;m not familiar with anonymous functions.  You can see how the query expression form is basically a lambda function and maybe that will help form your method-based queries (if you&#8217;re so disposed).  Anyway, I just wanted to share the two forms side-by-side.  For more, google LINQ and read.  Ugh.  Do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2011/05/22/working-with-linq-and-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Sketching Tool: Harmony</title>
		<link>http://www.cyberpir8.net/2010/03/11/html5-sketching-tool-harmony/</link>
		<comments>http://www.cyberpir8.net/2010/03/11/html5-sketching-tool-harmony/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:41:00 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[badass]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[harmony]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mrdoob]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=199</guid>
		<description><![CDATA[Go here: mrdoob.com/lab/javascript/harmony/. Play with Harmony. You&#8217;ll get it. It. Is. Dope! HTML5 is the media-rich future of the World Wide Web and this sort of thing is going to become more prevalent very quickly. I&#8217;m excited!]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>Go here: <a href="http://mrdoob.com/lab/javascript/harmony/" class="autohyperlink" title="http://mrdoob.com/lab/javascript/harmony/" target="_blank">mrdoob.com/lab/javascript/harmony/</a>.  Play with Harmony.  You&#8217;ll get it.  It.  Is.  Dope!  HTML5 is the media-rich future of the World Wide Web and this sort of thing is going to become more prevalent very quickly.  I&#8217;m excited!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2010/03/11/html5-sketching-tool-harmony/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New host: BlueHost.com</title>
		<link>http://www.cyberpir8.net/2009/12/17/new-host-bluehost-com/</link>
		<comments>http://www.cyberpir8.net/2009/12/17/new-host-bluehost-com/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 06:05:58 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Site update]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bluehost.com]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=196</guid>
		<description><![CDATA[The server I was hosted on before started going belly-up, so I moved over to www.bluehost.com (as recommended by E$). So far I&#8217;m pleased with the experience: it wasn&#8217;t seamless by any means, but there&#8217;s a good support team and other than a couple Gallery2 plugins that don&#8217;t work right, I&#8217;m back in action.]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>The server I was hosted on before started going belly-up, so I moved over to <a href="http://www.bluehost.com" class="autohyperlink" title="http://www.bluehost.com" target="_blank">www.bluehost.com</a> (as recommended by E$).  So far I&#8217;m pleased with the experience: it wasn&#8217;t seamless by any means, but there&#8217;s a good support team and other than a couple Gallery2 plugins that don&#8217;t work right, I&#8217;m back in action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2009/12/17/new-host-bluehost-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reflections on Stickin&#8217; To My Guns</title>
		<link>http://www.cyberpir8.net/2009/08/31/reflections-on-stickin-to-my-guns/</link>
		<comments>http://www.cyberpir8.net/2009/08/31/reflections-on-stickin-to-my-guns/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 00:55:25 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[downloading]]></category>
		<category><![CDATA[hackulous]]></category>
		<category><![CDATA[installous]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[stealing]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=190</guid>
		<description><![CDATA[I recently had a moment of clarity with regards to my historical stance on downloading software that I have not paid for. It wasn&#8217;t the sort of clarity that helps me to pass on my point of view to others, but the sort that is more or less self-defining. A new jailbroken iPhone application has [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>I recently had a moment of clarity with regards to my historical stance on downloading software that I have not paid for. It wasn&#8217;t the sort of clarity that helps me to pass on my point of view to others, but the sort that is more or less self-defining.</p>
<p>A new jailbroken iPhone application has been released into the wild that allows users to install cracked versions of pay apps as if they paid for it. It&#8217;s no different than using a cracked version of Photoshop or Premier or any other pirated software, but it&#8217;s new because it&#8217;s on th iPhone! The new app is called Installous (available at <a href="http://www.hackulo.us" class="autohyperlink" title="http://www.hackulo.us" target="_blank">www.hackulo.us</a>) and it is a great idea.</p>
<p>I saw my friend using a very expensive application ($70) that he hadn&#8217;t paid for and I though, &#8220;I want to do that too!&#8221; I downloaded the app and installed a couple games that are normally pay-only. I was messing around a little more today and it dawned on me again, after many years &#8230; I don&#8217;t want to pirate software.</p>
<p>This was particularly poignant because I was recently speaking with someone about the importance of revisiting semi-religious decisions like this with some regularity. I don&#8217;t know that I can take a stand against the moral implications of piracy, because I&#8217;m honestly not against the concept of learning how to use an application from the cracked (i.e. pirated) versions. But I can say that I have followed-through with my conscience regarding my desires to &#8220;have&#8221; and to &#8220;be able to resist&#8221;.  I have learned to do without these toys this long, and I can do without them longer if I don&#8217;t want to pay for them.</p>
<p>What are your thoughts on piracy?  Do you feel you&#8217;re just saving money? Do you care?</p>
<p>(Written from my iPhone)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2009/08/31/reflections-on-stickin-to-my-guns/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Window 7 experiences</title>
		<link>http://www.cyberpir8.net/2009/07/16/window-7-experiences/</link>
		<comments>http://www.cyberpir8.net/2009/07/16/window-7-experiences/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 11:28:56 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=189</guid>
		<description><![CDATA[I&#8217;ve been using Window 7 pre-release on my home desktop for a couple weeks now and it&#8217;s probably a decent time to jot down some thoughts. I really dig most elements of the user interface: the organization of the screen, as well as the addition of Mac-ish features like preview from the taskbar, make it [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>I&#8217;ve been using Window 7 pre-release on my home desktop for a couple weeks now and it&#8217;s probably a decent time to jot down some thoughts. </p>
<p>I really dig most elements of the user interface: the organization of the screen, as well as the addition of Mac-ish features like preview from the taskbar, make it pretty easy to find directories (aka folders) when you aren&#8217;t necessarily good at navigating that sort of thing. I believe there are a few more elements from Vista-land that Vista users have shown me, but I forget to check it when I get home. </p>
<p>I&#8217;m am not sure I like the way Win7 handles the congregation of the My Documents folders. I haven&#8217;t looked too far into this, but the requirement that I add folders to My Documents instead of just switch where that folder is located is sort of annoying. </p>
<p>The thing that I truly dislike is how hard it is to act like an administrator. When I&#8217;m an admin, I don&#8217;t ever want to have to use the &#8220;Run as administrator&#8221; option. I even disable UAC and still am hamstrung when installing or trying to delete certain files. It&#8217;s very frustrating when I&#8217;m so used to the XP experience, so I&#8217;m going to definitely check out what I&#8217;m doing wrong there. </p>
<p>Overall I report positive things. I think the average Windows user will like the changes. Being a true power-user, there are a few things I would like to see or use differently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2009/07/16/window-7-experiences/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Subversion tree conflicts make my brain hurt</title>
		<link>http://www.cyberpir8.net/2009/04/06/subversion-tree-conflicts-make-my-brain-hurt/</link>
		<comments>http://www.cyberpir8.net/2009/04/06/subversion-tree-conflicts-make-my-brain-hurt/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 22:01:21 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[highlighter]]></category>
		<category><![CDATA[log analysis]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=172</guid>
		<description><![CDATA[Ok, so Highlighter is that log file analysis tool that Jason Luttgens and I created and Nick Harbour contributed a huge amount to in version 1.1 (thanks Nick!).]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>Ok, so Highlighter is that log file analysis tool that Jason Luttgens and I created and Nick Harbour contributed a huge amount to in version 1.1 (thanks Nick!).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2009/04/06/subversion-tree-conflicts-make-my-brain-hurt/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Movie synched with music: Great job!</title>
		<link>http://www.cyberpir8.net/2009/03/18/movie-synched-with-music-great-job/</link>
		<comments>http://www.cyberpir8.net/2009/03/18/movie-synched-with-music-great-job/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 18:08:05 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[happy feet]]></category>
		<category><![CDATA[missy elliot]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[synch]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=167</guid>
		<description><![CDATA[I am not promoting either Happy Feet or Missy Elliot (because I&#8217;ve never seen Happy Feet, though I like Missy).]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>I am not promoting either Happy Feet or Missy Elliot (because I&#8217;ve never seen Happy Feet, though I like Missy).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2009/03/18/movie-synched-with-music-great-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Those wacky Catholics are at it again!</title>
		<link>http://www.cyberpir8.net/2008/12/24/those-wacky-catholics-are-at-it-again/</link>
		<comments>http://www.cyberpir8.net/2008/12/24/those-wacky-catholics-are-at-it-again/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 16:04:48 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=137</guid>
		<description><![CDATA[news.bbc.co.uk/1/hi/world/europe/7796663.stm &#8220;Pope Benedict XVI has said that saving humanity from homosexual or transsexual behaviour is just as important as saving the rainforest from destruction.&#8221; It&#8217;s commonly accepted that the Greeks practiced homo-/bi-sexuality quite openly. Isn&#8217;t the Bible originally written largely in Greek? Hm&#8230; stop hatin&#8217;, Pope.]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p><a href="http://news.bbc.co.uk/1/hi/world/europe/7796663.stm" class="autohyperlink" title="http://news.bbc.co.uk/1/hi/world/europe/7796663.stm" target="_blank">news.bbc.co.uk/1/hi/world/europe/7796663.stm</a></p>
<p>&#8220;Pope Benedict XVI has said that saving humanity from homosexual or transsexual behaviour is just as important as saving the rainforest from destruction.&#8221;</p>
<p>It&#8217;s commonly accepted that the Greeks practiced homo-/bi-sexuality quite openly.  Isn&#8217;t the Bible originally written largely in Greek? Hm&#8230; stop hatin&#8217;, Pope.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2008/12/24/those-wacky-catholics-are-at-it-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Congratulations United States</title>
		<link>http://www.cyberpir8.net/2008/11/05/congratulations-united-states/</link>
		<comments>http://www.cyberpir8.net/2008/11/05/congratulations-united-states/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 21:06:59 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=123</guid>
		<description><![CDATA[I just want to say thank you to the Obama supporters and campaigners who made the Nov 4 success possible. Congratulations to the United States of America for yesterday&#8217;s elections. May the next 4 years live up to our dreams and supremely impress those who are unconvinced of Obama&#8217;s presidential fitness.]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>I just want to say thank you to the Obama supporters and campaigners who made the Nov 4 success possible. </p>
<p>Congratulations to the United States of America for yesterday&#8217;s elections.  May the next 4 years live up to our dreams and supremely impress those who are unconvinced of Obama&#8217;s presidential fitness.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2008/11/05/congratulations-united-states/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>XKCD does it again</title>
		<link>http://www.cyberpir8.net/2008/10/31/xkcd-does-it-again/</link>
		<comments>http://www.cyberpir8.net/2008/10/31/xkcd-does-it-again/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 14:16:14 +0000</pubDate>
		<dc:creator>Jed</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.cyberpir8.net/?p=118</guid>
		<description><![CDATA[XKCD&#8217;s Internet Secretary thread is hi-larious!]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=fa2982ef8b1f91a02ab1c6a85f9b7a2a&amp;default=http://www.gravatar.com/avatar.php' alt='No Gravatar' width=40 height=40/><p>XKCD&#8217;s Internet Secretary thread is hi-larious!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberpir8.net/2008/10/31/xkcd-does-it-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

