<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for MEE SQA Blog</title>
	<link>http://blog.meesqa.com</link>
	<description>Michael E. Ensminger's thoughts on software development, testing and quality assurance</description>
	<pubDate>Wed, 08 Feb 2012 21:07:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<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>
		<author>Ashan</author>
		<pubDate>Sun, 11 Sep 2011 09:06:36 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-43541</guid>
		<description>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>
		<author>ovdiem</author>
		<pubDate>Wed, 07 Sep 2011 20:36:04 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-43433</guid>
		<description>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 - Suppressing Warnings by Markus</title>
		<link>http://blog.meesqa.com/2008/04/30/testing-perl-code-suppressing-warnings/#comment-32140</link>
		<author>Markus</author>
		<pubDate>Fri, 06 Aug 2010 11:55:56 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/04/30/testing-perl-code-suppressing-warnings/#comment-32140</guid>
		<description>Thanks! Just what I was looking for. Cooked up a uitility method if anyone is interested.

# Executes the supplied code returning a hashref:
# 'warnings' =&#62; arrayref of any warning messages 
# 'warning'  =&#62; most recent warning message
# 'result'   =&#62; executed code result
#
# my $run = trap_warn( sub { warn 'tjoho!'; return 2 } );
#
# print $run-&#62;{'warnings'}[0]; # 'tjoho!'
# print $run-&#62;{'warning'};     # 'tjoho!'
# print $run-&#62;{'result'};      # 2
my $DIAG_TRAPPED_WARNS = 0;

sub trap_warn {
    my $code = shift;

    my @warn_message = ();
    local $SIG{__WARN__} = sub {
        push @warn_message, shift;
        diag "Trapped warn: ".$warn_message[-1] if $DIAG_TRAPPED_WARNS;
    };

    my $result =  # Run code

    return { 'warnings' =&#62; \@warn_message,
             'warning'  =&#62; pop @warn_message,
             'result'   =&#62; $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;{&#8217;warnings&#8217;}[0]; # &#8216;tjoho!&#8217;<br />
# print $run-&gt;{&#8217;warning&#8217;};     # &#8216;tjoho!&#8217;<br />
# print $run-&gt;{&#8217;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>
		<author>palo</author>
		<pubDate>Tue, 06 Apr 2010 07:35:30 +0000</pubDate>
		<guid>http://blog.meesqa.com/2007/02/28/ant-signjar-error-keystore-load-too-many-certificates-in-chain/#comment-30584</guid>
		<description>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>
		<author>Alan Dean</author>
		<pubDate>Sun, 14 Mar 2010 17:04:35 +0000</pubDate>
		<guid>http://blog.meesqa.com/2010/03/14/flow-chart-of-http-response-codes/#comment-30242</guid>
		<description>Michael,

My apologies - I've had to change server and haven'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 - I&#8217;ve had to change server and haven&#8217;t got thoughtpad.net back up yet. Coming soon - 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>
		<author>Wendy Aprilliono Feryanto</author>
		<pubDate>Fri, 17 Jul 2009 06:58:16 +0000</pubDate>
		<guid>http://blog.meesqa.com/2007/02/28/ant-signjar-error-keystore-load-too-many-certificates-in-chain/#comment-25540</guid>
		<description>Yeah... The error message should be changed into something like: "Keystore is corrupt", 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>
		<author>mensming</author>
		<pubDate>Sun, 05 Jul 2009 00:59:50 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-25244</guid>
		<description>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&#038;lc=en&#038;dlc=en&#038;cc=pl&#038;lang=en&#038;product=3413016.

Modem: 
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
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

Sound:
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</description>
		<content:encoded><![CDATA[<p>Joshua - </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>
		<author>joshua</author>
		<pubDate>Tue, 30 Jun 2009 10:49:54 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-25121</guid>
		<description>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>
	<item>
		<title>Comment on Installing Windows XP on a Compaq Presario C500 by AC</title>
		<link>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-23473</link>
		<author>AC</author>
		<pubDate>Tue, 21 Apr 2009 08:23:26 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-23473</guid>
		<description>Thanks Michael for the links. I downloaded the INF utility and the video driver and they both work on my Compaq Presario C500 :)

AC</description>
		<content:encoded><![CDATA[<p>Thanks Michael for the links. I downloaded the INF utility and the video driver and they both work on my Compaq Presario C500 <img src='http://blog.meesqa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>AC</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-23466</link>
		<author>mensming</author>
		<pubDate>Mon, 20 Apr 2009 18:35:42 +0000</pubDate>
		<guid>http://blog.meesqa.com/2008/11/30/installing-windows-xp-on-a-compaq-presario-c500/#comment-23466</guid>
		<description>&lt;p&gt;As of today (04/20/2009):&lt;/p&gt;

&lt;p&gt;
This "might" be the correct link to get the INF utility -- &lt;a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=816&#038;DwnldID=16023&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng" rel="nofollow"&gt;http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=816&#038;DwnldID=16023&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Similarly, this "might" be the correct link to the video driver -- &lt;a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=2102&#038;DwnldID=16835&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng" rel="nofollow"&gt;http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=2102&#038;DwnldID=16835&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Good luck!
&lt;/p&gt;

&lt;p&gt;
Michael
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>As of today (04/20/2009):</p>
<p>
This &#8220;might&#8221; be the correct link to get the INF utility &#8212; <a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=816&#038;DwnldID=16023&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng" rel="nofollow"></a><a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=816&#038;DwnldID=16023&#038;strOSs=44&#038;OSFullName=Windows" rel="nofollow">http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=816&#038;DwnldID=16023&#038;strOSs=44&#038;OSFullName=Windows</a>*%20XP%20Professional&#038;lang=eng
</p>
<p>
Similarly, this &#8220;might&#8221; be the correct link to the video driver &#8212; <a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=2102&#038;DwnldID=16835&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng" rel="nofollow"></a><a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=2102&#038;DwnldID=16835&#038;strOSs=44&#038;OSFullName=Windows" rel="nofollow">http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=2102&#038;DwnldID=16835&#038;strOSs=44&#038;OSFullName=Windows</a>*%20XP%20Professional&#038;lang=eng
</p>
<p>
Good luck!
</p>
<p>
Michael</p>
]]></content:encoded>
	</item>
</channel>
</rss>

