<?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"
	>

<channel>
	<title>holyarmy.org</title>
	<atom:link href="http://holyarmy.org/feed" rel="self" type="application/rss+xml" />
	<link>http://holyarmy.org</link>
	<description>tagline, tagline, what is the tagline?</description>
	<pubDate>Thu, 24 Jul 2008 16:37:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>I Like Jive and So Do Others</title>
		<link>http://holyarmy.org/2008/07/24/i-like-jive</link>
		<comments>http://holyarmy.org/2008/07/24/i-like-jive#comments</comments>
		<pubDate>Thu, 24 Jul 2008 06:34:38 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[clearspace]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[jive]]></category>

		<category><![CDATA[self-promotion]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=311</guid>
		<description><![CDATA[I got a real kick out of reading this blog post today.
It&#8217;s cool to see good feedback on the company I work for and our flagship product, Clearspace. Of course, since I&#8217;m friends with Matt (mentioned in the post), it&#8217;s nice to know he&#8217;s doing a good job. Gotta keep him on his toes!  [...]]]></description>
			<content:encoded><![CDATA[<p>I got a real kick out of reading this <a href="http://meilij.com/blog/2008/07/22/how-clearspace-won-me-back/">blog post today</a>.</p>
<p>It&#8217;s cool to see good feedback on <a href="http://www.jivesoftware.com">the company I work for</a> and our flagship product, Clearspace. Of course, since I&#8217;m friends with Matt (mentioned in the post), it&#8217;s nice to know he&#8217;s doing a good job. Gotta keep him on his toes! <img src='http://holyarmy.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> D00d!</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/07/24/i-like-jive/feed</wfw:commentRss>
		</item>
		<item>
		<title>Fight Back! (When VPN Clients Mis-Behave)</title>
		<link>http://holyarmy.org/2008/07/23/fight-back-when-vpn-clients-mis-behave</link>
		<comments>http://holyarmy.org/2008/07/23/fight-back-when-vpn-clients-mis-behave#comments</comments>
		<pubDate>Wed, 23 Jul 2008 18:20:19 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Networks]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[command line]]></category>

		<category><![CDATA[dns]]></category>

		<category><![CDATA[mac hack]]></category>

		<category><![CDATA[scutil]]></category>

		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=310</guid>
		<description><![CDATA[I have to use VPNs at work. Specifically, to access my production webservers (etc), I have to use a Cisco VPN client. Sadly, the VPN concentrator overrides my choice of allowing local LAN access. So, when I am on the VPN, I have my DNS options changed so I can&#8217;t use any local servers. This [...]]]></description>
			<content:encoded><![CDATA[<p>I have to use VPNs at work. Specifically, to access my production webservers (etc), I have to use a Cisco VPN client. Sadly, the VPN concentrator overrides my choice of allowing local LAN access. So, when I am on the VPN, I have my DNS options changed so I can&#8217;t use any local servers. This is a serious, serious pain. So painful in fact, that many times instead of fight with it, I simply would run a Windows session in VMware (on my Mac) and connect the VPN there. This has drawbacks too, but it&#8217;s better than not having local network access.</p>
<p>So I set out to find a solution and I found a <a href="http://blog.dv8.ro/2008/06/configuring-cisco-vpn-for-local-dns.html">post by loudhush</a> which described using the <strong>scutil</strong> to modify DNS network settings after connecting to a Cisco VPN. This was great, but I needed something a bit handier.</p>
<p>So, I cranked out the following which goes in my /Users/username/.profile:<br />
<code><br />
# .profile or .bash_profile<br />
function myvpn {<br />
vpnclient connect VPNPROFILENAME user MYVPNUSERNAME<br />
myworkdns<br />
}<br />
function myworkdns {<br />
printf "get State:/Network/Service/com.cisco.VPN/DNS\nd.add ServerAddresses * 192.168.1.252, 192.168.1.198\nd.add SearchDomains * example.com, other.example.com\nset State:/Network/Service/com.cisco.VPN/DNS" | sudo scutil<br />
}<br />
</code></p>
<p>These are bash functions which i run from the command line. (I also find the Client GUI Cisco to be a pain, and prefer command line)</p>
<p>So, obviously, you&#8217;ll need to substitute in your Cisco VPN profile name ( found in /etc/opt/cisco-vpnclient/Profiles), your VPN username, your DNS server IP addresses, and your DNS search domains to your legitimate values.</p>
<p>To use, run <strong>Terminal</strong>, then type <strong>myvpn</strong>. The VPN client will prompt you for your username and password. You&#8217;ll then have to hit CTRL+Z to suspend the VPN client so the script can run the DNS updates; this part uses <strong>sudo</strong> to run the command as root, so you will probably need to type your Mac password immediately after hitting CTRL+Z. If you didn&#8217;t want to bother with the command line VPN client, you could just use your GUI Cisco VPN client, then run <strong>myworkdns</strong> from Terminal, which will still probably prompt you for your Mac password.</p>
<p>Hope others find this useful. If I find a cleaner way, I&#8217;ll post that too.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/07/23/fight-back-when-vpn-clients-mis-behave/feed</wfw:commentRss>
		</item>
		<item>
		<title>Beating the Cisco VPN Client Error 51 On Leopard</title>
		<link>http://holyarmy.org/2008/07/22/beating-the-cisco-vpn-client-error-51-on-leopard</link>
		<comments>http://holyarmy.org/2008/07/22/beating-the-cisco-vpn-client-error-51-on-leopard#comments</comments>
		<pubDate>Tue, 22 Jul 2008 16:10:01 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Networks]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[error]]></category>

		<category><![CDATA[leopard]]></category>

		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=308</guid>
		<description><![CDATA[I had this error popup today on my Mac OS X Lepopard 10.5.4 machine.

This is not cool as, well, I NEED MY VPN TO WORK!
Thankfully google came to my rescue. The solution is to execute the following in Terminal:
sudo /System/Library/StartupItems/CiscoVPN/CiscoVPN restart
Thanks for the answer, VirtuallyShocking.com.
]]></description>
			<content:encoded><![CDATA[<p>I had this error popup today on my Mac OS X Lepopard 10.5.4 machine.</p>
<p><a href="http://holyarmy.org/wp-content/uploads/2008/07/vpnerr51.png"><img class="alignnone size-medium wp-image-309" title="vpnerr51" src="http://holyarmy.org/wp-content/uploads/2008/07/vpnerr51-300x69.png" alt="Cisco VPN Client Error 51" width="300" height="69" /></a></p>
<p>This is not cool as, well, I NEED MY VPN TO WORK!</p>
<p>Thankfully google came to my rescue. The solution is to execute the following in Terminal:</p>
<p><code>sudo /System/Library/StartupItems/CiscoVPN/CiscoVPN restart</code></p>
<p>Thanks for the answer, <a href="http://virtuallyshocking.com/2008/06/26/cisco-vpn-client-error-51-after-leopard-1053-upgrade/">VirtuallyShocking.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/07/22/beating-the-cisco-vpn-client-error-51-on-leopard/feed</wfw:commentRss>
		</item>
		<item>
		<title>Good Post on Using Ant for Solid Build Process</title>
		<link>http://holyarmy.org/2008/06/20/good-post-on-using-ant-for-solid-build-process</link>
		<comments>http://holyarmy.org/2008/06/20/good-post-on-using-ant-for-solid-build-process#comments</comments>
		<pubDate>Fri, 20 Jun 2008 20:35:30 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[ant]]></category>

		<category><![CDATA[build]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[process]]></category>

		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=307</guid>
		<description><![CDATA[I use Ant for my Java projects. It&#8217;s a great and powerfule build too. However, there&#8217;s always more than can be done to improve the quality of the build process.
I found this nice article that gives some good examples of a complete build process with Ant: dev, test, prod, etc.
]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://ant.apache.org">Ant</a> for my Java projects. It&#8217;s a great and powerfule build too. However, there&#8217;s always more than can be done to improve the quality of the build process.</p>
<p>I found <a href="http://www.julienlecomte.net/blog/2007/09/16/">this nice article</a> that gives some good examples of a complete build process with Ant: dev, test, prod, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/06/20/good-post-on-using-ant-for-solid-build-process/feed</wfw:commentRss>
		</item>
		<item>
		<title>I Downloaded Firefox 3</title>
		<link>http://holyarmy.org/2008/06/17/i-downloaded-firefox-3</link>
		<comments>http://holyarmy.org/2008/06/17/i-downloaded-firefox-3#comments</comments>
		<pubDate>Wed, 18 Jun 2008 02:28:21 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=306</guid>
		<description><![CDATA[As I mentioned recently, I&#8217;ve been using pre-release versions of Firefox 3 for a while now. I&#8217;ve been happy, but today is great because FF3 was officially released!
They are trying to set the record for most downloads in a day, so go get it!
]]></description>
			<content:encoded><![CDATA[<p>As I mentioned recently, I&#8217;ve been using pre-release versions of Firefox 3 for a while now. I&#8217;ve been happy, but today is great because FF3 was officially released!</p>
<p>They are trying to set the record for most downloads in a day, <a href="http://getfirefox.com/">so go get it!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/06/17/i-downloaded-firefox-3/feed</wfw:commentRss>
		</item>
		<item>
		<title>I-80 Closed Due to Flooding</title>
		<link>http://holyarmy.org/2008/06/16/i-80-closed-due-to-flooding</link>
		<comments>http://holyarmy.org/2008/06/16/i-80-closed-due-to-flooding#comments</comments>
		<pubDate>Mon, 16 Jun 2008 16:46:31 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[2008]]></category>

		<category><![CDATA[flood]]></category>

		<category><![CDATA[iowa]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=305</guid>
		<description><![CDATA[I knew I-80 was closed due to flooding, but I didn&#8217;t know exactly why.
This article makes it vey clear. Check out the photo.
]]></description>
			<content:encoded><![CDATA[<p>I knew I-80 was closed due to flooding, but I didn&#8217;t know exactly why.</p>
<p><a href="http://www.desmoinesregister.com/apps/pbcs.dll/article?AID=/20080616/NEWS/306160005">This article makes it vey clear</a>. Check out the photo.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/06/16/i-80-closed-due-to-flooding/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flood Tragedy in the Mid-West</title>
		<link>http://holyarmy.org/2008/06/14/flood-tragedy-in-the-mid-west</link>
		<comments>http://holyarmy.org/2008/06/14/flood-tragedy-in-the-mid-west#comments</comments>
		<pubDate>Sat, 14 Jun 2008 18:41:28 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[2008]]></category>

		<category><![CDATA[flood]]></category>

		<category><![CDATA[iowa]]></category>

		<category><![CDATA[mid-west]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=304</guid>
		<description><![CDATA[I&#8217;m currently packing to move to Portland, Oregon, but I grew up in the Iowa City, Iowa area and have lived in the Des Moines, Iowa area for the last 5 years.
The last week has brought massive flooding to much of the mid-west, Des Moines and Iowa City included. There&#8217;s been national news coverage, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently packing to move to Portland, Oregon, but I grew up in the Iowa City, Iowa area and have lived in the Des Moines, Iowa area for the last 5 years.</p>
<p>The last week has brought massive flooding to much of the mid-west, Des Moines and Iowa City included. There&#8217;s been national news coverage, and locally its the only thing happening. Massive flood work and relief efforts are underway everywhere. There was a similar devastating flood in 1993. This flood is worse, but at least there&#8217;s been a lot of warning. A lot of people had days to prepare, evacuate, move belongings to safety, etc.</p>
<p>My family and I are safe and well. My in-laws had a flooded basement due to the exceptionally high water table, but that&#8217;s manageable. My parents&#8217; church building is completely under water, but they were able to move everything in the building to a safe location before the flooding hit them. At their home they don&#8217;t have internet or phone, but they do have power, and the cell phone is providing basic email for now.</p>
<p>My sister has posted <a href="http://flickr.com/photos/aroses/tags/flood/">flikr photos of the flood in the Iowa City area</a>, as has her boyfriend Joe <a href="http://www.whitsitt.org/2008/06/13/iowa-city-flood-2008/">in this blog post</a>.<br />
The Iowa City Press-Citizen has coverage of the <a href="http://www.press-citizen.com/apps/pbcs.dll/frontpage">flood in the Iowa City area</a> (link to front page as the &#8220;photos&#8221; link isn&#8217;t working).</p>
<p>In Des Moines, two friends have posted flood pics: <a href="http://www.flickr.com/photos/cmlburnett/tags/flood/">Colin</a> and <a href="http://mark.bockenstedt.net/gallery/index.php?album=dm-flood">Mark</a>.<br />
The Des Moines Register has photos and coverage of the <a href="http://www.desmoinesregister.com/apps/pbcs.dll/frontpage">flood in the Des Moines area</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/06/14/flood-tragedy-in-the-mid-west/feed</wfw:commentRss>
		</item>
		<item>
		<title>Firefox 3 rc2 Is Out!</title>
		<link>http://holyarmy.org/2008/06/05/firefox-3-rc2-is-out</link>
		<comments>http://holyarmy.org/2008/06/05/firefox-3-rc2-is-out#comments</comments>
		<pubDate>Thu, 05 Jun 2008 16:41:01 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[productivity]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=302</guid>
		<description><![CDATA[Since moving to the Mac, I&#8217;ve tried to use Safari almost exclusively. I definitely like it, and it&#8217;s got some great tools, but I usually found myself running back to Firefox 2 whenever I had to really do work on a website because I really like some the power Firefox extensions give me. A couple [...]]]></description>
			<content:encoded><![CDATA[<p>Since moving to the <a href="http://www.apple.com/macosx/">Mac</a>, I&#8217;ve tried to use <a href="http://www.apple.com/safari/">Safari</a> almost exclusively. I definitely like it, and it&#8217;s got some great tools, but I usually found myself running back to <a href="http://www.mozilla.com/firefox/">Firefox 2</a> whenever I had to really do work on a website because I really like some the power Firefox extensions give me. A couple of the things NOT too like about Firefox 2 was the heavy memory usage, the crashing, and the lack of native Mac OS X widgets.</p>
<p>I&#8217;ve been playing with Firefox 3 betas off and on, but yesterday I noticed <a href="http://www.mozilla.com/firefox/all-rc.html">Firefox 3 release candidate 2</a> is out! This is likely going to be the last pre-release until the official launch, it has fixed a lot of bugs, and it solves some of my nagging issues. Memory usage is better, crashing less frequent, and we now have native widgets! Of course, I use Firefox for work, so to use FF3 I need my extentions which haven&#8217;t all been available till now:</p>
<ul>
<li><a href="http://www.getfirebug.com/releases/">Firebug 1.2 beta</a></li>
<li><a href="http://www.softwareishard.com/blog/firecookie/firecookie-05-beta/">Firecookie 0.5 beta</a> <a href="https://addons.mozilla.org/en-US/firefox/addon/3829"><br />
</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3829">LiveHTTP Headers</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer</a></li>
</ul>
<p>Yesterday I mentioned this to my co-worker who expressed concern about being able to test in Firefox 2. We already have this issue with IE6/IE7 and there&#8217;s no good solution for that but to have an extra copy of Windows with only IE6 installed. (yes, <a href="http://www.tech-recipes.com/rx/1188/ie7_use_ie6_ie7_together">you can try weird hacks like this</a>, but they don&#8217;t always seem to work)</p>
<p>Well, with Firefox (old and new) there&#8217;s this snazzy profile manager tool, which lets you choose what profile you want to use.</p>
<p>First, if you want to have multiple copies of Firefox installed, just name them differently. When you download Firefox the app is named &#8220;Firefox&#8221; I&#8217;m planning to use Firefox 3 as my standard now, so I&#8217;ve left it named that renamed my old Firefox to &#8220;Firefox2&#8243;. Shocking, isn&#8217;t it.</p>
<p>Now, from Terminal, I can run the following:<br />
<br />
<code>$ /Applications/Firefox2.app/Contents/MacOS/firefox -ProfileManager</code><br />
<br />
You should see something like this:</p>
<p><a href="http://holyarmy.org/wp-content/uploads/2008/06/ff_profile.png"><img class="alignnone size-medium wp-image-303" title="Firefox Profile Manager" src="http://holyarmy.org/wp-content/uploads/2008/06/ff_profile-300x241.png" alt="Firefox Profile Manager" width="300" height="241" /></a></p>
<p>By default, you&#8217;ll probably only have the &#8220;default&#8221; profile, but you can create a profile dedicated to testing in FF2 which should prevent it from screwing with my FF3 profile (as I&#8217;ve noticed can happen). Another side effect is that this lets you run multiple copies (of the different versions) of Firefox at once. Also, un-check the &#8220;Don&#8217;t ask at startup&#8221; box, and you won&#8217;t have to run the secondary browsers from the command-line to ensure you get the profile you intended.</p>
<p>For the record, I&#8217;ve tested the same thing on Windows XP. While you can install multiple copies/versions of Firefox and use the different profiles the same way, you <strong>cannot</strong> run both copies at the same time. At least I couldn&#8217;t make it work.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/06/05/firefox-3-rc2-is-out/feed</wfw:commentRss>
		</item>
		<item>
		<title>Plainview: presentations ala web</title>
		<link>http://holyarmy.org/2008/06/05/plainview-presentations-ala-web</link>
		<comments>http://holyarmy.org/2008/06/05/plainview-presentations-ala-web#comments</comments>
		<pubDate>Thu, 05 Jun 2008 09:18:11 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[browser]]></category>

		<category><![CDATA[presentation]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=301</guid>
		<description><![CDATA[I just stumbled onto the coolest little app for Mac. Plainview is a web browser based on WebKit (also the guts of the Safari browser). What&#8217;s unique is it&#8217;s intended to NOT have chrome (the name for all tose fancy navigation bars, address text boxes, menus etc). It&#8217;s slim&#8230; so slim the chrome is non-existent. [...]]]></description>
			<content:encoded><![CDATA[<p>I just stumbled onto the coolest little app for Mac. <a href="http://www.barbariangroup.com/software/plainview_app_1_0">Plainview</a> is a web browser based on WebKit (also the guts of the <a href="http://www.apple.com/safari/">Safari</a> browser). What&#8217;s unique is it&#8217;s intended to NOT have chrome (the name for all tose fancy navigation bars, address text boxes, menus etc). It&#8217;s slim&#8230; so slim the chrome is non-existent. This is a full-screen mode web browser, intended to utilize the full screen real estate for presentations! Essentially, instead of having to take screenshots of websites and put them into power point or something, you can just demo the site. It&#8217;s awesome&#8230; and i&#8217;m not even explaining it as well as they did&#8230; but I am tired. <img src='http://holyarmy.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I hope that in the near future I can use this for more than playing around.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/06/05/plainview-presentations-ala-web/feed</wfw:commentRss>
		</item>
		<item>
		<title>Investigating OpenID</title>
		<link>http://holyarmy.org/2008/05/27/investigating-openid</link>
		<comments>http://holyarmy.org/2008/05/27/investigating-openid#comments</comments>
		<pubDate>Tue, 27 May 2008 15:02:43 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Networks]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[new tech]]></category>

		<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://holyarmy.org/?p=300</guid>
		<description><![CDATA[Aaron (one of my co-workers), recently posted a link about OpenID. I&#8217;ve given OpenID only cursory glances over the last year, but the Coding Horror link in Aaron&#8217;s post had a comment to this Google Video where Simon Willison gives a Google Tech Talk on The Implications of OpenID. The video is nearly a year [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cephas.net/blog/2008/05/24/links-5-23-2008/">Aaron (one of my co-workers)</a>, recently posted a link about OpenID. I&#8217;ve given <a href="http://openid.net/">OpenID</a> only cursory glances over the last year, but the Coding Horror link in Aaron&#8217;s post had a comment to this <a href="http://video.google.com/videoplay?docid=2288395847791059857">Google Video where Simon Willison gives a Google Tech Talk on The Implications of OpenID</a>. The video is nearly a year old, but to date, it&#8217;s done more to convince me to get on the OpenID bandwagon than anything else.</p>
]]></content:encoded>
			<wfw:commentRss>http://holyarmy.org/2008/05/27/investigating-openid/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
