<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: God&#8217;s Design for our lives, as a PHP Script</title>
	<atom:link href="http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/</link>
	<description>It's more complicated than 42.</description>
	<lastBuildDate>Sat, 04 Sep 2010 11:44:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michael Visser</title>
		<link>http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/comment-page-1/#comment-2013</link>
		<dc:creator>Michael Visser</dc:creator>
		<pubDate>Sun, 26 Apr 2009 02:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://lukecarbis.com/blog/?p=362#comment-2013</guid>
		<description>Already spotted an error... can you spot it? meh!</description>
		<content:encoded><![CDATA[<p>Already spotted an error&#8230; can you spot it? meh!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Visser</title>
		<link>http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/comment-page-1/#comment-2012</link>
		<dc:creator>Michael Visser</dc:creator>
		<pubDate>Sun, 26 Apr 2009 02:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://lukecarbis.com/blog/?p=362#comment-2012</guid>
		<description>/* Import theBalance() */
include(&#039;personalDoctrine.php&#039;);

/* Load values of system variables */
public $humanity, $kindness, $gentleness;
public $inhumanity, $hate, $greed;

$alive = true;
$man = $humanity + $kindness + $gentleness;
$machine = $inhumanity + $hate + $greed;

while($alive) {
	theBalance($man,$machine);
} else {
	end;
}</description>
		<content:encoded><![CDATA[<p>/* Import theBalance() */<br />
include(&#8217;personalDoctrine.php&#8217;);</p>
<p>/* Load values of system variables */<br />
public $humanity, $kindness, $gentleness;<br />
public $inhumanity, $hate, $greed;</p>
<p>$alive = true;<br />
$man = $humanity + $kindness + $gentleness;<br />
$machine = $inhumanity + $hate + $greed;</p>
<p>while($alive) {<br />
	theBalance($man,$machine);<br />
} else {<br />
	end;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/comment-page-1/#comment-2010</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 25 Apr 2009 23:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://lukecarbis.com/blog/?p=362#comment-2010</guid>
		<description>I love it!</description>
		<content:encoded><![CDATA[<p>I love it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AKX</title>
		<link>http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/comment-page-1/#comment-2009</link>
		<dc:creator>AKX</dc:creator>
		<pubDate>Sat, 25 Apr 2009 23:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://lukecarbis.com/blog/?p=362#comment-2009</guid>
		<description>You can&#039;t redefine die(), since it&#039;s a language intrinsic.

Also, integer values should not be defined or compared as strings. 

&quot;sin++&quot; probably needs to be &quot;$sin++&quot;, because otherwise &quot;sin&quot; would be either a constant (and you can&#039;t modify constants), interpreted as the string &quot;sin&quot;, or the trigonometric function sin(). 

while($alive == true) could be simplified as while($alive) (as can all the , and to avoid one extra $deathAge--; you could add break; after $alive=false;.

Also, it&#039;s not really good practice to have user-definable variables so deep inside the code ($acceptChrist).

Oh, and the global variables aren&#039;t, due to PHP&#039;s retar... unconventional scoping, visible within the functions, unless you define them with global $...; within the function body.

... And the if clause lacks parentheses in eatForbiddenFruit.</description>
		<content:encoded><![CDATA[<p>You can&#8217;t redefine die(), since it&#8217;s a language intrinsic.</p>
<p>Also, integer values should not be defined or compared as strings. </p>
<p>&#8220;sin++&#8221; probably needs to be &#8220;$sin++&#8221;, because otherwise &#8220;sin&#8221; would be either a constant (and you can&#8217;t modify constants), interpreted as the string &#8220;sin&#8221;, or the trigonometric function sin(). </p>
<p>while($alive == true) could be simplified as while($alive) (as can all the , and to avoid one extra $deathAge&#8211;; you could add break; after $alive=false;.</p>
<p>Also, it&#8217;s not really good practice to have user-definable variables so deep inside the code ($acceptChrist).</p>
<p>Oh, and the global variables aren&#8217;t, due to PHP&#8217;s retar&#8230; unconventional scoping, visible within the functions, unless you define them with global $&#8230;; within the function body.</p>
<p>&#8230; And the if clause lacks parentheses in eatForbiddenFruit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Talia</title>
		<link>http://lukecarbis.com/blog/2009/04/gods-design-for-our-lives-as-a-php-script/comment-page-1/#comment-2008</link>
		<dc:creator>Talia</dc:creator>
		<pubDate>Sat, 25 Apr 2009 23:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://lukecarbis.com/blog/?p=362#comment-2008</guid>
		<description>This great honey. What an excellent way of explaining Jesus!</description>
		<content:encoded><![CDATA[<p>This great honey. What an excellent way of explaining Jesus!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
