<?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: What the Hell is Wrong With Me?</title>
	<atom:link href="http://www.barneyb.com/barneyblog/2009/05/07/what-the-hell-is-wrong-with-me/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.barneyb.com/barneyblog/2009/05/07/what-the-hell-is-wrong-with-me/</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<lastBuildDate>Thu, 11 Sep 2014 09:58:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan Mawby</title>
		<link>https://www.barneyb.com/barneyblog/2009/05/07/what-the-hell-is-wrong-with-me/comment-page-1/#comment-177189</link>
		<dc:creator>Ryan Mawby</dc:creator>
		<pubDate>Mon, 11 May 2009 14:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=903#comment-177189</guid>
		<description>Snap! I&#039;m primarily an ActionScript developer but have spent the past month or so up to my eyeballs in PHP and Zend - I have enjoyed the break!</description>
		<content:encoded><![CDATA[<p>Snap! I'm primarily an ActionScript developer but have spent the past month or so up to my eyeballs in PHP and Zend &#8211; I have enjoyed the break!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kay Smoljak</title>
		<link>https://www.barneyb.com/barneyblog/2009/05/07/what-the-hell-is-wrong-with-me/comment-page-1/#comment-177034</link>
		<dc:creator>Kay Smoljak</dc:creator>
		<pubDate>Sun, 10 May 2009 01:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=903#comment-177034</guid>
		<description>Good post. We do a lot of PHP and a lot of WordPress at Clever Starfish - essentially, any project that calls for an off-the-shelf simple CMS or off-the-shelf shopping cart gets done in PHP, while anything different, custom, difficult or requiring cross-system integration gets done in CFML.

While I don&#039;t particularly like PHP&#039;s syntax, I often find myself defending it from CF developers who rag on ANYTHING that&#039;s not CFML, regardless of how good or bad it is.

At the end of the day, proficiency in multiple languages never hurt anyone. And you&#039;re right, WordPress kicks arse :)</description>
		<content:encoded><![CDATA[<p>Good post. We do a lot of PHP and a lot of WordPress at Clever Starfish &#8211; essentially, any project that calls for an off-the-shelf simple CMS or off-the-shelf shopping cart gets done in PHP, while anything different, custom, difficult or requiring cross-system integration gets done in CFML.</p>
<p>While I don't particularly like PHP's syntax, I often find myself defending it from CF developers who rag on ANYTHING that's not CFML, regardless of how good or bad it is.</p>
<p>At the end of the day, proficiency in multiple languages never hurt anyone. And you're right, WordPress kicks arse :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Messier</title>
		<link>https://www.barneyb.com/barneyblog/2009/05/07/what-the-hell-is-wrong-with-me/comment-page-1/#comment-176854</link>
		<dc:creator>Thomas Messier</dc:creator>
		<pubDate>Fri, 08 May 2009 11:28:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=903#comment-176854</guid>
		<description>I HATE the PHP syntax with a passion. The whole -&gt; and =&gt; just annoys the hell out of me, as does the concatenation. Why did they have to cripple the language in such a way??? Beyond that, I agree with you, it has its pluses, speed being one that can&#039;t be neglected.</description>
		<content:encoded><![CDATA[<p>I HATE the PHP syntax with a passion. The whole -&gt; and =&gt; just annoys the hell out of me, as does the concatenation. Why did they have to cripple the language in such a way??? Beyond that, I agree with you, it has its pluses, speed being one that can't be neglected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaspy</title>
		<link>https://www.barneyb.com/barneyblog/2009/05/07/what-the-hell-is-wrong-with-me/comment-page-1/#comment-176828</link>
		<dc:creator>Gaspy</dc:creator>
		<pubDate>Fri, 08 May 2009 06:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=903#comment-176828</guid>
		<description>You summed up PHP&#039;s weaknesses pretty nicely.
I do some PHP coding but (thank God) it&#039;s not my daily job.

It&#039;s fast, it gets the job done, but man, it&#039;s the only language that I can&#039;t code in without having the reference book nearby. They can&#039;t even agree on the use of underscores, e.g. we have &quot;isset($var) but is_numeric($var); don&#039;t even get me started on the whole ($needle, $haystack) vs ($haystack, $needle) nonsense. Add to that the fact that the language can do things differently depending on how php.ini is set or depending on platform, and you have a potential deployment nightmare.

Working in PHP helps me appreciate actionscript/java/javascript.</description>
		<content:encoded><![CDATA[<p>You summed up PHP's weaknesses pretty nicely.<br />
I do some PHP coding but (thank God) it's not my daily job.</p>
<p>It's fast, it gets the job done, but man, it's the only language that I can't code in without having the reference book nearby. They can't even agree on the use of underscores, e.g. we have "isset($var) but is_numeric($var); don't even get me started on the whole ($needle, $haystack) vs ($haystack, $needle) nonsense. Add to that the fact that the language can do things differently depending on how php.ini is set or depending on platform, and you have a potential deployment nightmare.</p>
<p>Working in PHP helps me appreciate actionscript/java/javascript.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
