<?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 MEE SQA Blog</title>
	<atom:link href="http://blog.meesqa.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.meesqa.com</link>
	<description>Michael E. Ensminger's thoughts on software development, testing and quality assurance</description>
	<lastBuildDate>Thu, 03 May 2012 11:04:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by JW</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-50630</link>
		<dc:creator>JW</dc:creator>
		<pubDate>Thu, 03 May 2012 11:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-50630</guid>
		<description><![CDATA[&quot;Hopefully, this write up will save you (or myself, next time I need to do this) some time.&quot;

Yes, great, thanks, love internet :-)]]></description>
		<content:encoded><![CDATA[<p>&#8220;Hopefully, this write up will save you (or myself, next time I need to do this) some time.&#8221;</p>
<p>Yes, great, thanks, love internet <img src='http://blog.meesqa.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by Jessica</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-50528</link>
		<dc:creator>Jessica</dc:creator>
		<pubDate>Sat, 28 Apr 2012 02:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-50528</guid>
		<description><![CDATA[Thanks for the info - I googled and found this article before I began to wipe Vista from the machine - you saved me hours of frustration!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the info &#8211; I googled and found this article before I began to wipe Vista from the machine &#8211; you saved me hours of frustration!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by Ashan</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-43541</link>
		<dc:creator>Ashan</dc:creator>
		<pubDate>Sun, 11 Sep 2011 09:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-43541</guid>
		<description><![CDATA[thank you very much, this article helped me a lot. regards!!!!]]></description>
		<content:encoded><![CDATA[<p>thank you very much, this article helped me a lot. regards!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by ovdiem</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-43433</link>
		<dc:creator>ovdiem</dc:creator>
		<pubDate>Wed, 07 Sep 2011 20:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-43433</guid>
		<description><![CDATA[thank you for sharing the following information , the trick was simple but yet made me busy enough to start think there was something wrong with the motherboard of my machine as the xp installation wasnt able to detect the hdd ,until i disabled the sata in the bios ,thank you very much :)]]></description>
		<content:encoded><![CDATA[<p>thank you for sharing the following information , the trick was simple but yet made me busy enough to start think there was something wrong with the motherboard of my machine as the xp installation wasnt able to detect the hdd ,until i disabled the sata in the bios ,thank you very much <img src='http://blog.meesqa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing Perl Code &#8211; Suppressing Warnings by Markus</title>
		<link>http://blog.meesqa.com/2008/04/30/testing-perl-code-suppressing-warnings/#comment-32140</link>
		<dc:creator>Markus</dc:creator>
		<pubDate>Fri, 06 Aug 2010 11:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/04/30/testing-perl-code-suppressing-warnings/#comment-32140</guid>
		<description><![CDATA[Thanks! Just what I was looking for. Cooked up a uitility method if anyone is interested.

# Executes the supplied code returning a hashref:
# &#039;warnings&#039; =&gt; arrayref of any warning messages 
# &#039;warning&#039;  =&gt; most recent warning message
# &#039;result&#039;   =&gt; executed code result
#
# my $run = trap_warn( sub { warn &#039;tjoho!&#039;; return 2 } );
#
# print $run-&gt;{&#039;warnings&#039;}[0]; # &#039;tjoho!&#039;
# print $run-&gt;{&#039;warning&#039;};     # &#039;tjoho!&#039;
# print $run-&gt;{&#039;result&#039;};      # 2
my $DIAG_TRAPPED_WARNS = 0;

sub trap_warn {
    my $code = shift;

    my @warn_message = ();
    local $SIG{__WARN__} = sub {
        push @warn_message, shift;
        diag &quot;Trapped warn: &quot;.$warn_message[-1] if $DIAG_TRAPPED_WARNS;
    };

    my $result =  # Run code

    return { &#039;warnings&#039; =&gt; \@warn_message,
             &#039;warning&#039;  =&gt; pop @warn_message,
             &#039;result&#039;   =&gt; $result };
}]]></description>
		<content:encoded><![CDATA[<p>Thanks! Just what I was looking for. Cooked up a uitility method if anyone is interested.</p>
<p># Executes the supplied code returning a hashref:<br />
# &#8216;warnings&#8217; =&gt; arrayref of any warning messages<br />
# &#8216;warning&#8217;  =&gt; most recent warning message<br />
# &#8216;result&#8217;   =&gt; executed code result<br />
#<br />
# my $run = trap_warn( sub { warn &#8216;tjoho!&#8217;; return 2 } );<br />
#<br />
# print $run-&gt;{&#8216;warnings&#8217;}[0]; # &#8216;tjoho!&#8217;<br />
# print $run-&gt;{&#8216;warning&#8217;};     # &#8216;tjoho!&#8217;<br />
# print $run-&gt;{&#8216;result&#8217;};      # 2<br />
my $DIAG_TRAPPED_WARNS = 0;</p>
<p>sub trap_warn {<br />
    my $code = shift;</p>
<p>    my @warn_message = ();<br />
    local $SIG{__WARN__} = sub {<br />
        push @warn_message, shift;<br />
        diag &#8220;Trapped warn: &#8220;.$warn_message[-1] if $DIAG_TRAPPED_WARNS;<br />
    };</p>
<p>    my $result =  # Run code</p>
<p>    return { &#8216;warnings&#8217; =&gt; \@warn_message,<br />
             &#8216;warning&#8217;  =&gt; pop @warn_message,<br />
             &#8216;result&#8217;   =&gt; $result };<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ant signjar error: keystore load: Too many certificates in chain by palo</title>
		<link>http://blog.meesqa.com/2007/02/28/ant-signjar-error-keystore-load-too-many-certificates-in-chain/#comment-30584</link>
		<dc:creator>palo</dc:creator>
		<pubDate>Tue, 06 Apr 2010 07:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2007/02/28/ant-signjar-error-keystore-load-too-many-certificates-in-chain/#comment-30584</guid>
		<description><![CDATA[Thank you very much, that helped me.
Palo]]></description>
		<content:encoded><![CDATA[<p>Thank you very much, that helped me.<br />
Palo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flow Chart of HTTP Response Codes by Alan Dean</title>
		<link>http://blog.meesqa.com/2010/03/14/flow-chart-of-http-response-codes/#comment-30242</link>
		<dc:creator>Alan Dean</dc:creator>
		<pubDate>Sun, 14 Mar 2010 17:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2010/03/14/flow-chart-of-http-response-codes/#comment-30242</guid>
		<description><![CDATA[Michael,

My apologies - I&#039;ve had to change server and haven&#039;t got thoughtpad.net back up yet. Coming soon - honest!

In the meantime, the diagram project can still be accessed at http://code.google.com/p/http-headers-status/

Regards,
Alan Dean]]></description>
		<content:encoded><![CDATA[<p>Michael,</p>
<p>My apologies &#8211; I&#8217;ve had to change server and haven&#8217;t got thoughtpad.net back up yet. Coming soon &#8211; honest!</p>
<p>In the meantime, the diagram project can still be accessed at <a href="http://code.google.com/p/http-headers-status/" rel="nofollow">http://code.google.com/p/http-headers-status/</a></p>
<p>Regards,<br />
Alan Dean</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ant signjar error: keystore load: Too many certificates in chain by Wendy Aprilliono Feryanto</title>
		<link>http://blog.meesqa.com/2007/02/28/ant-signjar-error-keystore-load-too-many-certificates-in-chain/#comment-25540</link>
		<dc:creator>Wendy Aprilliono Feryanto</dc:creator>
		<pubDate>Fri, 17 Jul 2009 06:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2007/02/28/ant-signjar-error-keystore-load-too-many-certificates-in-chain/#comment-25540</guid>
		<description><![CDATA[Yeah... The error message should be changed into something like: &quot;Keystore is corrupt&quot;, you know just to avoid confusion about the error cause...]]></description>
		<content:encoded><![CDATA[<p>Yeah&#8230; The error message should be changed into something like: &#8220;Keystore is corrupt&#8221;, you know just to avoid confusion about the error cause&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by mensming</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-25244</link>
		<dc:creator>mensming</dc:creator>
		<pubDate>Sun, 05 Jul 2009 00:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-25244</guid>
		<description><![CDATA[Joshua - 

I no longer have access to this model.  The best I can say is try the drivers at http://h10025.www1.hp.com/ewfrf/wc/softwareList?os=228&amp;lc=en&amp;dlc=en&amp;cc=pl&amp;lang=en&amp;product=3413016.

Modem: 
http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-52165-1&amp;lc=en&amp;dlc=en&amp;cc=pl&amp;product=3413016&amp;os=228&amp;lang=en
http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-47729-1&amp;lc=en&amp;dlc=en&amp;cc=pl&amp;product=3413016&amp;os=228&amp;lang=en

Sound:
http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-51724-1&amp;lc=en&amp;dlc=en&amp;cc=pl&amp;product=3413016&amp;os=228&amp;lang=en]]></description>
		<content:encoded><![CDATA[<p>Joshua &#8211; </p>
<p>I no longer have access to this model.  The best I can say is try the drivers at <a href="http://h10025.www1.hp.com/ewfrf/wc/softwareList?os=228&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;lang=en&#038;product=3413016" rel="nofollow">http://h10025.www1.hp.com/ewfrf/wc/softwareList?os=228&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;lang=en&#038;product=3413016</a>.</p>
<p>Modem:<br />
<a href="http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-52165-1&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;product=3413016&#038;os=228&#038;lang=en" rel="nofollow">http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-52165-1&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;product=3413016&#038;os=228&#038;lang=en</a><br />
<a href="http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-47729-1&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;product=3413016&#038;os=228&#038;lang=en" rel="nofollow">http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-47729-1&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;product=3413016&#038;os=228&#038;lang=en</a></p>
<p>Sound:<br />
<a href="http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-51724-1&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;product=3413016&#038;os=228&#038;lang=en" rel="nofollow">http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-51724-1&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;product=3413016&#038;os=228&#038;lang=en</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by joshua</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-25121</link>
		<dc:creator>joshua</dc:creator>
		<pubDate>Tue, 30 Jun 2009 10:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-25121</guid>
		<description><![CDATA[that is cool but the problem facing me is driver please can you help me in how to install modem and sound driver in this presario c500]]></description>
		<content:encoded><![CDATA[<p>that is cool but the problem facing me is driver please can you help me in how to install modem and sound driver in this presario c500</p>
]]></content:encoded>
	</item>
</channel>
</rss>
