<?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>Kingdom Geek</title>
	<atom:link href="http://rickbeckman.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://rickbeckman.org</link>
	<description>Being a Light unto the Online World</description>
	<pubDate>Fri, 16 May 2008 03:32:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>A Brief Introduction to Semantic HTML</title>
		<link>http://rickbeckman.org/a-brief-introduction-to-semantic-html/</link>
		<comments>http://rickbeckman.org/a-brief-introduction-to-semantic-html/#comments</comments>
		<pubDate>Fri, 16 May 2008 03:30:53 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=452</guid>
		<description><![CDATA[<img class="aligncenter size-full wp-image-453" title="Bricks" src="http://rickbeckman.org/wp-content/uploads/2008/05/bricks.png" alt="bricks" width="425" height="110" />

A brief introduction to various semantic tags which can be used to add rich meaning to Web writing.]]></description>
			<content:encoded><![CDATA[<p><a class="external_no" rel="external nofollow" href="http://www.flickr.com/photos/io2/6452772/"><img class="aligncenter size-full wp-image-453" title="Bricks" src="http://rickbeckman.org/wp-content/uploads/2008/05/bricks.png" alt="bricks" width="425" height="110" /></a></p>
<p>About eight years ago, I was in charge of putting together a website for a group of gamers with whom I was friends. In those days, when we wanted to say something with emphasis on the site, we&#8217;d bust out with <code>B</code>. And it made perfect sense, after all&#8230; <code>B</code> = bold! Simple, elegant.</p>
<p>Little did I know at the time that I really wasn&#8217;t <em>emphasizing</em> the text to which I was applying <code>B</code>. Here&#8217;s what I mean by that:</p>
<p>When you speak, listen to your voice as you emphasize important details or stress a point to your listeners. The style of your voice certainly does change. However, the meaning of what you said was slightly altered. The stylistic change to how you said certain words added inflection which wouldn&#8217;t have been present otherwise.</p>
<p>You see, there&#8217;s two aspects of what we say: <strong>style and semantics.</strong> How our words sound is the style and what they mean or how they are used is the semantics.</p>
<p>The same is true with what we write on the Web. As I said before, <code>B</code> was good for one thing: making text bold. It did that well, and for sighted visitors, the text certainly did appear emphasized.</p>
<p>But what about those visitors who browsed using a text-to-speech reader? <code>B</code> doesn&#8217;t provide any semantic meaning which could be translated into an accurate verbal reading. Further, because of <code>B</code>&#8217;s lack of meaning, the text which appears emphasized to sighted users appears as plain ol&#8217; ordinary text to search engine robots.</p>
<p><strong>The bottom line is, by using <code>B</code> as your emphasizer, you are wasting your time;</strong> you merely give the illusion of emphasis while the text itself is semantically no more or less important than the surrounding words.</p>
<p>The solution rests in a much more semantic tag called <code>STRONG</code>. This tag &#8212; one of several &#8220;phrase tags&#8221; which (X)HTML provides &#8212; goes beyond <code>B</code> by actually <em>altering and enhancing</em> the meaning of the text.</p>
<p>No longer would text-to-speech readers speak through <code>B</code>-wrapped words with unwavering tone. No longer would important <code>B</code>&#8216;ed keywords receive the same importance in search engine calculations.</p>
<p>With <code>STRONG</code> and other semantic tags, the enhanced meaning of the text will be evident to text-to-speech readers, which is an important aspect of usability.</p>
<p>Of course, the differences go far beyond <code>B</code> versus <code>STRONG</code>:</p>
<ul>
<li>Instead of <code>I</code> (i.e., &lt;em&gt;italic text&lt;/em&gt;), use <code>EM</code> (i.e., &lt;em&gt;emphasized text&lt;/em&gt;).</li>
<li>Instead of using <code>BLOCKQUOTE</code> to indent text, use it only for actual quotations. For indentation which doesn&#8217;t require a change in meaning, try applying style to your paragraph or division tags.</li>
<li>Instead of rendering code like <code>&lt;span style="font-family: monospace;"&gt;some code&lt;/span&gt;</code>, use the <code>CODE</code> tag (i.e., &lt;code&gt;some code&lt;/code&gt;).</li>
<li>When no semantic element seems available for what you want to do, there are two rather generic elements available: <code>DIV</code> and <code>SPAN</code>. A <code>DIV</code> represents a division of a page&#8217;s content; for instance, <code>DIV</code>s may be used to separate the various parts of a basic blog page: header, content, comments, sidebar, footer. A <code>SPAN</code> denotes, well, a span of text but is instead an inline element. An example of how I use <code>SPAN</code> is to make up for the lack of any semantic element to refer to the title of something (whether a movie, book, ship, or anything else which is typically underlined when hand-written); I created a class called <code>TITLE</code> in my style sheet and applied an italic style to it. It&#8217;s unfortunate that the semantic meaning of &#8220;this is a title&#8221; cannot be applied, but at the very least, the text is set apart and visually differentiated. An example of this would look like, &#8220;When it comes to captains of the <code>&lt;span class="title"&gt;Enterprise&lt;/span&gt;</code>, Picard takes the cake.&#8221;</li>
</ul>
<p>I hope I haven&#8217;t made this introduction overly complex, but I hope I have included enough to get the beginner blogger started in more creative and <em>semantic</em> uses of all the code the Web allows us to use.</p>
<p>I will close with a warning: Just as it was a mistake to misuse the old school style elements to add meaning to a Web page, so it is also a mistake to use the new school semantic elements to add style to a page. If there is something on a page which needs to be bold (perhaps a symbol which doesn&#8217;t show up well enough by default), don&#8217;t wrap it with <code>STRONG</code> just for its default visual effect &#8212; does the symbol really need to be emphasized for blind readers? No, instead you should use the fallback element of <code>SPAN</code> in a manner similar to this: <code>&lt;span class="bold"&gt;text to be bold but *not* emphasized&lt;/span&gt;</code>.</p>
<p>Ultimately, your markup should contain only semantic and structural elements; if someone were to view your site without any styles applied to it, the semantic and structural tags should be enough to still convey your thoughts. All the fancy style definitions should be stored externally in a style sheet.</p>
<p>It takes some getting used to in order to speedily write for the Web with semantics in mind, <strong>but it is worth it.</strong> The payoff is not only a more meaningfully coded site, but your code will almost always be cleaner and more readily understood.</p>
<h3>Further Reading</h3>
<ul>
<li><a rel="external" href="http://www.ermanz.govt.nz/news-events/archives/presentations/semantichtml.html">&#8220;Semantic HTML&#8221;</a></li>
<li><a rel="external" href="http://www.thomasknierim.com/59/web-development/semantic-versus-presentational-html/">&#8220;Semantic vs. Presentational HTML&#8221;</a></li>
<li><a rel="external" href="http://www.thefutureoftheweb.com/blog/writing-semantic-html">&#8220;Writing Semantic HTML&#8221;</a></li>
<li><a rel="external" href="http://semantichtml.org/home/">&#8220;Semantically Correct HTML&#8221;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/a-brief-introduction-to-semantic-html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Whole Bunch of Dorcases</title>
		<link>http://rickbeckman.org/a-whole-bunch-of-dorcases/</link>
		<comments>http://rickbeckman.org/a-whole-bunch-of-dorcases/#comments</comments>
		<pubDate>Fri, 16 May 2008 02:19:39 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Quote]]></category>

		<category><![CDATA[church planting]]></category>

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=451</guid>
		<description><![CDATA[Leaders get the limelight, the book deals, and the wide-eyed acolytes, but the kingdom of God is innervated by unsung heroes. Anyone serious about seeing new churches grow would give his right arm for people like Dorcas. AJ Vanderhorst

]]></description>
			<content:encoded><![CDATA[<blockquote><p>Leaders get the limelight, the book deals, and the wide-eyed acolytes, but the kingdom of God is innervated by unsung heroes. Anyone serious about seeing new churches grow would give his right arm for people like Dorcas. <cite><a rel="external" href="http://arieljvan.com/2008/05/15/nt-wright-on-unsung-heroes/">AJ Vanderhorst</a></cite></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/a-whole-bunch-of-dorcases/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Now Known as &#8220;Kingdom Geek&#8221;</title>
		<link>http://rickbeckman.org/now-known-as-kingdom-geek/</link>
		<comments>http://rickbeckman.org/now-known-as-kingdom-geek/#comments</comments>
		<pubDate>Wed, 14 May 2008 22:39:34 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Faith]]></category>

		<guid isPermaLink="false">http://rickbeckman.org/?p=449</guid>
		<description><![CDATA[Several months ago, I spent a good deal of time attempting to come up with a name which reflected my personality, my values&#8230; A name which I could give this blog (which at the time was known simply as &#8220;RickBeckman.org&#8221;) that would let visitors know what it was about without using my own name as [...]]]></description>
			<content:encoded><![CDATA[<p>Several months ago, I spent a good deal of time attempting to come up with a name which reflected my personality, my values&#8230; A name which I could give this blog (which at the time was known simply as &#8220;RickBeckman.org&#8221;) that would let visitors know what it was about without using my own name as an identifier. Not that my name isn&#8217;t good or anything, but that it&#8217;s <em>my</em> name, not necessarily my blog&#8217;s.</p>
<p>And I like the name &#8220;Kingdom Front,&#8221; but after having lived with it for some time, I&#8217;ve decided that I was only 50% right in choosing that name. An increasing number of posts here aren&#8217;t about the intersection of Scriptures &amp; life at all but are instead about programming or some other geeky thing.</p>
<p>So with that in mind, I came up with what i think is the ideal solution: <strong>Kingdom Geek.</strong></p>
<p>You don&#8217;t have to like it, though I hope you do, but I feel it best represents what I do here. I&#8217;m a Christian, I&#8217;m a geek, and so far as I can tell, the name hasn&#8217;t yet been taken. I was able to register KingdomGeek as my new Yahoo screenname even, which is exciting &#8212; good names are hard to register on Yahoo anymore. Feel free to add me to your contact list, if you&#8217;d like.</p>
<p>The name change may not be done in a thorough fashion; &#8220;Kingdom Front&#8221; may still be referenced in all sorts of places that will take a while to update. If you link here, would you be kind enough to update your links to reflect the new name? (Also, don&#8217;t link to me as &#8220;<em>The</em> Kingdom Front&#8221;; I&#8217;m just one geek among many within the Church, and I&#8217;m not claiming to be <strong>the</strong> geek in Jesus&#8217; camp. &#8220;Kingdom Front&#8221; without any articles is just fine with me. :-)</p>
<p>What do you think? Like the new name? Or hate it?</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/now-known-as-kingdom-geek/feed/</wfw:commentRss>
		</item>
		<item>
		<title>That Hell-and-Damnation Stuff</title>
		<link>http://rickbeckman.org/that-hell-and-damnation-stuff/</link>
		<comments>http://rickbeckman.org/that-hell-and-damnation-stuff/#comments</comments>
		<pubDate>Sun, 11 May 2008 17:18:10 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Quote]]></category>

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

		<category><![CDATA[Jesus Christ]]></category>

		<category><![CDATA[pop theology]]></category>

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=446</guid>
		<description><![CDATA[The best religious inspiration is humor, not the hell-and-damnation stuff. Barb (or is it Mary?)

Religion might thrive on ear-pleasing humor; the same can never be said of true Christianity, for the source of our faith spoke a great deal about Hell &#38; damnation. If we are being honest in fulfilling the Great Commission, teaching believers [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The best religious inspiration is humor, not the hell-and-damnation stuff. <cite><a href="http://religion-place.info/2008/05/some-creative-name-boards-of-us.html#comment-6457104960431824811">Barb (or is it Mary?)</a></cite></p>
</blockquote>
<p><em>Religion</em> might thrive on ear-pleasing humor; the same can never be said of true Christianity, for the source of our faith spoke a great deal about Hell &amp; damnation. If we are being honest in fulfilling the Great Commission, teaching believers all that Jesus has taught us, then our message should be quite full of &#8220;the hell-and-damnation stuff.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/that-hell-and-damnation-stuff/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Salacious Sexual Sermon Series</title>
		<link>http://rickbeckman.org/salacious-sexual-sermon-series/</link>
		<comments>http://rickbeckman.org/salacious-sexual-sermon-series/#comments</comments>
		<pubDate>Thu, 08 May 2008 21:31:08 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

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

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

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=444</guid>
		<description><![CDATA[It is not uncommon for me to come across a couple of Web pages each week showcasing churches which are using sermon series on various sex-related subjects in a propagandist move to fill their seats; usually, these pages showcase such churches by pointing out how &#8220;idolatrous&#8221; such sermon series are, how we ought to preach [...]]]></description>
			<content:encoded><![CDATA[<p>It is not uncommon for me to come across a couple of Web pages each week showcasing churches which are using sermon series on various sex-related subjects in a propagandist move to fill their seats; usually, these pages showcase such churches by pointing out how &#8220;idolatrous&#8221; such sermon series are, how we ought to preach Christ and only Him crucified.</p>
<p>Fair enough, but did Christ not say that the preaching and believing of the Gospel was just the beginning, that discipleship ought to take place, that all which He has taught should be communicated to others? Did Paul not state that the whole of Scriptures was profitable for edification?</p>
<p>I agree that using propagandist tactics to stir up controversy and attract the unsaved into churches is a stupid move; I disagree that elders should not be teaching the flock about sex &#8212; the dangers and the joys thereof. In teaching the whole counsel of God, are they just to skip the Song of Solomon, or is there an unwritten rule that they cannot teach that book without hyper-spiritualizing everything into referring to either Yahweh &amp; Israel or Christ &amp; the Church?</p>
<p>If elders aren&#8217;t teaching the flock about sex (and if the flock are in turn not passing the same values to their children), who do you think is going to be teaching them about it?</p>
<p>Something to think about.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/salacious-sexual-sermon-series/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweaking Your Blog: Customizing Avatars</title>
		<link>http://rickbeckman.org/tweaking-your-blog-customizing-avatars/</link>
		<comments>http://rickbeckman.org/tweaking-your-blog-customizing-avatars/#comments</comments>
		<pubDate>Thu, 08 May 2008 03:36:47 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

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

		<category><![CDATA[how to]]></category>

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=443</guid>
		<description><![CDATA[How to customize avatars using WordPress' built in gravatar function.]]></description>
			<content:encoded><![CDATA[<p class="note">Relevant WordPress versions: 2.5+. These instructions are invalid for WordPress versions less than 2.5 as built-in avatar functionality did not yet exist.</p>
<p>Okay, now <a href="/tweaking-your-blog-adding-avatars/">that you&#8217;ve got your blog hooked up with avatars</a>, making use of WordPress&#8217; built in gravatars feature&#8230; Now what?</p>
<p>So your avatars are 96 pixels square&#8230; <strong>but what if that&#8217;s way too big (or small)?</strong></p>
<p>And what about users who don&#8217;t have a Gravatar account yet&#8230; <strong>Do they have to be content receiving a bland default image?</strong> Isn&#8217;t the point of avatars to make users <em>visually uniquely identifiable?</em></p>
<h3>Size Does<del>n&#8217;t</del> Matter</h3>
<p>Unless you have already tweaked it on your own, the avatars code in your comments.php file should still look like this: <code>&lt;?php echo get_avatar($comment); ?&gt;</code></p>
<p>And that code outputs avatars which are 96 pixels square. But let&#8217;s be honest, <strong>you want more choice than that.</strong> Luckily for you, that choice exists, and it&#8217;s as easy as dropping a number into our <code>get_avatar()</code> call.</p>
<ul>
<li>Want 16 pixel avatars (the same size as favicon / bookmark icons)?<br />
 <code>&lt;?php echo get_avatar($comment, 16); ?&gt;</code></li>
<li>Want 32 pixel avatars?<br />
 <code>&lt;?php echo get_avatar($comment, 32); ?&gt;</code></li>
<li>Want 64 pixel avatars?<br />
 <code>&lt;?php echo get_avatar($comment, 64); ?&gt;</code></li>
<li>Want 80 pixel avatars?<br />
 <code>&lt;?php echo get_avatar($comment, 80); ?&gt;</code></li>
<li>Want 512 pixel avatars (this is the max size)?<br />
 <code>&lt;?php echo get_avatar($comment, 512); ?&gt;</code></li>
</ul>
<p><strong>Easy, no?</strong> I&#8217;m not sure why you would ever want to use avatars that are 512 pixels square, but the option is there. I prefer anything from 80 to 100 myself, but the layout and feel of your site may require something much smaller or even a bit bigger. <strong>Don&#8217;t be afraid to experiment or get feedback from your readers regarding what they like best.</strong> Remember, you have the luxury of reading all of your content and comments via the admin panel; your readers are the ones who will be on the site reading, and they will be face to face with the avatars much more than you are.</p>
<h3>Daring Defaults&#8230;</h3>
<p>&#8230;because in all honesty, <strong>this image gets just a tiny bit old:</strong></p>
<p><img class="aligncenter" src="http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536" alt="default gravatar" width="96" height="96" /></p>
<p>The good folks at Gravatar &amp; WordPress, however, have provided us a super easy way to switch that image out for something else entirely.</p>
<p>Again, we&#8217;ll be tweaking the same bit of avatar code, and we&#8217;ll be assuming a default size of 96 pixels; however, this time, we&#8217;ll be adding something: <code>&lt;?php echo get_avatar($comment, 96, $default); ?&gt;</code>. It is that third added parameter, <code>$default</code>, that we&#8217;ll be playing with.</p>
<p>First, I&#8217;ll show you <strong>how to add any image you want</strong> as the default avatar (best results will be achieved with a square image). Like the gray silhouette image above, your chosen default image will be shown for anyone who does not have a gravatar linked to the email address they are using while commenting.</p>
<pre><code>&lt;?php echo get_avatar($comment, 96, 'http://address_to_image/'); ?&gt;</code></pre>
<p>Yes, it <strong>really is that simple.</strong> Say, for instance, you want all of your default-avatar commentators to be reminded that, even though they do not have a gravatar, they can still <strong>live long and prosper,</strong> use this code:</p>
<pre><code>&lt;?php echo get_avatar($comment, 96, 'http://fellowship-hall.com/images/avatars/gallery/Star%20Trek%20-%20TOS/Spock5.gif'); ?&gt;</code></pre>
<p>The result? It&#8217;s beautiful:</p>
<p><img class="aligncenter" src="http://www.gravatar.com/avatar/9f61408e3afb633e50cdf1b20de6f466?s=96&amp;d=http%3A//fellowship-hall.com/images/avatars/gallery/Star%2520Trek%2520-%2520TOS/Spock5.gif&amp;r=R" alt="default gravatar" width="96" height="96" /></p>
<p>Suppose, though, that you don&#8217;t want the majority of your commentators to have the same avatar; <strong>you want avatars &#8212; even though they are default &#8212; to be uniquely theirs.</strong> Well, have it your way with one of the following three options (again, assuming a 96 pixel size, which you are free to adjust as needed):</p>
<ul>
<li><strong>Wavatars:</strong><br />
 <code>&lt;?php echo get_avatar($comment, 96, 'wavatar'); ?&gt;</code></li>
<li><strong>MonsterIDs:</strong><br />
 <code>&lt;?php echo get_avatar($comment, 96, 'monsterid'); ?&gt;</code></li>
<li><strong>Identicons:</strong><br />
 <code>&lt;?php echo get_avatar($comment, 96, 'identicon'); ?&gt;</code></li>
</ul>
<p><strong>You may be wondering what these options look like,</strong> and understandably so! For your pleasure, then, I coded up this <a rel="me external" href="http://beckman-ministries.com/misc/gravatar.php">quick little demonstration page which shows off 100 of each type of gravatar</a> (fair warning that it may take a while to load for dial-up users as there are <strong>300 images total</strong> which will be loading).</p>
<p>The beauty of this method is that the wavatar, monsterID, or identicon which is generated for a user is generated from the unique hash of their email address. In other words, no matter how many sites they comment on which are using, for example, identicon avatars, their avatar will look the same!</p>
<p>And because collisions (or duplicates) of hashes are so rare, no two users should ever have the same default avatar show up if you choose to use one of those three methods.</p>
<h3>Wrap Up</h3>
<p>I have heard talk that in the next major version of WordPress (2.6), the option to select wavatars, monsterIDs, or identicons may be built in to the Settings -&gt; Discussion panel of the admin area; if that is the case, perhaps we may also some day see an option for selecting the size as well. If those things come to pass, you&#8217;re welcome to ignore this post as it will no longer be relevant.</p>
<p>Still, until then, I hope this has given you some ideas of how easily you can spice up the avatars of your site, setting them apart from other sites which may be using strictly vanilla avatars.</p>
<p>I didn&#8217;t even touch style sheets, either, which can be used to add borders and all sorts of other effects to your avatars. Once you get into styling, though, the possibilities are quite limitless, and I simply invite you to dive into the wealth of information about styling images available via Google!</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/tweaking-your-blog-customizing-avatars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweaking Your Blog: Adding Avatars</title>
		<link>http://rickbeckman.org/tweaking-your-blog-adding-avatars/</link>
		<comments>http://rickbeckman.org/tweaking-your-blog-adding-avatars/#comments</comments>
		<pubDate>Wed, 07 May 2008 02:20:39 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

		<category><![CDATA[how to]]></category>

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=442</guid>
		<description><![CDATA[How to enable gravatars on a WordPress blog and apply some basic styling to them.]]></description>
			<content:encoded><![CDATA[<p class="note">Relevant WordPress versions: 2.5+. These instructions are invalid for WordPress versions less than 2.5 as built-in avatar functionality did not yet exist.</p>
<p><img class="aligncenter" title="Rick Beckman's gravatar" src="http://en.gravatar.com/avatar/358289179c159bfc4661ab4e6b16f1fc?s=120&amp;r=any" alt="a man wearing glasses" width="120" height="120" /></p>
<p><strong>Avatars</strong> are a very neat feature of message boards; without even the slightest bit of looking for (much less, reading) a user&#8217;s name next to a post, the avatar announces who made the post. It&#8217;s no secret that an image is more easily recognizable than is text &#8212; even if the image is made up of text! If you&#8217;re not sure what I mean, think of the McDonald&#8217;s, Coca-Cola, Pepsi, Burger King, or Disney brands, and you&#8217;ll know that logos and symbols (which, in a way, are companies&#8217; avatars) are powerful recognition tools. The Golden Arches wouldn&#8217;t be hurt too much by not having &#8220;McDonald&#8217;s&#8221; written beneath them, nor does the tri-circle silhouette of Mickey Mouse leave any doubt as to what company is responsible.</p>
<p>But message boards aren&#8217;t the only places that users are leaving their marks online these days. We live in the era of the blog, and with millions of places online to post comments, how can a person do so in a manner that makes them as easily identifiable to as many people as possible, just as avatars allowed on message boards?</p>
<p><strong>Gravatars</strong> are an answer (among several) to that; using the Gravatar service, you can associate an avatar to an email address, just as you would associate an avatar with a username on a message board. From that point on, any time you comment on a gravatar-enabled blog using that email address, your gravatar will show up.</p>
<p>And whatever your gravatar may be &#8212; whether it is a picture of you, a picture of your cat, or your favorite quote done up in glitter &#8212; it will start showing up all across the Web, as often you comment.</p>
<p>There are two inherent beauties to gravatars as well: If you have posted a lot of comments on a site that wasn&#8217;t gravatar-enabled but they turn it on sometime in the future, your gravatar will show up on all your past comments automatically. Likewise, if you ever change which gravatar is associated with your email address, that change will automatically take place across the Web.</p>
<p>You already run a WordPress blog, though, and you&#8217;re even savvy enough to be running version 2.5 or newer. Kudos. And you say you want your comments to be gravatar-enabled? Well, let&#8217;s get you started!</p>
<h3>Enabling Gravatars</h3>
<ol>
<li>Enter your blog admin area, and browse to the Settings page.</li>
<li>Browse to the Discussion sub-page, and scroll to the bottom to find the &#8220;Avatars&#8221; settings.</li>
<li>You&#8217;ll want to select &#8220;Enable Avatars&#8221; if it isn&#8217;t already selected.</li>
<li>Choose whichever rating is most appropriate for your blog. Be aware that if your blog is ever manually reviewed for a Web filtering service, your blog may be flagged mature on account of R or X rated avatars if they are spotted in your comments.</li>
<li>Click &#8220;Save Changes&#8221; at the bottom, and breathe a sigh of relief&#8230; You&#8217;re done!</li>
</ol>
<p>&#8230; Wait&#8230; Gravatars still don&#8217;t show up in your comments? Didn&#8217;t you enable them? You did save the changes, right? &#8230; Hmmm&#8230; Oh, <em>that&#8217;s</em> right: there&#8217;s a tiny bit of code that you need to add to your theme&#8217;s comments file! Well, no time like the present&#8230;</p>
<ol>
<li>Browse to the Design page of your admin area.</li>
<li>Browse to the Theme Editor sub-page, and select &#8220;Comments (comments.php)&#8221; from the list of files on the right.</li>
<li>Locate the comment loop; it begins with a bit of code that most likely looks like this: <code>&lt;?php foreach ($comments as $comment) { ?&gt;</code></li>
<li>Within the comment loop, notice two bits of code:
<ul>
<li><code>&lt;?php comment_author_link(); ?&gt;</code> &#8212; echoes the comment author&#8217;s name, linking it to his or her website, if one was provided.</li>
<li><code>&lt;?php comment_text(); ?&gt;</code> &#8212; echoes the content of the comment itself.</li>
</ul>
</li>
</ol>
<p>I point out those two bits of code because knowing where they fall in the code gives you a general idea of how the comment is laid out. It helps to know the layout if we&#8217;re going to be inserting an image into each comment, right?</p>
<ol>
<li>I prefer to place the avatars code on a new line just prior to <code>&lt;?php comment_text(); ?&gt;</code>, but you are free to experiment with different placements.</li>
<li>The <strong>most basic code to add to enable avatars</strong> looks like this: <code>&lt;?php echo get_avatar($comment); ?&gt;</code></li>
<li>Save the file, and check your blog to see the results!</li>
</ol>
<p>Be careful not to paste that code between any <code>&lt;?php ?&gt;</code> tags which may already be present in the code. If you notice errors or layout problems (keeping in mind, though, we haven&#8217;t applied style to the avatars yet), take note of what the error indicates and see if relocating the avatar code resolves the issue.</p>
<p>Okay, now, after all that, <strong>you should finally have a gravatars-enabled blog!</strong> Go ahead, browse around the various comments you have received and see who does or doesn&#8217;t have a gravatar; anyone who doesn&#8217;t will be given a spiffy default image so that they won&#8217;t feel left out.</p>
<h3>Basic Styling</h3>
<p>If you&#8217;re lucky, <em>your theme may already have styling in place for avatars.</em> Basically, if you&#8217;re looking at your avatars and they look just fine to you, excellent!</p>
<p>However, if the avatars could use a little jazzing up, here is a bit of style you can add to your theme&#8217;s style sheet.</p>
<ol>
<li>Return to the Theme Editor and select either style.css or custom.css (if your theme supports it) from the file list.</li>
<li>At the bottom of that file (or elsewhere if you are maintaining some level of organization within the file), insert the following code:
<ul>
<li><strong>If you want avatars to float to the right of the comment:</strong> <code>img.avatar { float: right; margin: 0 0 1em 1em; }</code></li>
<li><strong>If you want avatars to float to the left of the comment:</strong> <code>img.avatar { float: left; margin: 0 1em 1em 0; }</code></li>
</ul>
</li>
<li>Save the file, clear your browser&#8217;s cache, and visit (again) a post which has comments.</li>
<li>Check how the avatars look, and feel free to adjust the styling as desired. The limit is your own imagination!</li>
</ol>
<h3>Wrap Up</h3>
<p>And that&#8217;s it! You should now have gravatars enabled on your blog, and they should be styled just enough to fit into your theme.</p>
<p>But what if you don&#8217;t want gravatars as small as 80 pixels square? Or what if 80 pixels is far too huge? Maybe you feel the default image is, well, ugly. Stay tuned!</p>
<h3>Update</h3>
<p><strong>I dropped the ball on the &#8220;most basic code&#8221; bit above;</strong> I left out a very necessary piece of code which caused the code I did post, if used, to <em>only show the default avatar.</em> My bad, and my apologies.</p>
<p>Rather than <code>&lt;?php echo get_avatar(); ?&gt;</code> you will want to use this instead: <code>&lt;?php echo get_avatar($comment); ?&gt;</code></p>
<p>Again, <strong>sorry!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/tweaking-your-blog-adding-avatars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Posting Code - a WordPress / Plugins Test</title>
		<link>http://rickbeckman.org/posting-code-a-wordpress-plugins-test/</link>
		<comments>http://rickbeckman.org/posting-code-a-wordpress-plugins-test/#comments</comments>
		<pubDate>Tue, 06 May 2008 23:41:30 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=438</guid>
		<description><![CDATA[Most of you can likely ignore this post; it primarily exists so that I can easily check whether or not WordPress (or plugins or whatever) is properly handling code. The source of the code is linked to below if you&#8217;re involved at all with WordPress testing / development. To everyone else, well, thanks for stopping [...]]]></description>
			<content:encoded><![CDATA[<p>Most of you can likely ignore this post; it primarily exists so that I can easily check whether or not WordPress (or plugins or whatever) is properly handling code. The source of the code is linked to below if you&#8217;re involved at all with WordPress testing / development. To everyone else, well, thanks for stopping by for this one. :-)</p>
<p>Moving right along&#8230;</p>
<p>The following is meant to test WordPress&#8217; handling of code posted via the Visual Editor.</p>
<h3>Instructions</h3>
<ul>
<li>Copy the contents of <a href="http://rickbeckman.org/wp-content/uploads/2008/05/example.txt">example.txt</a></li>
<li>In the Write Post screen of WordPress, switch to the HTML view (required as we are pasting in direct HTML).</li>
<li>Paste the previously copied contents into the post.</li>
<li>Switch back to the Visual Editor &#8212; everything should look as it is meant to regarding spacing, characters, and so on.</li>
<li>Save the post (publishing it is unnecessary) or let it auto-save, and then preview it.</li>
<li>Go down through the examples, checking WordPress&#8217; work.</li>
</ul>
<h3>Examples</h3>
<p>Basic HTML: <code>&lt;a href="http://example.tld/?foo=1&amp;bar=2"&gt;Link's Text&lt;/a&gt;</code><br />
 Explanation: Angle brackets &amp; ampersands should be output to the browser as encoded entities; single &amp; double quotes should not be made curly.</p>
<p>Basic entities: <code>... -- --- " ' &amp; &lt; &gt;</code><br />
 Explanation: The characters should be directly output to the browser (or encoded for such output, as in the case of the ampersand). Three dots should not be made into an ellipsis; double and triple dashes should not be converted into en or em dashes; quotes should not be made curly; ampersands and angle brackets should be encoded to maintain (X)HTML validity.</p>
<p>Block example (PRE tag wrapping our CODE tag):</p>
<pre><code>&lt;a href="http://example.tld/?foo=1&amp;bar=2"&gt;Link's Text&lt;/a&gt;

	...    --    ---    "    '    &amp;    &lt;    &gt;</code></pre>
<p>As above in the HTML &amp; entities examples, all quotes and symbols should appear properly, as they do when seen via the Visual Editor. In the three blank lines, tabs should be preserved (2 in the first blank line, then 3, then 2 again). Prior to the final line of characters, a tab should be preserved. Lastly, between each character example in the final line, four ordinary spaces should be preserved.</p>
<p>Finally, here are the examples again marked up using shortcodes in order to test such plugins (if you do not have a [ code ] shortcode enabled, ignore the following:</p>
<p>Basic HTML: <code>&lt;a href="http://example.tld/?foo=1&amp;bar=2"&gt;Link's Text&lt;/a&gt;</code></p>
<p>Basic entities: <code>... -- --- " ' &amp; &lt; &gt;</code></p>
<p>Block example (PRE tag wrapping our CODE tag). Disclosure: For this final example, I am not using a [ pre ] shortcode; the Visual Editor does not recognize text wrapped in [ pre ] tags as preformatted, and so it strips out linebreaks and tabs. However, the Visual Editor provides an easy enough means of making text preformatted, so I&#8217;m using the PRE HTML tag in this final example:</p>
<pre><code>&lt;a href="http://example.tld/?foo=1&amp;bar=2"&gt;Link's Text&lt;/a&gt; 		 		

	...    --    ---    "    '    &amp;    &lt;    &gt;</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/posting-code-a-wordpress-plugins-test/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What Did Jesus Look Like?</title>
		<link>http://rickbeckman.org/what-did-jesus-look-like/</link>
		<comments>http://rickbeckman.org/what-did-jesus-look-like/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 03:29:24 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

		<category><![CDATA[Jesus Christ]]></category>

		<guid isPermaLink="false">http://rickbeckman.org/?p=431</guid>
		<description><![CDATA[<img class="aligncenter size-full wp-image-432" title="&#34;Head of Christ&#34; by Warner Sallman" src="http://rickbeckman.org/wp-content/uploads/2008/04/headofchrist-1.jpg" alt="a painted portrait of Jesus Christ by Warner Sallman" width="345" height="480" />

Is this what Jesus looked like, or does the Jesus who was and is and who is to come look entirely different? Many people have offered answers, and in this post, I offer up my two cents. Enjoy.]]></description>
			<content:encoded><![CDATA[<p>Spawned by a conversation from work today, I just want to briefly throw in my $0.02 in answering the question of what Jesus might have looked like.</p>
<p><img class="aligncenter size-full wp-image-432" title="&quot;Head of Christ&quot; by Warner Sallman" src="http://rickbeckman.org/wp-content/uploads/2008/04/headofchrist-1.jpg" alt="a painted portrait of Jesus Christ by Warner Sallman" width="345" height="480" /></p>
<p>Most of you likely recognize the above painting; it is <span class="title">Head of Christ</span> by Warner Sallman, and it&#8217;s about as ubiquitous as could be &#8212; I see it pop up everywhere.</p>
<p>Jesus is shown to be a Caucasian man of fair features. Blue eyes. Dirty blonde hair.<sup>1</sup> Full, well-groomed beard. And, dare I say it, handsome.</p>
<p>And that&#8217;s certainly the common perception of Jesus, at least in America (and perhaps most of Western culture). With only slight modifications, Jesus was brought to the big screen as interpreted by Jim Caviezel in <span class="title">The Passion of the Christ</span>:</p>
<p><img class="aligncenter size-full wp-image-433" title="Jim Caviezel as Jesus Christ in &quot;The Passion of the Christ&quot;" src="http://rickbeckman.org/wp-content/uploads/2008/04/12915__caviezel_l.jpg" alt="a hooded Jim Caviezel portraying Jesus Christ" width="300" height="400" /></p>
<p>And again we see Christ portrayed as a fair featured Caucasian with a full-beard and flowing hair (albeit brunette this time). Caviezel&#8217;s Jesus was brown-eyed rather than blue but was still well within the &#8220;accepted image&#8221; of Jesus.</p>
<p>This portrayal of Jesus is by no means new either; here&#8217;s an example from almost 1,000 years ago:<sup>2</sup></p>
<p><img class="aligncenter size-full wp-image-434" title="Christ Pantocrator" src="http://rickbeckman.org/wp-content/uploads/2008/04/christ_pantocrator_daphne1090-1100.jpg" alt="a mosaic of Jesus Christ from the dome in the Church of Daphne, Athens, Greece" width="280" height="400" /></p>
<p>Back then, Jesus was still portrayed as a light-skinned individual with flowing brown hair, full beard, and brown eyes &#8212; not much different from Caviezel&#8217;s Jesus, except back then the portrayal wasn&#8217;t as apparently handsome.</p>
<p>Perhaps as culture has become increasingly focused upon outward beauty, our perception of Christ has been modified accordingly. As many skeptics to Christianity are apt to point out, people create God in their own image; I&#8217;m inclined to agree. Far too many professed Christians worship a God &amp; Christ modeled more after themselves than the Scriptures describe. This is unsurprising; the more alike to us God is, the fewer things for which He&#8217;ll judge us!</p>
<p>Yet Christianity does not leave us the option of creating God or His Christ in our own image. Idolatry and the making of images is strongly forbidden by the Scriptures:</p>
<blockquote class="bible old-testament esv"><p>&#8220;You shall not make for yourself a carved image, or any likeness of anything that is in heaven above, or that is in the earth beneath, or that is in the water under the earth. <sup>5</sup>You shall not bow down to them or serve them, for I the <span class="yhwh">Lord</span> your God am a jealous God, visiting the iniquity of the fathers on the children to the third and the fourth generation of those who hate me, <sup>6</sup>but showing steadfast love to thousands of those who love me and keep my commandments.&#8221; <cite>Exodus 20:4-6, </cite><abbr class="initialism" title="English Standard Version">ESV</abbr></p>
</blockquote>
<blockquote class="bible new-testament esv"><p>Claiming to be wise, they became fools, <sup>23</sup>and exchanged the glory of the immortal God for images resembling mortal man and birds and animals and creeping things. <cite>Romans 1:22, 23, </cite><abbr class="initialism" title="English Standard Version">ESV</abbr></p>
</blockquote>
<p>There are probably a thousand ways to justify the use of images of Christ in worship, but it&#8217;s something with which I am absolutely uncomfortable. By doing so, am I exchanging &#8220;the glory of the immortal God&#8221; with an image of a mortal man which may or may not be what Jesus actually looked like? Knowing how much God absolutely <em>hates</em> idolatry, it is frankly something I&#8217;d rather not even risk.</p>
<p>Still, images of Jesus are pervasive throughout culture &#8212; both &#8220;sacred&#8221; and &#8220;secular,&#8221; if such a distinction exists.</p>
<p>People have done so throughout the history of Christianity, and we&#8217;ll continue to do so till He returns. Some have even applied science to the question, arriving at this conclusion:<sup>3</sup></p>
<p><img class="aligncenter size-full wp-image-435" title="A More Realistic Jesus Christ" src="http://rickbeckman.org/wp-content/uploads/2008/04/storyjesus.jpg" alt="an image of what Jesus Christ may have actually looked like" width="220" height="242" /></p>
<p>The beard is still present, but now Jesus is presented with much more Middle Eastern features &#8212; most notably darker skin. His features are noticeably less fair than in the more popular representations. Also of note is the length of this Jesus&#8217; hair; it is considerably shorter and much more likely to be a realistic interpretation; most males in Roman society at that time (of which Judea was a part) would have sported a Caesar cut due to the influence of the emperor. Jesus wasn&#8217;t a long-haired counter-cultural rebel as often assumed &#8212; He was far more counter to the Jewish religious leaders than He ever was to the Roman authorities who admitted to finding no fault in Him.</p>
<p>Still, the above image is just speculation, still an attempt to depict the Almighty as a mortal man. And as accurate as it may be in depicting what Jesus looked like while walking the earth, it is inevitably flawed in probably substantial ways.</p>
<p>So what do we know about what Jesus looked like?</p>
<ul>
<li>Jesus had a beard, for hair was ripped from it during His torture prior to His death according to the Prophet.<sup>4</sup></li>
<li>Jesus was not an attractive man. The Prophet foresaw Jesus as a man of &#8220;no form or majesty that we should look at him, and no beauty that we should desire him.&#8221;<sup>5</sup> This is hardly surprising, for beauty is fleeting &amp; empty;<sup>6</sup> this is hard for us to imagine in a day when a person&#8217;s popularity is so dependent on how well they appeal to the desires of the eyes.<sup>7</sup></li>
</ul>
<p>That&#8217;s about all of which I&#8217;m aware regarding His appearance during the Incarnation, prior to His death. The Prophet also tells us that during the beatings and torture prior to His death, Jesus&#8217; face was marred and disfigured than anyone&#8217;s face ever was,<sup>8</sup> but that describes what Jesus looked like only for so brief a time.</p>
<p>(Isn&#8217;t it interesting that Isaiah described what Christ looked like more so than any of the Gospel or Epistle writers did? I find that interesting anyway. Any ideas why that may have been?)</p>
<p>If you&#8217;ve read this far, you&#8217;re probably disappointed that I haven&#8217;t really shared much of what Jesus looked like, and you&#8217;re right &#8212; I haven&#8217;t. I don&#8217;t have an answer to the question of what Jesus <em>looked</em> like, but would you be happy with an answer of what Jesus <em>looks</em> like today?</p>
<p>Apostle John gives a glorious glimpse of the Christ in power &amp; glory, as He is in Heaven today and as He will be when He returns to Earth triumphant over His enemies.</p>
<ul>
<li>Revelation 1:13 &#8212; Jesus is described as the &#8220;son of man,&#8221; a messianic title, and we are told He wears a long robe with a golden sash around His chest. That is what He wears.</li>
<li>Revelation 1:14 &#8212; We are told that His hair is white, &#8220;like white wool, like snow.&#8221; The glisten and intensity of His eyes is described as being &#8220;like a flame of fire.&#8221;</li>
<li>Revelation 1:15 &#8212; His feet were like &#8220;burnished bronze, refined in a furnace.&#8221; The choice of metal may imply that His skin is bronze in color; that metal is used at all may reflect the strength of His feet and legs. This verse also tells us His voice is &#8220;like the roar of many waters.&#8221; When he speaks, Creation listens.</li>
<li>Revelation 1:16 &#8212; What He speaks is as a sharp two-edged sword, which is symbolic of the Word of God, which cuts asunder the soul and the spirit. Whatsoever Christ speaks, it is God&#8217;s Word. We are also told His face shines like the sun in full strength.</li>
</ul>
<p>It&#8217;s possible that the description of Jesus here is only meant in an allegorical nature, but it&#8217;s unlikely. Compare some of the descriptions to how He appeared during the Transfiguration;<sup>9</sup> there His face literally shown and His apparel was literally white. I see no reason that the descriptions of Revelation 1 shouldn&#8217;t describe the resurrected Christ in all His glory.</p>
<p>But wait, there&#8217;s more! Revelation 19:11-16 gives us a few more details of He who is called Faithful and True. Here He is riding a white horse followed by His armies; He is crowned with many crowns, and His eyes are still as a fire. His clothing is still white robes, only now they are dipped in blood &#8212; either of His saints whom He will avenge or His own by which He has saved His followers. Across His robes and down His thigh is written His title, &#8220;King of kings and Lord of lords.&#8221;</p>
<p>Out of His mouth still comes the Word of God, only then it will effect the throwing down of the nations, which He shall rule with a rod of iron, slaying all those who will not rule over Him.<sup>10</sup></p>
<p>Certainly Jesus is the Good Shepherd. He overflows with compassion and love, for He is the embodiment thereof. Yet what does He look like? The most descriptive account we have is of a blood-stained Warrior King which ought to strike fear into the hearts of all those unprepared for His imminent return.</p>
<p>Get the effeminate and handsome Jesus portraits out of your mind, and make sure you are worshiping He who is the Image and the Glory of God Almighty.</p>
<ol class="footnotes"><li id="footnote_0_431" class="footnote">It looked brunette to me until Alicia informed me otherwise; who am I to argue with the art school graduate?</li><li id="footnote_1_431" class="footnote"><span class="title">Christ Pantocrator</span> (or, &#8220;Christ the All-Mighty&#8221;), a mosaic from the Church of Daphne in Athens, Greece.</li><li id="footnote_2_431" class="footnote">http://archives.cnn.com/2002/TECH/science/12/25/face.jesus/index.html</li><li id="footnote_3_431" class="footnote">Isaiah 50:6.</li><li id="footnote_4_431" class="footnote">Isaiah 53:2.</li><li id="footnote_5_431" class="footnote">Proverbs 31:30.</li><li id="footnote_6_431" class="footnote">1 John 2:16.</li><li id="footnote_7_431" class="footnote">Isaiah 52:14.</li><li id="footnote_8_431" class="footnote">Matthew 17:2.</li><li id="footnote_9_431" class="footnote">Luke 19:27.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/what-did-jesus-look-like/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What Do These Have in Common?</title>
		<link>http://rickbeckman.org/what-do-these-have-in-common/</link>
		<comments>http://rickbeckman.org/what-do-these-have-in-common/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 23:42:14 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Links]]></category>

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=430</guid>
		<description><![CDATA[The Book of Mormon. The alien autopsy video. The Priory of Sion. Piltdown Man. The idea of being born gay. 
If you said that they are all hoaxes, you&#8217;re absolutely right. If you&#8217;ve bought into the idea that gays are born that way, you may want to reconsider. (Thanks, Chester Street.)
]]></description>
			<content:encoded><![CDATA[<p>The Book of Mormon. The alien autopsy video. The Priory of Sion. Piltdown Man. The idea of being born gay. <span id="more-430"></span></p>
<p>If you said that they are all hoaxes, you&#8217;re absolutely right. If you&#8217;ve bought into the idea that gays are born that way, <a rel="external" href="http://www.massresistance.org/docs/gen/08a/born_gay_hoax/index.html">you may want to reconsider</a>. (Thanks, <a rel="external" href="http://chesterstreet.blogspot.com/2008/04/there-is-no-gay-gene.html">Chester Street</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/what-do-these-have-in-common/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Miley Cyrus: Still a G-rated Role Model?</title>
		<link>http://rickbeckman.org/miley-cyrus-still-a-g-rated-role-model/</link>
		<comments>http://rickbeckman.org/miley-cyrus-still-a-g-rated-role-model/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 21:25:28 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

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

		<category><![CDATA[Miley Cyrus]]></category>

		<category><![CDATA[pop culture]]></category>

		<category><![CDATA[Vanity Fair]]></category>

		<guid isPermaLink="false">http://rickbeckman.org/?p=428</guid>
		<description><![CDATA[Miley Cyrus goes topless save for a sheet for a magazine photo spread and then goes on to say that she&#8217;s embarrassed by them. Did she really not expect them to sully her &#8220;G-rated&#8221; reputation? (And frankly, there&#8217;s been enough pictures of her spread around the Internet at this point that if anyone still thinks [...]]]></description>
			<content:encoded><![CDATA[<p>Miley Cyrus goes topless save for a sheet for a magazine photo spread and then goes on to say that she&#8217;s embarrassed by them. Did she really not expect them to sully her &#8220;G-rated&#8221; reputation? (And frankly, there&#8217;s been enough pictures of her spread around the Internet at this point that if anyone still thinks she&#8217;s G-rated at heart, then they&#8217;re certainly not using the same G-rating I grew up with!)</p>
<p>That said, Mr. Hugh McBride (a fellow <a title="The Fellowship Hall Christian Forums" rel="external me" href="http://fellowship-hall.com/">Hallian</a>) <a title="Miley Cyrus Pictures and the FLDS Fiasco" rel="external" href="http://hughmcbryde.blogspot.com/2008/04/miley-cyrus-pictures-and-flds-fiasco.html">brings to light a number of what I think to be good points</a>, the biggest of which is while we worry about Mormon polygamists (allegedly) fawn and pawn over underage girls in their society, fifteen year old Miley Cyrus gets away with posing half bare naked in the same magazine which in the past has featured, for instance, nude photos of pregnant Britney Spears. Excellent footsteps to be following in, Ms. G-rated.</p>
<p>I just want to shake my head. &#8220;Role model,&#8221; they call her&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/miley-cyrus-still-a-g-rated-role-model/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What Evidence Would Make You Abandon the Faith?</title>
		<link>http://rickbeckman.org/what-evidence-would-make-you-abandon-the-faith/</link>
		<comments>http://rickbeckman.org/what-evidence-would-make-you-abandon-the-faith/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 19:18:34 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

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

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

		<category><![CDATA[Jesus Christ]]></category>

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=424</guid>
		<description><![CDATA[I came across a fair share of skeptics online who ask what evidence it would take for a Christian to admit that their faith is vain. Generally I come across that question asked on a static website which doesn&#8217;t illicit comments, so I&#8217;m throwing my answer out here just for fun. There are two things [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a fair share of skeptics online who ask what evidence it would take for a Christian to admit that their faith is vain. Generally I come across that question asked on a static website which doesn&#8217;t illicit comments, so I&#8217;m throwing my answer out here just for fun. There are two things which I would accept; the first is very specific and definitely makes Christianity vain while the other is more general and may simply represent an insufficient knowledge of Christianity itself.</p>
<ol>
<li>Concrete evidence that Christ remains in the grave. Simply stating that &#8220;the dead do not rise&#8221; is not a valid argument; Christ&#8217;s resurrection in defeat of death was by definition an exception of the norm. As Paul said, if Christ is not risen, then we believe in vain and ought to be pitied.</li>
<li>Something which contradicts the Orthodox Christian worldview. This one&#8217;s tricky because it seems like everyone would have something which seems to contradict the Christian faith. The problem of evil is perhaps the most famous example, yet evil (specifically Satan &amp; sin) fit the Christian worldview perfectly and are necessary within it. Evolution and the big bang are other answers which may be offered. Fair enough, but that unbelievers would come to contradictory understandings of the universe is foreseen and accepted in biblical theology; such things are by no means contradictory.</li>
</ol>
<p>So yes, there is evidence which I would accept that would make me rethink my faith; however, I can stand very steadfastly in my faith knowing that the object of my faith is He who was dead and is alive forevermore.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/what-evidence-would-make-you-abandon-the-faith/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Indent the First Line of Your Paragraphs in WordPress 2.5</title>
		<link>http://rickbeckman.org/how-to-intent-the-first-line-of-your-paragraphs-in-wordpress-25/</link>
		<comments>http://rickbeckman.org/how-to-intent-the-first-line-of-your-paragraphs-in-wordpress-25/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 23:17:51 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=423</guid>
		<description><![CDATA[A couple of solutions for solving the problem of how to indent the first lines of paragraphs in posts made using WordPress 2.5.]]></description>
			<content:encoded><![CDATA[<p>This is in response to christine, who has asked <a href="http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/#comment-1223901">elsewhere</a> how to intent the first lines of her paragraphs in WordPress 2.5; my response in the comments there was less than satisfactory due to the stripping of my code examples and so on, so here is a slightly more formal tutorial.</p>
<p>As you&#8217;re reading this, notice that (unless I sometime in the future change the style ;-) the paragraphs have no intention on their first lines; open most any book, though, and you&#8217;ll see that paragraphs are generally indented. I&#8217;m not entirely sure what the typographical reasons behind line indenting in aside from simple aesthetics (in other words, it just looks better), but that isn&#8217;t the question I&#8217;m here to answer. So, onward: How can we indent the first lines in WordPress?</p>
<p style="text-indent: 2em;">Good question. And it&#8217;s one easily answered, I think. Actually, there are two answers. The first is a stopgap solution that certainly works but it&#8217;s less than ideal for a variety of reasons; the biggest of these reasons is that the solution involves inline styling, which is just bad semantics. The second solution is a more permanent, much more flexible solution which involves adding the indention code to your blog&#8217;s design&#8217;s style sheet. The big advantage of the second solution over the first is that if you ever want to change the style of the indented paragraphs, you only have to change the code in one place (the style sheet) rather than in every post wherein you used indented paragraphs.</p>
<p>Did you notice the previous paragraph was indented? Thanks to the stopgap solution, I was able to quickly add the indent in to show off what we&#8217;re talking about here. Now, what is that solution?</p>
<p>Well, I usually write using the &#8220;Visual&#8221; tab of the editor in WordPress 2.5; to do my text indention, I had to switch over to the &#8220;HTML&#8221; tab briefly. I had already typed my paragraph, so it was simply a matter of wrapping sufficiently styled <code>P</code> tags around it, such that the final result looks like this:</p>
<pre><code>&lt;p style="text-indent: 2em;"&gt;Good question. And it's one easily answered, I think. Actually, there are two answers. The first is a stopgap solution that certainly works but it's less than ideal for a variety of reasons; the biggest of these reasons is that the solution involves inline styling, which is just bad semantics. The second solution is a more permanent, much more flexible solution which involves adding the indention code to your blog's design's style sheet. The big advantage of the second solution over the first is that if you ever want to change the style of the indented paragraphs, you only have to change the code in one place (the style sheet) rather than in every post wherein you used indented paragraphs.&lt;/p&gt;</code></pre>
<p>That&#8217;s all there is to it! Simply encase your paragraphs in styled <code>P</code> tags as I have done above, and your paragraphs will indent on the first lines. Nice and simple!</p>
<p>If, however, you want a more permanent solution, you&#8217;ll want to open up your design&#8217;s style sheet, usually named <code>style.css</code>. Your theme may support a <code>custom.css</code> or some other upgrade-proof style sheet that you can tweak without worrying about future theme upgrades; if it does, edit it rather than <code>style.css</code>.</p>
<p>Then, on a new line at the bottom, insert code similar to this &#8212; you can format it similarly to the rest of the code in the file if you so choose:</p>
<pre><code>p {
	text-indent: 2em;
}</code></pre>
<p>After saving that file and refreshing your browser cache, you should notice that all <code>P</code> tags are now indented on your site. If this causes indention in places you don&#8217;t want, you&#8217;ll want to be more specific in your styling; isolate the name of the container which holds your post content and add it to the style so that only paragraphs within post content are styled. For WordPress&#8217; default Kubrick theme, you could use this code:</p>
<pre><code>.entry p {
	text-indent: 2em;
}</code></pre>
<p>You&#8217;re encouraged to try your own variations; if you break the style, all you have to do is remove that bit of styling to revert your changes!</p>
<p>And if anyone needs any more help (especially you, christine), just drop a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/how-to-intent-the-first-line-of-your-paragraphs-in-wordpress-25/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More Than Just Friends? (Ruth &#038; Naomi and David &#038; Jonathan)</title>
		<link>http://rickbeckman.org/more-than-just-friends-ruth-naomi-and-david-jonathan/</link>
		<comments>http://rickbeckman.org/more-than-just-friends-ruth-naomi-and-david-jonathan/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 04:16:41 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Essays]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://rickbeckman.org/?p=415</guid>
		<description><![CDATA[<img class="aligncenter size-full wp-image-416" title="Homosexuality and the Bible" src="http://rickbeckman.org/wp-content/uploads/2008/04/homosexuality-bible.png" alt="A triangular rainbow pendant necklace on top of a Bible with an image of the cross on its cover" width="425" height="110" />

Were Naomi &#038; Ruth lesbians? Were David &#038; Jonathan gay? Or have homosexual advocates co-opted beautiful accounts of family and friendship in order to find support from the Scriptures? (And who can blame them? If the Scriptures support you, who can stand against you?)]]></description>
			<content:encoded><![CDATA[<p><a class="external_no" rel="external nofollow" href="http://www.flickr.com/photos/marukusan/2076793704/"><img class="aligncenter size-full wp-image-416" title="Homosexuality and the Bible" src="http://rickbeckman.org/wp-content/uploads/2008/04/homosexuality-bible.png" alt="A triangular rainbow pendant necklace on top of a Bible with an image of the cross on its cover" width="425" height="110" /></a></p>
<p>Recent conversation around the workplace has called to mind a few notes I scratched down probably six years ago in hopes that I&#8217;d some day give some attention to the subject.</p>
<p>Today, that piece of paper is covered with all sorts of things &#8212; doodling, Morse Code dashes &amp; dots, an assortment of numbers, some math, the letters &#8220;p&#8221; and &#8220;pm,&#8221; and and tick marks counting something lost to the passage of time (&#8221;III II I I II I&#8221;).</p>
<p>I titled the page, &#8220;Were Ruth and David Homosexuals?&#8221; For years, the only content attached to that question were the verse references in question: Ruth 1:16, 17; 2:10, 11 and 1 Samuel 18:3, 4; 20:41; 2 Samuel 1:26.</p>
<p>I&#8217;m sure that back then I had stumbled across some website making the claim that homosexuality was okay because David &amp; Ruth apparently were. What that website was, I have no idea, and apparently keeping accurate citations (or citations of any kind, for that matter) wasn&#8217;t a practice I had taken to heart back then.</p>
<p>Before I go anywhere with this, let me just get out of the way that I do not believe homosexuality is an acceptable practice; it is forbidden not only in the Law of Moses but also in Romans 1, and it renders one as guilty before God as idolatry, lying, adultery, or murder would. I consider those things to be <em>nonnegotiable,</em> but you are welcome to <a title="The Fellowship Hall Christian Forums" rel="me external" href="http://fellowship-hall.com/">discuss it if you&#8217;d like</a>.</p>
<h3>Naomi &amp; Ruth</h3>
<p>Here are the relevant verses as noted above (English Standard Version):</p>
<blockquote class="old-testament bible esv"><p>But Ruth said, &#8220;Do not urge me to leave you or to return from following you. For where you go I will go, and where you lodge I will lodge. Your people shall be my people, and your God my God. <sup>17</sup>Where you die I will die, and there will I be buried. May the <span class="yhwh">Lord</span> do so to me and more also if anything but death parts me from you.&#8221; <cite>Ruth 1:16, 17</cite></p>
<p>Then she fell on her face, bowing to the ground, and said to him, &#8220;Why have I found favor in your eyes, that you should take notice of me, since I am a foreigner?&#8221; <sup>11</sup>But Boaz answered her, &#8220;All that you have done for your mother-in-law since the death of your husband has been fully told to me, and how you left your father and mother and your native land and came to a people that you did not know before. <cite>Ruth 2:10, 11</cite></p></blockquote>
<p>In light of the first two verses quoted, there are people who claim Ruth &amp; Naomi&#8217;s relationship was akin go a married couple&#8217;s.</p>
<p>However, nowhere in the Book of Ruth is it even hinted at that Naomi &amp; Ruth shared a sexual or otherwise physical relationship, thereby removing homo<em>sexuality</em> from the equation.</p>
<p>Actually, what we do see are two women &#8212; who, according to the second set of verses, were in-laws &#8212; who were devoted family. In the opening verses of Ruth, we read that Naomi was married to Elimelech, and they had two sons, Mahlon and Chilion.</p>
<p>While sojourning in the foreign country of Moab, Mahlon and Chilion took wives, one of whom was Ruth. By the time we reach verse 5, we find that Elimelech, Mahlon, and Chilion had all died, leaving Naomi with her two daughters-in-law, Ruth and Orpah.</p>
<p>In verse 7, Naomi begins to return to her homeland of Judah, and in verse 8 she urges both her daughters-in-law to return to their natural mothers. From verses 9 through 13, the daughters resist leaving Naomi, while Naomi bears her hearts to them, desiring that they return where they should be able to marry, for Naomi would be incapable of bearing them husbands again, and even if she could, would they really wait for them to grow up (v. 13)?</p>
<p>Ultimately, Orpah caves to Naomi&#8217;s pleas and returns to Moab. Ruth, however, clings to her mother-in-law (vv. 14, 15).</p>
<p>There is a familial devotion expressed here which is all but so often lost or neglected in our world, and to our shame Ruth &amp; Naomi are not even related by blood! Actually, if you really want something to think about, the relationship between Naomi and her two daughters-in-law show us the <em>validity</em> of the &#8220;in-law&#8221; family; if marriage is but a mere social contract, then the &#8220;in-law&#8221; family is but a formality, a legal stipulation to the marriage contract. However, if what the Bible says is true and that marriage takes two people and <em>unites them as one</em> in the eyes of our Heavenly Father, then the &#8220;in-law&#8221; family is just as much a family as the natural family is.</p>
<p>In other words, Ruth shows fervent devotion to Naomi <em>because she is viewing her as her <span class="foreign">de facto</span> mother.</em></p>
<p>Later in the Book of Ruth (most of chapters 3 and 4), we see that the relationship between Ruth &amp; Boaz blossom into a marriage (4:13). All of this was initiated by Naomi, who told her daughter-in-law to follow Boaz to where he sleeps, to uncover his feet, and to lay down with him (3:4).<sup>1</sup> And all of this culminates with the birth of Obed to Ruth and Boaz (4:13, 17), a child which it seems was adopted by Noami, a terrific blessing which brought untold fulfillment to her life after having lost her husband and two sons already.</p>
<p>This child Obed would eventually become the grandfather of the mighty King David; what a legacy! And what a segue, for we now turn to David and Jonathan.</p>
<h3>David &amp; Jonathan</h3>
<p>Here are the relevant verses as noted above (English Standard Version):</p>
<blockquote class="old-testament bible esv"><p>Then Jonathan made a covenant with David, because he loved him as his own soul. <sup>4</sup>And Jonathan stripped himself of the robe that was on him and gave it to David, and his armor, and even his sword and his bow and his belt. <cite>1 Samuel 18:3, 4</cite></p>
<p>And as soon as the boy had gone, David rose from beside the stone heap and fell on his face to the ground and bowed three times. And they kissed one another and wept with one another, David weeping the most. <cite>1 Samuel 20:41</cite></p>
<p>I am distressed for you, my brother Jonathan; very pleasant have you been to me; your love to me was extraordinary, surpassing the love of women. <cite>2 Samuel 1:26</cite></p></blockquote>
<p>It is a mark of shame against our the hearts of men that the accounts of Jonathan and David could be read and that &#8220;They must have been gay&#8221; is the thought that comes to mind. Sinners, for whatever reasons, want badly to be justified by the Bible in what they do &#8212; murderers claim they received a vision from God, dictators claim they&#8217;re inaugurating God&#8217;s kingdom, racists and bigots claim they are righteously judging, and homosexuals find the closest thing they can to unpunished homosexuality in the Scriptures.</p>
<p class="alert">Bear in mind &#8212; always bear in mind &#8212; that if someone comes to you rejecting the teaching of Romans 1 about unnatural sexuality, <sup>2</sup> chances are that it&#8217;s because they have willingly exchanged the truth of God for a lie, God having given them over to lustful impurity.<sup>3</sup></p>
<p>What then is going on between David and Jonathan?</p>
<p>Well, if you ask me,<sup>4</sup> it seems as though we are getting a glimpse of what real friendship is all about.</p>
<p>We see that a covenant or bond was formed between the two men and that they loved each other as themselves. Does not Proverbs 17:17 tell us that a friend <em>loves at all times?</em> Does not the Law which David and Jonathan live under<sup>5</sup> call everyone to love others <em>even as they loved themselves?</em></p>
<p>Jonathan&#8217;s act of stripping himself of his robes and vestments and placing them upon David was symbolic, not by any means erotic; Jonathan was the son of Saul, the then king of Israel. His robes were royal. By placing them upon David, he was declaring his loyalty to David as the next rightful king of Israel, a fact which he states very plainly in 1 Samuel 23:17.</p>
<p>We also see David and Jonathan sharing an apparently very emotional moment. Sadly, and again to our culture&#8217;s shame, the expression of sadness via crying is seen as a sign of weakness. Not only do we often hear &#8220;big girls don&#8217;t cry,&#8221; but how many men do you know who honestly see no shame in expressing sadness or grief &#8212; either in themselves or others? That&#8217;s another topic altogether which could easily take over this post if I let it, but here are two close friends who are as brothers to one another&#8230; They are on the verge of going separate ways, and they have no assurance that they&#8217;ll ever see each other again.</p>
<p>Wouldn&#8217;t that make you sad? I know it certainly would me, and we can see that it did David as well; the King James Version states that they weeped and that David &#8220;exceeded.&#8221; He didn&#8217;t just cry more, he <em>exceedingly</em> cried more. We would expect that, for David had more that he was leaving &#8212; a wife and family, friends, the sanctuary and service of God, and so on.</p>
<p>After some time has passed, Jonathan was slain, which brings us to the third relevant passage quoted above. David in mourning Jonathan&#8217;s passing praises their friendship.</p>
<p>David calls Jonathan brother, for that they certainly were as David had wed Jonathan&#8217;s sister. Yet Proverbs 18:24 tells us that there is &#8220;a friend who sticks closer than a brother.&#8221; Likewise the Law mentions a &#8220;friend who is as your own soul&#8221;<sup>6</sup> It&#8217;s almost as if the biblical idea of a &#8220;soul mate&#8221; has less to do with marriage and more to do with a best friend, which is interesting to say the least: marriage partners are described as being &#8220;one flesh&#8221; while a certain friend may be &#8220;as your own soul.&#8221;</p>
<p>We haven&#8217;t quoted it yet, but 1 Samuel 18:1 says in no uncertain terms that &#8220;the soul of Jonathan was knit to the soul of David, and Jonathan loved him as his own soul.&#8221; Any thoughts on that?</p>
<p>While mourning for Jonathan and praising his friend, David confesses that the love Jonathan had for him was wonderful, surpassing the love of women. David was married to both Ahinoam and Abigail, and the Targum<sup>7</sup> renders the passage as &#8220;more than the love of two women.&#8221;<sup>8</sup></p>
<p>This isn&#8217;t &#8220;physical love&#8221; as would be required be anyone wishing homosexuality to be read into the lives of these men; the sexual act is never referred to as &#8220;love making&#8221; and is never equated with love in the Scriptures. Rather, to love someone is to be selfless toward him or her. Give 1 Corinthians 13 a good read over for what it means to love.</p>
<p>That Jonathan loved David even more than his wives is a great testament to the friendship the two shared.</p>
<h3>In Conclusion</h3>
<p>I&#8217;ve written more than I had originally planned and more than I probably should have &#8212; there is great value in brevity, I&#8217;ve learned. Still, I hope I have shown that neither Ruth and Naomi nor David and Jonathan were homosexuals, despite whatever other faults they may have possessed (David at one point being a lustful, adulterating murderer, for example).</p>
<p>To warp or twist the lives of these &#8220;heroes of the Bible&#8221; is to do them a great injustice and does little more than to show the biblical illiteracy of the one doing the warping.</p>
<p>What we do see from the two pairs, though, are things from which we may learn. In both instances, we see family devotion across marriages &#8212; Naomi was Ruth&#8217;s mother-in-law; David was Jonathan&#8217;s brother-in-law &#8212; and we also see what friendship ought to be like.</p>
<p>Friendship is by no means shallow. It is a selfless bond with another person with whom you ought to express love as laid out in 1 Corinthians 13. This kind of friendship is becoming altogether too hard to find nowadays; if you have found a friend with whom your soul is &#8220;knit,&#8221; count your blessings, and thank the Lord for knitting you both together.</p>
<ol class="footnotes"><li id="footnote_0_415" class="footnote">It&#8217;s a good thing Ruth had never read <a class="title" rel="external nofollow" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FKissed-Dating-Goodbye-Attitude-Relationships%2Fdp%2F1576730360&amp;tag=rickbeckman-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">I Kissed Dating Goodbye</a>, or she wouldn&#8217;t have been caught dead spending the night at the feet of someone who wasn&#8217;t her husband! Kind of an interesting situation Naomi has Ruth getting into here&#8230; &#8230;With a closer look, though, Naomi has already pointed out that Boaz is kin and by right of Deuteronomy 25:5 should become Ruth&#8217;s husband.</li><li id="footnote_1_415" class="footnote">Romans 1:26, 27.</li><li id="footnote_2_415" class="footnote">Romans 1:24, 25.</li><li id="footnote_3_415" class="footnote">You are asking me, right?</li><li id="footnote_4_415" class="footnote">Leviticus 19:18.</li><li id="footnote_5_415" class="footnote">Deuteronomy 13:6.</li><li id="footnote_6_415" class="footnote">An ancient Aramaic translation of the Hebrew Scriptures.</li><li id="footnote_7_415" class="footnote">See John Gill&#8217;s commentary.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/more-than-just-friends-ruth-naomi-and-david-jonathan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Earth Day</title>
		<link>http://rickbeckman.org/happy-earth-day/</link>
		<comments>http://rickbeckman.org/happy-earth-day/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 00:57:27 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://rickbeckman.org/?p=422</guid>
		<description><![CDATA[Happy Earth Day.
May our attentions, our praise, our love, gratefulness, and adoration ever fall upon the blessed Redeemer Jesus Christ, the only hope for this cursed Earth.
]]></description>
			<content:encoded><![CDATA[<p>Happy Earth Day.</p>
<p>May our attentions, our praise, our love, gratefulness, and adoration ever fall upon the blessed Redeemer Jesus Christ, the only hope for this cursed Earth.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickbeckman.org/happy-earth-day/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
