<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>... of many things ...</title>
	<link>http://wordsanddeeds.org/blog</link>
	<description></description>
	<pubDate>Thu, 28 Aug 2008 15:59:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Force.com Migration Tool (a real world example)</title>
		<link>http://wordsanddeeds.org/blog/2008/08/28/forcecom-migration-tool-a-real-world-example/</link>
		<comments>http://wordsanddeeds.org/blog/2008/08/28/forcecom-migration-tool-a-real-world-example/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 15:29:50 +0000</pubDate>
		<dc:creator>Jason Rogers</dc:creator>
		
		<category><![CDATA[Force.com]]></category>

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

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

		<guid isPermaLink="false">http://wordsanddeeds.org/blog/2008/08/28/forcecom-migration-tool-a-real-world-example/</guid>
		<description><![CDATA[ I think the docs that come with the Force.com Migration Tool are woefully understated.  Jon Mountjoy's article is a good overview, but it doesn't do much to help at the nitty-gritty-detail-level.  So, I thought I would post this showing how we use the tool.
First things first.  What is it?  The [...]]]></description>
			<content:encoded><![CDATA[<p> I think the docs that come with the Force.com Migration Tool are woefully understated.  <a href="http://blog.sforce.com/sforce/2008/07/announcing-forc.html">Jon Mountjoy's article</a> is a good overview, but it doesn't do much to help at the nitty-gritty-detail-level.  So, I thought I would post this showing how we use the tool.</p>
<p>First things first.  What is it?  The Migration Tool is just a library that you can embed into your Ant distribution, or that you can reference from the commandline.  This library calls Force.com's web services to accomplish its work.  For more discussion on this, reference the afore mentioned article by Mr. Mountjoy.  I also will not talk about all of the available targets.  This will be a use case study.</p>
<p>We use the tool to deploy code to production and to our sandbox.  We sometimes deploy small portions of code and sometimes all of it.  We also use it to deploy metadata changes.You can view our build.xml in the attached <a href="http://wordsanddeeds.org/blog/wp-content/uploads/2008/08/files.zip">files.zip</a>.</p>
<p>It's pretty simple.  The first thing to notice about it is that we have two targets called '<span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">use_prod_environment</span>' and '<span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">use_test_environment</span>'.  These targets depend on properties.  The <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">use_prod_environment</span> will be invoked if the property <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">use_prod_env</span> is set.  We do this from the commandline by specifying <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">-Duse_prod_env=true</span> when we invoke Ant.  The same is true for the test (sandbox) environment -- this is actually the default, so if we specify nothing on the commandline the Sandbox environment will be used.The next thing to notice is that we have only 2 other targets <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">retrieveUnpackaged</span> and <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">deploy</span>.   These targets depend on the environment targets above which set properties for the Force.com URL, username and password.  <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">retrieveUnpackaged</span> always retrieves code from the specified environment to a single location <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">unpackaged</span> under our <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">src</span> directory. <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">deploy</span> depends on another environment variable called <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">deploy.root</span>.  This variable tells the Tool what set of resources (code and/or metadata) are going to be pushed to Force.com.</p>
<p>Deploying is the only activity we do that cares about dealing with subsets of files.   So to do that we have created more directories along-side the <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">unpackaged</span> directory: limitedRelease, apex, and objects.  Each of these directories includes a <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">package.xml</span> that specifies what metadata and/or code is to be pushed (telling the Tool what directories to look for).  In truth, you can have the same package.xml for any of these directories (just copy it from the <span style="color: #ff0000; font-family: 'Courier New'; font-size: 13px; line-height: 23px; white-space: nowrap" class="Apple-style-span">unpackaged</span> directory).  What really matters is the directory structure underneath.  If you have a classes directory the Tool will deploy whatever classes are there.  If you have a triggers directory it will deploy whatever triggers are there.  The same goes for objects, applications, letterhead, pages, profiles, scontrols, staticresources, and tabs -- all directories within this directory.</p>
<p>Our 'limitedRelease' directory is a testing ground for new changes.  We hard-copy classes and triggers into its subdirectories (along with their associated '-meta.xml' files).  We work on that set of code and deploy it to the Sandbox as we test (test-first mind you, which is a little more of a hassle with Force.com, but still doable).</p>
<p>Our 'apex' directory is for all classes, pages, triggers and staticresources.  They are all soft-links to the subdirectories under 'unpackaged'.  This directory is used to deploy all of these resources to production and/or sandbox, as opposed to the limited set under limitedRelease.</p>
<p>Our 'objects' directory is used to migrate object metadata changes between production and the sandbox. The files under this directory may be hard-linked or soft-linked.The basic commandline looks something like:</p>
<blockquote class="webkit-indent-blockquote" style="border-style: none; margin: 0px 0px 0px 40px; padding: 0px"><p>ant -Ddeploy.dir=limitedRelease #deploys resources that are currently being developed to Sandbox</p></blockquote>
<blockquote class="webkit-indent-blockquote" style="border-style: none; margin: 0px 0px 0px 40px; padding: 0px"><p>ant -Duse_prod_env=true  -Ddeploy.dir=apex #deploys code resources to Production</p></blockquote>
<blockquote class="webkit-indent-blockquote" style="border-style: none; margin: 0px 0px 0px 40px; padding: 0px"><p>ant -Duse_prod_env=true  -Ddeploy.dir=objects #deploys object metadata to Production</p></blockquote>
<blockquote class="webkit-indent-blockquote" style="border-style: none; margin: 0px 0px 0px 40px; padding: 0px"><p>ant retrieveUnpackaged #gets all resources from Sandbox</p></blockquote>
<blockquote class="webkit-indent-blockquote" style="border-style: none; margin: 0px 0px 0px 40px; padding: 0px"><p>ant -Duse_prod_env=true retrieveUnpackaged #gets all resources from Production</p></blockquote>
<blockquote class="webkit-indent-blockquote" style="border-style: none; margin: 0px 0px 0px 40px; padding: 0px"></blockquote>
<p>Instead of typing these out all of the time, we use shell scripts which expect to be passed the use_prod_env variable when we want to deploy something to Production, otherwise it's deployed to the Sandbox.For instance our deployApex.sh looks like this:
<div class="igBar"><span id="lbash-2"><a href="#" onclick="javascript:showPlainTxt('bash-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">BASH:</span>
<div id="bash-2">
<div class="bash" style="font-family: monospace;">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ant -lib ../lib deploy -Ddeploy.<span style="color: #0000ff;">root=</span>apex $<span style="color: #cc66cc;color:#800000;">1</span></div>
</li>
</ol>
</div>
</div>
</div>
<p> We keep the Force.com Migration Tool library in a lib directory above our src directory and reference that in our shell scripts.</p>
<p>You can download the files mentioned in this article <a href="http://wordsanddeeds.org/blog/wp-content/uploads/2008/08/files.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordsanddeeds.org/blog/2008/08/28/forcecom-migration-tool-a-real-world-example/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fast User Switching via Keyboard</title>
		<link>http://wordsanddeeds.org/blog/2008/06/22/fast-user-switching-via-keyboard/</link>
		<comments>http://wordsanddeeds.org/blog/2008/06/22/fast-user-switching-via-keyboard/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 01:28:33 +0000</pubDate>
		<dc:creator>Jason Rogers</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://wordsanddeeds.org/blog/2008/06/22/fast-user-switching-via-keyboard/</guid>
		<description><![CDATA[I copied the following Bash script from MacScripter and combined it with TextExpander's ability to execute Apple Script in order to give me the ability to switch to the Login screen via a keyboard shortcut (I mapped it to 'ffus').
PLAIN TEXT
BASH:




#!/bin/sh


# Fast User Switching from the command line


# I saved mine as /usr/local/bin/fus


&#160;


CGSession='/System/Library/CoreServices/Menu Extras/User.menu/Contents/Resources/CGSession'


&#160;


case &#34;$#&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>I copied the following Bash script from <a href="http://bbs.macscripter.net/viewtopic.php?id=24091" title="MacScripter - Fast User Switching">MacScripter</a> and combined it with TextExpander's ability to execute Apple Script in order to give me the ability to switch to the Login screen via a keyboard shortcut (I mapped it to 'ffus').</p>
<div class="igBar"><span id="lbash-5"><a href="#" onclick="javascript:showPlainTxt('bash-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">BASH:</span>
<div id="bash-5">
<div class="bash" style="font-family: monospace;">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">#!/bin/sh</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># Fast User Switching from the command line</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># I saved mine as /usr/local/bin/fus</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">CGSession=</span><span style="color: #ff0000;">'/System/Library/CoreServices/Menu Extras/User.menu/Contents/Resources/CGSession'</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">case</span> <span style="color: #ff0000;">&quot;$#&quot;</span> <span style="color: #b1b100;">in</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #cc66cc;color:#800000;">0</span><span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># display login screen</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066;">exec</span> <span style="color: #ff0000;">&quot;$CGSession&quot;</span> -<span style="color: #000066;">suspend</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066;">exit</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">esac</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># No reason to display the login panel for the current user</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #b1b100;">in</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #ff0000;">&quot;$USER&quot;</span> | <span style="color: #ff0000;">&quot;$UID&quot;</span><span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066;">exit</span> <span style="color: #cc66cc;color:#800000;">0</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">esac</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># can pass in a (short) username or userid</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">id=</span>`/usr/bin/id -u <span style="color: #ff0000;">&quot;$1&quot;</span>` || <span style="color: #000066;">exit</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># display login panel for user</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066;">exec</span> <span style="color: #ff0000;">&quot;$CGSession&quot;</span> -switchToUserID <span style="color: #ff0000;">&quot;$id&quot;</span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>The Apple Script I use to invoke this from TextExpander is:
<div class="igBar"><span id="lapplescript-6"><a href="#" onclick="javascript:showPlainTxt('applescript-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">APPLESCRIPT:</span>
<div id="applescript-6">
<div class="applescript" style="font-family: monospace;">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">do shell <span style="color: #b1b100;">script</span> <span style="color: #ff0000;">&quot;/usr/local/bin/fus &quot;</span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://wordsanddeeds.org/blog/2008/06/22/fast-user-switching-via-keyboard/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MagLev</title>
		<link>http://wordsanddeeds.org/blog/2008/05/31/maglev/</link>
		<comments>http://wordsanddeeds.org/blog/2008/05/31/maglev/#comments</comments>
		<pubDate>Sat, 31 May 2008 16:15:18 +0000</pubDate>
		<dc:creator>Jason Rogers</dc:creator>
		
		<category><![CDATA[Rails]]></category>

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

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

		<guid isPermaLink="false">http://wordsanddeeds.org/blog/2008/05/31/maglev/</guid>
		<description><![CDATA[MagLev is a Ruby VM in the works by Gemstone that is targeted for a first release around September of 2008.  I am really excited about this development.  The VM will hook up to the caches and persistent store that Gemstone provides.
Avi Bryant gave a nice demo of 100 days of work on the VM.  It [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://maglev.gemstone.com" title="MagLev" target="_blank">MagLev</a> is a Ruby VM in the works by Gemstone that is targeted for a first release around September of 2008.  I am really excited about this development.  The VM will hook up to the caches and persistent store that Gemstone provides.</p>
<p>Avi Bryant gave a nice demo of 100 days of work on the VM.  It does simple things in the typical Gemstone distributed fashion.  Talking with some Gemstone folks afterward, I found out that in 100 days they have implemented about 20% or 30% of the Core library.  In the MagLev talk they mentioned that they are effectively (and impressively) running about 38 of the <span style="font-style: italic" class="Apple-style-span">rubyspecs</span> defined by the Rubinius team.</p>
<p>Great stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordsanddeeds.org/blog/2008/05/31/maglev/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails and AIR</title>
		<link>http://wordsanddeeds.org/blog/2008/05/29/rails-and-air/</link>
		<comments>http://wordsanddeeds.org/blog/2008/05/29/rails-and-air/#comments</comments>
		<pubDate>Thu, 29 May 2008 23:59:35 +0000</pubDate>
		<dc:creator>Jason Rogers</dc:creator>
		
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://wordsanddeeds.org/blog/2008/05/29/rails-and-air/</guid>
		<description><![CDATA[I went to a tutorial for Powering Rails with AIR at the RailsConf2008.  There are some neat capabilities there.  One cool app they showed was their TwitterFriends which is a related-objects-graph application.  I could care less for Twitter, but I could imagine using this same thing for analyzing informal networks within a company (eg. hooking [...]]]></description>
			<content:encoded><![CDATA[<p>I went to a tutorial for Powering Rails with AIR at the RailsConf2008.  There are some neat capabilities there.  One cool app they showed was their TwitterFriends which is a related-objects-graph application.  I could care less for Twitter, but I could imagine using this same thing for analyzing informal networks within a company (eg. hooking into an Exchange server and building a network based on email To: and Cc: headers).</p>
]]></content:encoded>
			<wfw:commentRss>http://wordsanddeeds.org/blog/2008/05/29/rails-and-air/feed/</wfw:commentRss>
		</item>
		<item>
		<title>God, Religion, Crucifixion</title>
		<link>http://wordsanddeeds.org/blog/2008/02/17/god-religion-crucifixion/</link>
		<comments>http://wordsanddeeds.org/blog/2008/02/17/god-religion-crucifixion/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 23:30:56 +0000</pubDate>
		<dc:creator>Jason Rogers</dc:creator>
		
		<category><![CDATA[Christ]]></category>

		<guid isPermaLink="false">http://wordsanddeeds.org/blog/2008/02/17/god-religion-crucifixion/</guid>
		<description><![CDATA[Our pastor, Shiva Tewari, had a really inspiring thought in today's service (well, actually he had a lot of inspiring thoughts, but here's just one...)
If religion is your god, you are certainly in bondage.  However, if God is your religion you are certainly free. 
It's a bit out of context but the thought is [...]]]></description>
			<content:encoded><![CDATA[<p>Our pastor, Shiva Tewari, had a really inspiring thought in today's service (well, actually he had a lot of inspiring thoughts, but here's just one...)<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px">If religion is your god, you are certainly in bondage.  However, if God is your religion you are certainly free. </p></blockquote>
<p>It's a bit out of context but the thought is simple enough to understand: the church today is so full of impersonating spirits that most of Christianity is not really an inspired life, but instead a copy of someone else's inspiration.</p>
<p>Instead of praying from the heart, people learn to copy others' prayers.  Instead of fasting out of inspiration, it's a formula by which we expect to earn some favor from God.</p>
<p>We may quote <strong>Galatians 2:20</strong>, "I am crucified with Christ, therefore I no longer live..." but is it really so?  To be crucified with Christ is to be fully identified with the message of His crucifixion, the message of the cross.  To know why Christ died, and what it has accomplished in my life!!</p>
<p>Oh that I might truly be crucified with Christ...</p>
]]></content:encoded>
			<wfw:commentRss>http://wordsanddeeds.org/blog/2008/02/17/god-religion-crucifixion/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
