<?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/"
	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>Comments for paul bennett</title>
	<atom:link href="http://thingsilearn.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thingsilearn.wordpress.com</link>
	<description>professional, open-source web development</description>
	<lastBuildDate>Fri, 20 Jan 2012 09:58:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on MySQL query speed: REGEXP vs. LIKE by joel</title>
		<link>http://thingsilearn.wordpress.com/2008/02/28/mysql-query-speed-regexp-vs-like/#comment-454</link>
		<dc:creator><![CDATA[joel]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 09:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/?p=43#comment-454</guid>
		<description><![CDATA[In a table with 11 million rows, my regexp is faster than a like query. But then again it&#039;s a search over an INT column, I don&#039;t really know if that should make a difference.

For reference: WHERE number REGEXP(&#039;^1234[5-6]{5}$&#039;) vs. WHERE number LIKE &#039;1234%&#039;;]]></description>
		<content:encoded><![CDATA[<p>In a table with 11 million rows, my regexp is faster than a like query. But then again it&#8217;s a search over an INT column, I don&#8217;t really know if that should make a difference.</p>
<p>For reference: WHERE number REGEXP(&#8216;^1234[5-6]{5}$&#8217;) vs. WHERE number LIKE &#8217;1234%&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on asp nuggets: send email and insert line feeds into email by Ronnie</title>
		<link>http://thingsilearn.wordpress.com/2007/11/05/asp-nuggets-send-email-and-insert-line-feeds-into-email/#comment-453</link>
		<dc:creator><![CDATA[Ronnie]]></dc:creator>
		<pubDate>Thu, 05 Jan 2012 15:52:11 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/2007/11/05/asp-nuggets-send-email-and-insert-line-feeds-into-email/#comment-453</guid>
		<description><![CDATA[It seems that just adding a &quot;\n&quot; in the string does the trick for me.]]></description>
		<content:encoded><![CDATA[<p>It seems that just adding a &#8220;\n&#8221; in the string does the trick for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on print_r into a variable by zichzach</title>
		<link>http://thingsilearn.wordpress.com/2007/02/19/print_r-into-a-variable/#comment-451</link>
		<dc:creator><![CDATA[zichzach]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 09:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/2007/02/19/print_r-into-a-variable/#comment-451</guid>
		<description><![CDATA[Haha, this simple! Thank you.]]></description>
		<content:encoded><![CDATA[<p>Haha, this simple! Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a really short tumblr review by Emily</title>
		<link>http://thingsilearn.wordpress.com/2008/02/15/a-really-short-tumblr-review/#comment-450</link>
		<dc:creator><![CDATA[Emily]]></dc:creator>
		<pubDate>Tue, 15 Nov 2011 18:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/?p=30#comment-450</guid>
		<description><![CDATA[You can view a llist of other tumblogs by content and tumblr sugests blogs to follow based on those which you are currently following. You can comment on posts when you reblog them, but comments are not permenant. Members who reblog the photo from you can alter or erase comments to better suit their blog.You can only comment on photos on your blog.]]></description>
		<content:encoded><![CDATA[<p>You can view a llist of other tumblogs by content and tumblr sugests blogs to follow based on those which you are currently following. You can comment on posts when you reblog them, but comments are not permenant. Members who reblog the photo from you can alter or erase comments to better suit their blog.You can only comment on photos on your blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Javascript: checking if a function exists by bcowgill</title>
		<link>http://thingsilearn.wordpress.com/2007/03/20/javascript-checking-if-a-function-exists/#comment-448</link>
		<dc:creator><![CDATA[bcowgill]]></dc:creator>
		<pubDate>Wed, 19 Oct 2011 12:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/2007/03/20/javascript-checking-if-a-function-exists/#comment-448</guid>
		<description><![CDATA[Except if the function you are trying to detect is a native function in internet explorer

for example:

typeof document.write is &#039;object&#039; not &#039;function&#039; in IE 
but appears to be &#039;function&#039; in all the other browsers.

*SIGH*]]></description>
		<content:encoded><![CDATA[<p>Except if the function you are trying to detect is a native function in internet explorer</p>
<p>for example:</p>
<p>typeof document.write is &#8216;object&#8217; not &#8216;function&#8217; in IE<br />
but appears to be &#8216;function&#8217; in all the other browsers.</p>
<p>*SIGH*</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Javascript: checking if a function exists by Cory</title>
		<link>http://thingsilearn.wordpress.com/2007/03/20/javascript-checking-if-a-function-exists/#comment-447</link>
		<dc:creator><![CDATA[Cory]]></dc:creator>
		<pubDate>Mon, 17 Oct 2011 22:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/2007/03/20/javascript-checking-if-a-function-exists/#comment-447</guid>
		<description><![CDATA[Thank you! Just what I was looking for.

Would someone please delete post #2? WOW, a know it all in the development realm, that&#039;s something new?]]></description>
		<content:encoded><![CDATA[<p>Thank you! Just what I was looking for.</p>
<p>Would someone please delete post #2? WOW, a know it all in the development realm, that&#8217;s something new?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on print_r into a variable by madhavi</title>
		<link>http://thingsilearn.wordpress.com/2007/02/19/print_r-into-a-variable/#comment-441</link>
		<dc:creator><![CDATA[madhavi]]></dc:creator>
		<pubDate>Mon, 29 Aug 2011 11:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/2007/02/19/print_r-into-a-variable/#comment-441</guid>
		<description><![CDATA[i write print_r($sname) in my php program.can u please explain the meaning of this.]]></description>
		<content:encoded><![CDATA[<p>i write print_r($sname) in my php program.can u please explain the meaning of this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on print_r into a variable by madhavi</title>
		<link>http://thingsilearn.wordpress.com/2007/02/19/print_r-into-a-variable/#comment-440</link>
		<dc:creator><![CDATA[madhavi]]></dc:creator>
		<pubDate>Mon, 29 Aug 2011 11:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/2007/02/19/print_r-into-a-variable/#comment-440</guid>
		<description><![CDATA[hi i used print_r($sname) in my php program can u plesae explain the meaning of this.]]></description>
		<content:encoded><![CDATA[<p>hi i used print_r($sname) in my php program can u plesae explain the meaning of this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drupal: Creating custom node templates by Chris</title>
		<link>http://thingsilearn.wordpress.com/2009/05/28/drupal-creating-custom-node-templates/#comment-434</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Tue, 19 Apr 2011 14:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/?p=194#comment-434</guid>
		<description><![CDATA[Great tip Oliver

I spent an hour with print_r($node) trying to figure out the correct path for a field value. dsm($node) gave it to me in a minute!]]></description>
		<content:encoded><![CDATA[<p>Great tip Oliver</p>
<p>I spent an hour with print_r($node) trying to figure out the correct path for a field value. dsm($node) gave it to me in a minute!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Safari / Google Chrome / webkit CSS filter by Dave</title>
		<link>http://thingsilearn.wordpress.com/2009/05/27/safari-google-chrome-webkit-css-filter/#comment-433</link>
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Mon, 04 Apr 2011 06:17:23 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearn.wordpress.com/?p=192#comment-433</guid>
		<description><![CDATA[Fantastic]]></description>
		<content:encoded><![CDATA[<p>Fantastic</p>
]]></content:encoded>
	</item>
</channel>
</rss>
