<?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 for Love Mike G</title>
	<atom:link href="http://www.lovemikeg.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lovemikeg.com</link>
	<description>Just another programmer with a blog</description>
	<lastBuildDate>Thu, 07 Apr 2011 02:39:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on Clearing OpenCart Sample Data by Mike G.</title>
		<link>http://www.lovemikeg.com/2010/09/30/clearing-opencart-sample-data/#comment-136</link>
		<dc:creator>Mike G.</dc:creator>
		<pubDate>Thu, 07 Apr 2011 02:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=359#comment-136</guid>
		<description>Good catch Mike. Thanks for the update.</description>
		<content:encoded><![CDATA[<p>Good catch Mike. Thanks for the update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Clearing OpenCart Sample Data by Mike Boulet</title>
		<link>http://www.lovemikeg.com/2010/09/30/clearing-opencart-sample-data/#comment-135</link>
		<dc:creator>Mike Boulet</dc:creator>
		<pubDate>Wed, 06 Apr 2011 15:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=359#comment-135</guid>
		<description>Thanks for doing this script though I got an error when it tried to truncate the order table. I had to modify it thought to allow the script to complete.

Here&#039;s what I changed:

Original Code:
 $sql = sprintf(&#039;TRUNCATE TABLE %s%s&#039;, DB_PREFIX, $table);

New Code ( Quotes around the %s%s ):
 $sql = sprintf(&#039;TRUNCATE TABLE `%s%s`&#039;, DB_PREFIX, $table);</description>
		<content:encoded><![CDATA[<p>Thanks for doing this script though I got an error when it tried to truncate the order table. I had to modify it thought to allow the script to complete.</p>
<p>Here&#8217;s what I changed:</p>
<p>Original Code:<br />
 $sql = sprintf(&#8216;TRUNCATE TABLE %s%s&#8217;, DB_PREFIX, $table);</p>
<p>New Code ( Quotes around the %s%s ):<br />
 $sql = sprintf(&#8216;TRUNCATE TABLE `%s%s`&#8217;, DB_PREFIX, $table);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Better Way to Loop in WordPress 3 by Mike G.</title>
		<link>http://www.lovemikeg.com/2010/08/23/a-better-way-to-loop-in-wordpress-3/#comment-125</link>
		<dc:creator>Mike G.</dc:creator>
		<pubDate>Sat, 26 Feb 2011 15:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=254#comment-125</guid>
		<description>Thanks for the feedback Abhishek. w/r/t the speed, do you use any caching for your blog? APC is a truly amazing thing: http://markjaquith.wordpress.com/2010/08/06/apc-object-cache-backend-for-wordpress/

Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback Abhishek. w/r/t the speed, do you use any caching for your blog? APC is a truly amazing thing: <a href="http://markjaquith.wordpress.com/2010/08/06/apc-object-cache-backend-for-wordpress/" rel="nofollow">http://markjaquith.wordpress.com/2010/08/06/apc-object-cache-backend-for-wordpress/</a></p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Better Way to Loop in WordPress 3 by Abhishek</title>
		<link>http://www.lovemikeg.com/2010/08/23/a-better-way-to-loop-in-wordpress-3/#comment-124</link>
		<dc:creator>Abhishek</dc:creator>
		<pubDate>Sat, 26 Feb 2011 13:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=254#comment-124</guid>
		<description>Thanks for wp_reset_postdata information.

I feel this has also speeded up my page :)</description>
		<content:encoded><![CDATA[<p>Thanks for wp_reset_postdata information.</p>
<p>I feel this has also speeded up my page :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Save a File in GridFS with Lithium by Mike G.</title>
		<link>http://www.lovemikeg.com/2010/10/15/how-to-save-a-file-in-gridfs-with-lithium/#comment-58</link>
		<dc:creator>Mike G.</dc:creator>
		<pubDate>Sun, 17 Oct 2010 04:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=368#comment-58</guid>
		<description>Lithium is a complete win in my book as it&#039;s pure 5.3 code. This may or may not be an issue to client work commonplace today. If you do a lot of greenfield development, this is definitely something to consider. 

I&#039;d say that Lithium has a lot of echos from Cake (from what I understand, it&#039;s Cake&#039;s unofficial successor), but is way, way more powerful. The filter system affords some great AOP code without having to juggle events and callbacks common all over lots of PHP projects (WP, Magento ...). It&#039;s made possible because of lambdas which are only available in 5.3 and Lithium is the first framework I&#039;ve seen to support these.</description>
		<content:encoded><![CDATA[<p>Lithium is a complete win in my book as it&#8217;s pure 5.3 code. This may or may not be an issue to client work commonplace today. If you do a lot of greenfield development, this is definitely something to consider. </p>
<p>I&#8217;d say that Lithium has a lot of echos from Cake (from what I understand, it&#8217;s Cake&#8217;s unofficial successor), but is way, way more powerful. The filter system affords some great AOP code without having to juggle events and callbacks common all over lots of PHP projects (WP, Magento &#8230;). It&#8217;s made possible because of lambdas which are only available in 5.3 and Lithium is the first framework I&#8217;ve seen to support these.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Save a File in GridFS with Lithium by Will Ayers</title>
		<link>http://www.lovemikeg.com/2010/10/15/how-to-save-a-file-in-gridfs-with-lithium/#comment-57</link>
		<dc:creator>Will Ayers</dc:creator>
		<pubDate>Sun, 17 Oct 2010 02:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=368#comment-57</guid>
		<description>Lithium looks pretty interesting. How does it compare to other frameworks like Codeigniter?</description>
		<content:encoded><![CDATA[<p>Lithium looks pretty interesting. How does it compare to other frameworks like Codeigniter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Traffic Jam by Brian Slagenweit</title>
		<link>http://www.lovemikeg.com/2010/09/15/traffic-jam/#comment-38</link>
		<dc:creator>Brian Slagenweit</dc:creator>
		<pubDate>Wed, 15 Sep 2010 18:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=323#comment-38</guid>
		<description>Been there, done that...amazing time regardless of the multiple hour+ traffic jams they&#039;ve cause.</description>
		<content:encoded><![CDATA[<p>Been there, done that&#8230;amazing time regardless of the multiple hour+ traffic jams they&#8217;ve cause.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Traffic Jam by Chris</title>
		<link>http://www.lovemikeg.com/2010/09/15/traffic-jam/#comment-37</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 15 Sep 2010 18:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=323#comment-37</guid>
		<description>I hope it didn&#039;t last 10 days.</description>
		<content:encoded><![CDATA[<p>I hope it didn&#8217;t last 10 days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Come See Me Speak at The Rich Web Experience by ralph</title>
		<link>http://www.lovemikeg.com/2010/08/12/come-see-me-speak-at-the-rich-web-experience/#comment-14</link>
		<dc:creator>ralph</dc:creator>
		<pubDate>Fri, 13 Aug 2010 01:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=206#comment-14</guid>
		<description>I&#039;m in Florida right this very minute. Sadly, I&#039;m unlikely to be here for the conference, though. But I get to see you in New York all the time for free. :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;m in Florida right this very minute. Sadly, I&#8217;m unlikely to be here for the conference, though. But I get to see you in New York all the time for free. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10/GUI by Preston</title>
		<link>http://www.lovemikeg.com/2010/08/10/10gui/#comment-13</link>
		<dc:creator>Preston</dc:creator>
		<pubDate>Wed, 11 Aug 2010 19:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.lovemikeg.com/?p=193#comment-13</guid>
		<description>SICK !!</description>
		<content:encoded><![CDATA[<p>SICK !!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

