<?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 Cormac's php blog</title>
	<atom:link href="http://cormacscode.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cormacscode.wordpress.com</link>
	<description>Web / internet development, mostly using php / mysql</description>
	<lastBuildDate>Wed, 28 Oct 2009 04:37:28 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Show / hide table row in Firefox versus IE by Michael</title>
		<link>http://cormacscode.wordpress.com/2008/11/28/show-hide-table-row-in-firefox-versus-ie/#comment-357</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 28 Oct 2009 04:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=68#comment-357</guid>
		<description>Thanks for the post! Awesome solution, been scratching my head over this for days.</description>
		<content:encoded><![CDATA[<p>Thanks for the post! Awesome solution, been scratching my head over this for days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Last resort debugging by Out source software developers</title>
		<link>http://cormacscode.wordpress.com/2009/09/04/last-resort-debugging/#comment-354</link>
		<dc:creator>Out source software developers</dc:creator>
		<pubDate>Wed, 16 Sep 2009 11:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=138#comment-354</guid>
		<description>I put into practice the method i think i got good name to this method.</description>
		<content:encoded><![CDATA[<p>I put into practice the method i think i got good name to this method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Confirm order after paypal payment by sandrar</title>
		<link>http://cormacscode.wordpress.com/2007/11/02/confirm-order-after-paypal-payment/#comment-353</link>
		<dc:creator>sandrar</dc:creator>
		<pubDate>Thu, 10 Sep 2009 15:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/2007/11/02/confirm-order-after-paypal-payment/#comment-353</guid>
		<description>Hi! I was surfing and found your blog post... nice! I love your blog.  :) Cheers! Sandra. R.</description>
		<content:encoded><![CDATA[<p>Hi! I was surfing and found your blog post&#8230; nice! I love your blog.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers! Sandra. R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Last resort debugging by cormacscode</title>
		<link>http://cormacscode.wordpress.com/2009/09/04/last-resort-debugging/#comment-352</link>
		<dc:creator>cormacscode</dc:creator>
		<pubDate>Mon, 07 Sep 2009 16:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=138#comment-352</guid>
		<description>Actually, that&#039;s a better name - The Scientific Method implies forming a hypothesis and then testing it, doesn&#039;t it? More or less the exact opposite of this, which I use when I&#039;ve totally run out of hypotheses</description>
		<content:encoded><![CDATA[<p>Actually, that&#8217;s a better name &#8211; The Scientific Method implies forming a hypothesis and then testing it, doesn&#8217;t it? More or less the exact opposite of this, which I use when I&#8217;ve totally run out of hypotheses</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Last resort debugging by Kae Verens</title>
		<link>http://cormacscode.wordpress.com/2009/09/04/last-resort-debugging/#comment-351</link>
		<dc:creator>Kae Verens</dc:creator>
		<pubDate>Sat, 05 Sep 2009 15:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=138#comment-351</guid>
		<description>you could probably also name this the &quot;binary search&quot; method, as each test cuts the search rows in half.</description>
		<content:encoded><![CDATA[<p>you could probably also name this the &#8220;binary search&#8221; method, as each test cuts the search rows in half.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show / hide table row in Firefox versus IE by JDS</title>
		<link>http://cormacscode.wordpress.com/2008/11/28/show-hide-table-row-in-firefox-versus-ie/#comment-350</link>
		<dc:creator>JDS</dc:creator>
		<pubDate>Thu, 03 Sep 2009 21:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=68#comment-350</guid>
		<description>For anyone who is scratching their heads wonder why this works for everyone else and not them.... make sure you do not have a CSS display property on the row in question.  Since my row was to be hidden by default, I had a CSS snippet of:

 tr.hide {display:none}

For whatever reason, this defeats the blank-string-default method mentioned here (i.e. it works with an explicit &quot;table-row&quot;, or, poorly, with &quot;block&quot;, but refuses to show up again with a style.display of &quot;&quot;).  If I do the hiding when the row is created in JS instead, ala:

 tr.style.display=&quot;none&quot;;

the method works fine.</description>
		<content:encoded><![CDATA[<p>For anyone who is scratching their heads wonder why this works for everyone else and not them&#8230;. make sure you do not have a CSS display property on the row in question.  Since my row was to be hidden by default, I had a CSS snippet of:</p>
<p> tr.hide {display:none}</p>
<p>For whatever reason, this defeats the blank-string-default method mentioned here (i.e. it works with an explicit &#8220;table-row&#8221;, or, poorly, with &#8220;block&#8221;, but refuses to show up again with a style.display of &#8220;&#8221;).  If I do the hiding when the row is created in JS instead, ala:</p>
<p> tr.style.display=&#8221;none&#8221;;</p>
<p>the method works fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show / hide table row in Firefox versus IE by Mike Bogo</title>
		<link>http://cormacscode.wordpress.com/2008/11/28/show-hide-table-row-in-firefox-versus-ie/#comment-349</link>
		<dc:creator>Mike Bogo</dc:creator>
		<pubDate>Thu, 03 Sep 2009 16:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=68#comment-349</guid>
		<description>Simple and brilliant. Thanks!</description>
		<content:encoded><![CDATA[<p>Simple and brilliant. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lazy loading of object variables in php using __get() by Newbie</title>
		<link>http://cormacscode.wordpress.com/2008/08/01/lazy-loading-in-php-using-__get/#comment-347</link>
		<dc:creator>Newbie</dc:creator>
		<pubDate>Thu, 06 Aug 2009 08:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=38#comment-347</guid>
		<description>Great article, and informative comments to go with it.</description>
		<content:encoded><![CDATA[<p>Great article, and informative comments to go with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show / hide table row in Firefox versus IE by Greg</title>
		<link>http://cormacscode.wordpress.com/2008/11/28/show-hide-table-row-in-firefox-versus-ie/#comment-343</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Thu, 23 Jul 2009 18:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=68#comment-343</guid>
		<description>You have no idea how useful this is.

Thanks for posting!</description>
		<content:encoded><![CDATA[<p>You have no idea how useful this is.</p>
<p>Thanks for posting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpunit bootstrap not working in windows by Eugene van der Merwe</title>
		<link>http://cormacscode.wordpress.com/2009/07/08/phpunit-bootstrap-not-working-in-windows/#comment-341</link>
		<dc:creator>Eugene van der Merwe</dc:creator>
		<pubDate>Tue, 21 Jul 2009 12:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://cormacscode.wordpress.com/?p=133#comment-341</guid>
		<description>Thank goodness I saw your post, I also for the life of me couldn&#039;t figure out why my bootstrap is not loading. I then followed your advice and now it&#039;s working! Thanks!</description>
		<content:encoded><![CDATA[<p>Thank goodness I saw your post, I also for the life of me couldn&#8217;t figure out why my bootstrap is not loading. I then followed your advice and now it&#8217;s working! Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
