<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Marcus French</title>
	<atom:link href="http://marcuspfrench.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://marcuspfrench.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 26 Aug 2011 03:18:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='marcuspfrench.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Marcus French</title>
		<link>http://marcuspfrench.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://marcuspfrench.wordpress.com/osd.xml" title="Marcus French" />
	<atom:link rel='hub' href='http://marcuspfrench.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Adding Secondary Validation to Drupal&#8217;s User Login</title>
		<link>http://marcuspfrench.wordpress.com/2011/08/26/adding-secondary-validation-to-drupals-user-login/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/08/26/adding-secondary-validation-to-drupals-user-login/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 03:12:11 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=75</guid>
		<description><![CDATA[Want to add another layer of authentication to the default Drupal login? Say, by calling a company&#8217;s internal web service?  Here&#8217;s a clean approach I&#8217;ve taken.  Notice that we are inserting our secondary authentication into the validators, rather than overriding anything.  Also notice that if we authenticate against our local Drupal DB, there&#8217;s no reason [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=75&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Want to add another layer of authentication to the default Drupal login? Say, by calling a company&#8217;s internal web service?  Here&#8217;s a clean approach I&#8217;ve taken.  Notice that we are inserting our secondary authentication into the validators, rather than overriding anything.  Also notice that if we authenticate against our local Drupal DB, there&#8217;s no reason to look at the secondary web service or DB, but rather we only look if our default local authentication failed.  Then, if we authenticate against our secondary source, we create a user to be used later on.</p>
<p>One additional note, you should do some checking when a user&#8217;s local authentication fails, but they exist in your secondary web service or DB, in case their password has changed there.</p>
<p>/*<br />
* See user_login_default_validators in user.module<br />
*/<br />
function MYMODULE_validators() {<br />
return array(&#8216;user_login_name_validate&#8217;, &#8216;user_login_authenticate_validate&#8217;, MYMODULE_authenticate_validate&#8217;, &#8216;user_login_final_validate&#8217;, &#8216;MYMODULE_final_validate&#8217;);<br />
}</p>
<p>function MYMODULE_final_validate($form, &amp;$form_state){<br />
// DO SOME FINAL VALIDATION OR OVERRIDE DEFAULT LOGIN ERRORS<br />
}</p>
<p>function MYMODULE_authenticate_validate($form, &amp;$form_state){<br />
// has the user failed local authentication?<br />
if (empty($form_state['uid'])) {<br />
$username = $form_state['values']['name'];<br />
$password = trim($form_state['values']['pass']);<br />
$user=user_load_by_name($username);</p>
<p>// DO SOME USER AUTHENTICATION AGAINST ANOTHER WEB SERVICE OR DB</p>
<p>$newUser= array(<br />
&#8216;name&#8217; =&gt; $username,<br />
&#8216;pass&#8217; =&gt; $password,<br />
&#8216;mail&#8217; =&gt; $email, // get email from service or db<br />
&#8216;status&#8217; =&gt; 1,<br />
&#8216;roles&#8217; =&gt; $roles, // get roles according to rules against service or db<br />
);<br />
user_save(null, $newUser);<br />
$form_state['uid'] = user_authenticate($username,$password);<br />
}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=75&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/08/26/adding-secondary-validation-to-drupals-user-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>New Article on &#8220;Jesus People Transforming Society&#8221;</title>
		<link>http://marcuspfrench.wordpress.com/2011/07/02/new-article-on-jesus-people-transforming-society/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/07/02/new-article-on-jesus-people-transforming-society/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 16:33:08 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[The Kingdom of God]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=69</guid>
		<description><![CDATA[Just wrote this on VOR, it came straight out of my heart: &#8220;Jesus People Transforming Society&#8221; My main lament is the idea that when we present our &#8216;wisdom&#8217; in the public sphere, rather than functioning as spokesmen for a connected community that is demonstrating that wisdom from another age, we are perceived as mere individual [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=69&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just wrote this on VOR, it came straight out of my heart: <a href="http://www.voiceofrevolution.com/2011/07/02/jesus-people-transforming-society/">&#8220;Jesus People Transforming Society&#8221; </a></p>
<p>My main lament is the idea that when we present our &#8216;wisdom&#8217; in the public sphere, rather than functioning as spokesmen for a connected community that is demonstrating that wisdom from another age, we are perceived as mere individual conservative christian men sharing our opinions, for that is indeed all we are. I&#8217;m not saying we shouldn&#8217;t be doing that, but I see that as the bare minimum, and it is nothing that is particularly compelling.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=69&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/07/02/new-article-on-jesus-people-transforming-society/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>Where I&#8217;m at&#8230;</title>
		<link>http://marcuspfrench.wordpress.com/2011/06/11/where-im-at/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/06/11/where-im-at/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 18:50:19 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[The Kingdom of God]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=67</guid>
		<description><![CDATA[if i feed myself on what god hasn&#8217;t done, it creates the environment for a spirit of offense to rise in my heart. if i feed myself on what god is doing, or has done, i cultivate awareness that has nothing but thankfulness, and joy, and celebration. it creates a context in which i can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=67&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>if i feed myself on what god hasn&#8217;t done, it creates the environment for a spirit of offense to rise in my heart. if i feed myself on what god is doing, or has done, i cultivate awareness that has nothing but thankfulness, and joy, and celebration. it creates a context in which i can thrive.</p>
<p>if i filled my heart with what the church isn&#8217;t doing right, i become an embittered preacher, some would call me a revival preacher. i don&#8217;t know why the angrier a person is against sin, the more he&#8217;s considered to be a revivalist. we&#8217;ve got to have more to say than what we&#8217;re against. if i fill my heart with what the church isn&#8217;t doing, i&#8217;m offended over all the apathy, and all the prayerlessness&#8230; I&#8217;ve done that, I&#8217;ve filled my heart with that stuff before, it doesn&#8217;t have any good fruit in me, it doesn&#8217;t have any good fruit through me, i&#8217;ve tried it. you can try it if you want, but i can tell you i&#8217;ve tasted that pie, it&#8217;s no good, throw that one out.</p>
<p>when you feed yourself on what god is doing, you&#8217;re encouraged, when you feed yourself on what the church is doing right, you get encouraged. and not only do you get encouraged, you become a person that draws others into the privilege of experiencing his pleasure and his will.</p>
<p>if i stand up here and say &#8216;you know, there&#8217;s just not enough prayer going on in this house, if you guys don&#8217;t repent, i feel like god&#8217;s just going to judge us.&#8217; oh, man, let&#8217;s seek god together, that makes me want to get hungry for god, doesnt it? what happens is i start warring against the courage that you brought into the house. the way you bring people into significance, is you speak to that god thing that&#8217;s in them, and you draw them forward, you say &#8216;here, come with me, we&#8217;re going this direction.&#8217; you bring people with you, you don&#8217;t preach them into it. you may feel better at the end, because you got rid of your frustration, but you haven&#8217;t done a thing to change the world&#8217;s circumstances.</p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=67&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/06/11/where-im-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>OT Study</title>
		<link>http://marcuspfrench.wordpress.com/2011/03/31/ot-study/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/03/31/ot-study/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 01:43:49 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[christopher wright]]></category>
		<category><![CDATA[old testament]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=64</guid>
		<description><![CDATA[In the midst of the many intrinsically fascinating reasons why Old Testament study is so rewarding, the most exciting to me is the way it never fails to add new depths to my understanding of Jesus. I find myself aware that in reading the Hebrew scriptures I am handling something that gives me a closer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=64&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>In the midst of the many intrinsically fascinating reasons why Old Testament study is so rewarding, the most exciting to me is the way it never fails to add new depths to my understanding of Jesus. I find myself aware that in reading the Hebrew scriptures I am handling something that gives me a closer common link with Jesus than any archaeological artefact could do.</p>
<p>For these are the words he read. These were the stories he knew. These were the songs he sang. These were the depths of wisdom and revelation and prophecy that shaped his whole view of “life, the universe and everything”. This is where he found his insights into the mind of his Father God. Above all, this is where he found the shape of his own identity and the goal of his own mission. In short, the deeper you go into understanding the Old Testament, the closer you come to the heart of Jesus.</p></blockquote>
<p>&#8211; Christopher Wright</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=64&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/03/31/ot-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>Jennifer Knust Critiques</title>
		<link>http://marcuspfrench.wordpress.com/2011/03/13/jennifer-knust-critiques/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/03/13/jennifer-knust-critiques/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 23:31:39 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[Sexuality and Gender]]></category>
		<category><![CDATA[cnn]]></category>
		<category><![CDATA[dr. michael brown]]></category>
		<category><![CDATA[homosexuality]]></category>
		<category><![CDATA[jennifer knust]]></category>
		<category><![CDATA[robert gagnon]]></category>
		<category><![CDATA[scripture]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=62</guid>
		<description><![CDATA[Critiques of Jennifer Knust&#8217;s CNN article on homosexuality and the bible, from Dr. Michael Brown and Robert Gagnon have come forth in the recent weeks. See them below: Critique of Jennifer Knust CNN Article on Homosexuality and the Bible Followup Knust Critique From Robert Gagnon: Mixed Message or Consistent Message?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=62&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Critiques of <a href="http://www.voiceofrevolution.com/tag/jennifer-knust/">Jennifer Knust&#8217;s</a> CNN article on homosexuality and the bible, from Dr. Michael Brown and Robert Gagnon have come forth in the recent weeks. See them below:</p>
<p><a href="http://www.voiceofrevolution.com/2011/02/15/critique-of-jennifer-knust-cnn-article-on-homosexuality-and-the-bible/">Critique of Jennifer Knust CNN Article on Homosexuality and the Bible</a></p>
<p><a href="http://www.voiceofrevolution.com/2011/03/04/followup-knust-critique-from-robert-gagnon-mixed-message-or-consistent-message/">Followup Knust Critique From Robert Gagnon: Mixed Message or Consistent Message?</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=62&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/03/13/jennifer-knust-critiques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>Reading List</title>
		<link>http://marcuspfrench.wordpress.com/2011/03/12/reading-list/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/03/12/reading-list/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 14:02:20 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[The Kingdom of God]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[old testament ethics]]></category>
		<category><![CDATA[paul copan]]></category>
		<category><![CDATA[scrum]]></category>
		<category><![CDATA[unbroken]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=60</guid>
		<description><![CDATA[Reading List&#8230; Just finished: - Is God a Moral Monster? by Paul Copan - The Bible Among the Myths by John Oswalt - Unbroken by Laura Hillenbrand &#8230; Currently reading: - The Historical Reliability of the Gospels by Craig Blomberg - Scrum and XP from the Trenches by Henrik Kniberg<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=60&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Reading List&#8230;<br />
Just finished:<br />
- Is God a Moral Monster? by Paul Copan<br />
- The Bible Among the Myths by John Oswalt<br />
- Unbroken by Laura Hillenbrand<br />
&#8230;<br />
Currently reading:<br />
- The Historical Reliability of the Gospels by Craig Blomberg<br />
- Scrum and XP from the Trenches by Henrik Kniberg</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=60&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/03/12/reading-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Why I Look Forward to the End&#8221; by Joel Richardson</title>
		<link>http://marcuspfrench.wordpress.com/2011/03/11/why-i-look-forward-to-the-end-by-joel-richardson/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/03/11/why-i-look-forward-to-the-end-by-joel-richardson/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 01:52:42 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[The Kingdom of God]]></category>
		<category><![CDATA[christianity]]></category>
		<category><![CDATA[end]]></category>
		<category><![CDATA[end times]]></category>
		<category><![CDATA[eschatology]]></category>
		<category><![CDATA[jesus]]></category>
		<category><![CDATA[jesus' return]]></category>
		<category><![CDATA[joel richardson]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[revelation]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=57</guid>
		<description><![CDATA[We just posted an article by Joel Richardson concerning the end times that I think is quite helpful: http://www.voiceofrevolution.com/2011/03/10/why-i-look-forward-to-the-end/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=57&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We just posted an article by Joel Richardson concerning the end times that I think is quite helpful: <a href="http://www.voiceofrevolution.com/2011/03/10/why-i-look-forward-to-the-end/">http://www.voiceofrevolution.com/2011/03/10/why-i-look-forward-to-the-end/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=57&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/03/11/why-i-look-forward-to-the-end-by-joel-richardson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>Craig on Ehrman&#8217;s apostasy</title>
		<link>http://marcuspfrench.wordpress.com/2011/01/24/craig-on-ehrmans-apostasy/</link>
		<comments>http://marcuspfrench.wordpress.com/2011/01/24/craig-on-ehrmans-apostasy/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 02:43:05 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[apostasy]]></category>
		<category><![CDATA[bart ehrman]]></category>
		<category><![CDATA[jesus]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[resurrection]]></category>
		<category><![CDATA[william lane craig]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=54</guid>
		<description><![CDATA[&#8220;Ehrman had, it seems to me, a flawed theological system of beliefs as a Christian.  It seems that at the center of his web of theological beliefs was biblical inerrancy, and everything else, like the beliefs in the deity of Christ and in his resurrection, depended on that. Once the center was gone, the whole [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=54&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;Ehrman had, it seems to me, a flawed theological system of beliefs as a Christian.  It seems that at the center of his web of theological beliefs was biblical inerrancy, and everything else, like the beliefs in the deity of Christ and in his resurrection, depended on that. Once the center was gone, the whole web soon collapsed.  But when you think about it, such a structure is deeply flawed.  At the center of our web of beliefs ought to be some core belief like the belief that God exists, with the deity and resurrection of Christ somewhere near the center.  The doctrine of inspiration of Scripture will be somewhere further out and inerrancy even farther toward the periphery as a corollary of inspiration.  If inerrancy goes, the web will feel the reverberations of that loss, as we adjust our doctrine of inspiration accordingly, but the web will not collapse because belief in God and Christ and his resurrection and so on don’t depend upon the doctrine of biblical inerrancy.&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=54&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2011/01/24/craig-on-ehrmans-apostasy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>Too Funny</title>
		<link>http://marcuspfrench.wordpress.com/2010/10/09/too-funny/</link>
		<comments>http://marcuspfrench.wordpress.com/2010/10/09/too-funny/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 02:09:17 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://marcuspfrench.wordpress.com/?p=50</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=50&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://marcuspfrench.wordpress.com/2010/10/09/too-funny/"><img src="http://img.youtube.com/vi/7A4ivBF5mak/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=50&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2010/10/09/too-funny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
		<item>
		<title>Putting it simply&#8230;</title>
		<link>http://marcuspfrench.wordpress.com/2010/08/23/48/</link>
		<comments>http://marcuspfrench.wordpress.com/2010/08/23/48/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 02:56:38 +0000</pubDate>
		<dc:creator>Marcus French</dc:creator>
				<category><![CDATA[Sexuality and Gender]]></category>
		<category><![CDATA[christianity]]></category>
		<category><![CDATA[nt wright]]></category>
		<category><![CDATA[sexuality]]></category>

		<guid isPermaLink="false">https://marcuspfrench.wordpress.com/2010/08/23/48/</guid>
		<description><![CDATA[&#8220;Throughout the early centuries of Christianity, when every kind of sexual behavior ever known to the human race was widely practiced throughout ancient Greek and Roman society, the Christians, like the Jews, insisted that sexual activity was to be restricted to the marriage of a man and a woman. The rest of the world, then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=48&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;Throughout the early centuries of Christianity, when every kind of<br />
sexual behavior ever known to the human race was widely practiced<br />
throughout ancient Greek and Roman society, the Christians, like the<br />
Jews, insisted that sexual activity was to be restricted to the<br />
marriage of a man and a woman. The rest of the world, then as now,<br />
thought they were mad. The difference, alas, is that today half the<br />
church seems to think so, too.&#8221; &#8211; NT Wright, &#8220;Simply Christian&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marcuspfrench.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marcuspfrench.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marcuspfrench.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marcuspfrench.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marcuspfrench.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marcuspfrench.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marcuspfrench.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marcuspfrench.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=marcuspfrench.wordpress.com&amp;blog=12429376&amp;post=48&amp;subd=marcuspfrench&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://marcuspfrench.wordpress.com/2010/08/23/48/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/290d7c24b473ece592fd4819791e3a6e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marcus French</media:title>
		</media:content>
	</item>
	</channel>
</rss>
