<?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 devmorgan.com</title>
	<atom:link href="http://www.devmorgan.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devmorgan.com/blog</link>
	<description>Code Monkey, Grad Student, Husband, Father Extraordinaire</description>
	<pubDate>Fri, 10 Sep 2010 20:45:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on The US Legal System and the Ten Commandments by Josh Freeman</title>
		<link>http://www.devmorgan.com/blog/2010/07/16/the-us-legal-system-and-the-ten-commandments/comment-page-1/#comment-29701</link>
		<dc:creator>Josh Freeman</dc:creator>
		<pubDate>Wed, 08 Sep 2010 22:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=211#comment-29701</guid>
		<description>I just couldn't help but laugh at some of your commentary on these!</description>
		<content:encoded><![CDATA[<p>I just couldn&#8217;t help but laugh at some of your commentary on these!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Losing Faith&#8230; in Humanity by Abraham</title>
		<link>http://www.devmorgan.com/blog/2008/05/27/losing-faith-in-humanity/comment-page-1/#comment-26264</link>
		<dc:creator>Abraham</dc:creator>
		<pubDate>Tue, 15 Jun 2010 22:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=53#comment-26264</guid>
		<description>I think you've left out the brand of Agnosticism that concedes the likelihood of the existence of (a) God(s), and simply states that if there is/are such (a) person(s)/thing(s), it's impossible for us to comprehend its/their nature. As well as "empirical agnosticism" which simply says, "I personally have yet to arrive at a conclusion. Not that it's a priority for me."</description>
		<content:encoded><![CDATA[<p>I think you&#8217;ve left out the brand of Agnosticism that concedes the likelihood of the existence of (a) God(s), and simply states that if there is/are such (a) person(s)/thing(s), it&#8217;s impossible for us to comprehend its/their nature. As well as &#8220;empirical agnosticism&#8221; which simply says, &#8220;I personally have yet to arrive at a conclusion. Not that it&#8217;s a priority for me.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Glassfish, Flash, and Web Services by m</title>
		<link>http://www.devmorgan.com/blog/2008/03/05/glassfish-flash-and-web-services/comment-page-1/#comment-24522</link>
		<dc:creator>m</dc:creator>
		<pubDate>Tue, 25 May 2010 16:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/2008/03/05/glassfish-flash-and-web-services/#comment-24522</guid>
		<description>Was this ever resolved?  Have you since tried and had success with other web services with flash (as2)?</description>
		<content:encoded><![CDATA[<p>Was this ever resolved?  Have you since tried and had success with other web services with flash (as2)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DyDL - Part 3: Dynamic Binding with mysqli in PHP by Paul</title>
		<link>http://www.devmorgan.com/blog/2009/03/27/dydl-part-3-dynamic-binding-with-mysqli-php/comment-page-1/#comment-23068</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 07 May 2010 11:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=102#comment-23068</guid>
		<description>I am personally having trouble getting this to work. I have managed to get bind params to work, but the bind results just will not give me what I need. If I run this it works:

mysqli_bind_result($stmt, $page_id, $page_name);

while(mysqli_stmt_fetch($stmt)) 
{ 
echo $page_name;
}

but when I try it dynamically I have no luck:

$rows[] = &amp;$page_id;
$rows[] = &amp;$page_name;
call_user_func_array(array($stmt, 'bind_result'), $rows);

while(mysqli_stmt_fetch($stmt)) 
{ 
echo $page_name;
}

I would apprciate any help to resolve this.

Thanks Paul.</description>
		<content:encoded><![CDATA[<p>I am personally having trouble getting this to work. I have managed to get bind params to work, but the bind results just will not give me what I need. If I run this it works:</p>
<p>mysqli_bind_result($stmt, $page_id, $page_name);</p>
<p>while(mysqli_stmt_fetch($stmt))<br />
{<br />
echo $page_name;<br />
}</p>
<p>but when I try it dynamically I have no luck:</p>
<p>$rows[] = &amp;$page_id;<br />
$rows[] = &amp;$page_name;<br />
call_user_func_array(array($stmt, &#8216;bind_result&#8217;), $rows);</p>
<p>while(mysqli_stmt_fetch($stmt))<br />
{<br />
echo $page_name;<br />
}</p>
<p>I would apprciate any help to resolve this.</p>
<p>Thanks Paul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DyDL - Part 3: Dynamic Binding with mysqli in PHP by arjuna</title>
		<link>http://www.devmorgan.com/blog/2009/03/27/dydl-part-3-dynamic-binding-with-mysqli-php/comment-page-1/#comment-16899</link>
		<dc:creator>arjuna</dc:creator>
		<pubDate>Fri, 19 Mar 2010 19:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=102#comment-16899</guid>
		<description>I am reading my field names and data from a csv file, and my code inserts this into a mysql db. I need the prepared statement to do the insert. I have 155 fields. Many of the data values are null. In the case of null values, will this code assign the types correctly?

Are prepared statements worth the trouble?

I dont think so, i have only seen ugly work arounds to get about this parameter and type passing issues. Code can fail if we have null values and types are assigned based on these, making it completely unreliable. 

given this one is forced to use regular statements rather than prepared statements. In this case the question becomes, how does one minimize the threat of sql injection attacks without using prepared statements.

Any ideas?

or suggestions will be much appreciated....</description>
		<content:encoded><![CDATA[<p>I am reading my field names and data from a csv file, and my code inserts this into a mysql db. I need the prepared statement to do the insert. I have 155 fields. Many of the data values are null. In the case of null values, will this code assign the types correctly?</p>
<p>Are prepared statements worth the trouble?</p>
<p>I dont think so, i have only seen ugly work arounds to get about this parameter and type passing issues. Code can fail if we have null values and types are assigned based on these, making it completely unreliable. </p>
<p>given this one is forced to use regular statements rather than prepared statements. In this case the question becomes, how does one minimize the threat of sql injection attacks without using prepared statements.</p>
<p>Any ideas?</p>
<p>or suggestions will be much appreciated&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Glassfish, Flash, and Web Services by Karl</title>
		<link>http://www.devmorgan.com/blog/2008/03/05/glassfish-flash-and-web-services/comment-page-1/#comment-11570</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Wed, 10 Feb 2010 06:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/2008/03/05/glassfish-flash-and-web-services/#comment-11570</guid>
		<description>Auto-generated anything usually isn't the best.  I would hand-tune the auto-generated WSDL and have GF use that.  I use Spring, which makes anything Java EE insanely easier:
- Why Contract First?: http://static.springsource.org/spring-ws/sites/1.5/reference/html/why-contract-first.html
- Writing Contract-First Web Services: http://static.springsource.org/spring-ws/sites/1.5/reference/html/tutorial.html</description>
		<content:encoded><![CDATA[<p>Auto-generated anything usually isn&#8217;t the best.  I would hand-tune the auto-generated WSDL and have GF use that.  I use Spring, which makes anything Java EE insanely easier:<br />
- Why Contract First?: <a href="http://static.springsource.org/spring-ws/sites/1.5/reference/html/why-contract-first.html" rel="nofollow">http://static.springsource.org/spring-ws/sites/1.5/reference/html/why-contract-first.html</a><br />
- Writing Contract-First Web Services: <a href="http://static.springsource.org/spring-ws/sites/1.5/reference/html/tutorial.html" rel="nofollow">http://static.springsource.org/spring-ws/sites/1.5/reference/html/tutorial.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My horrible IRS experience&#8230; Part 1 by Karl</title>
		<link>http://www.devmorgan.com/blog/2009/09/11/my-horrible-irs-experience-part-1/comment-page-1/#comment-11569</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Wed, 10 Feb 2010 06:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=193#comment-11569</guid>
		<description>Lawyer-time.  The law biz is in the crapper right now (some law firms have lawyers doing paralegal stuff), so I bet you could find some tax-wiz who would help you out for a 10-20% cut.

Things start moving along much faster once Legal is involved.  I bet your file will get to the top of "Jimmy"'s pile as soon as Legal calls.

P.S. Haven't seen you in a while!  How you doin'?  Sounds like you're rockin' life (minus the tax trouble).
P.S.S. If you are still a Integration Analyst at Strong, I'm jealous cuz you have my dream job. :)</description>
		<content:encoded><![CDATA[<p>Lawyer-time.  The law biz is in the crapper right now (some law firms have lawyers doing paralegal stuff), so I bet you could find some tax-wiz who would help you out for a 10-20% cut.</p>
<p>Things start moving along much faster once Legal is involved.  I bet your file will get to the top of &#8220;Jimmy&#8221;&#8217;s pile as soon as Legal calls.</p>
<p>P.S. Haven&#8217;t seen you in a while!  How you doin&#8217;?  Sounds like you&#8217;re rockin&#8217; life (minus the tax trouble).<br />
P.S.S. If you are still a Integration Analyst at Strong, I&#8217;m jealous cuz you have my dream job. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My horrible IRS experience&#8230; Part 1 by dave</title>
		<link>http://www.devmorgan.com/blog/2009/09/11/my-horrible-irs-experience-part-1/comment-page-1/#comment-8661</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 11 Sep 2009 21:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=193#comment-8661</guid>
		<description>heh.  a minor technicality that might work. ill try it next time i call.</description>
		<content:encoded><![CDATA[<p>heh.  a minor technicality that might work. ill try it next time i call.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My horrible IRS experience&#8230; Part 1 by Elliot</title>
		<link>http://www.devmorgan.com/blog/2009/09/11/my-horrible-irs-experience-part-1/comment-page-1/#comment-8660</link>
		<dc:creator>Elliot</dc:creator>
		<pubDate>Fri, 11 Sep 2009 19:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=193#comment-8660</guid>
		<description>Right, I understand.

You just said that the IRS wouldn't consider your situation Financial Hardship unless you were in debt... and you are. You're just not having any trouble *currently* making your debt payments.

This all really sucks, I pray it gets straightened out in time.</description>
		<content:encoded><![CDATA[<p>Right, I understand.</p>
<p>You just said that the IRS wouldn&#8217;t consider your situation Financial Hardship unless you were in debt&#8230; and you are. You&#8217;re just not having any trouble *currently* making your debt payments.</p>
<p>This all really sucks, I pray it gets straightened out in time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My horrible IRS experience&#8230; Part 1 by dave</title>
		<link>http://www.devmorgan.com/blog/2009/09/11/my-horrible-irs-experience-part-1/comment-page-1/#comment-8659</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 11 Sep 2009 18:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.devmorgan.com/blog/?p=193#comment-8659</guid>
		<description>Debt is money that you owe. Yes, I owe money. However, most of the money I owe is standard stuff (CC bills [paid off each month], Electric, Gas, Insurances, etc.) I have student loans, yes, in fact this is the first month I will be out of deferment. 

Money I "owe" for: Mortgage, Cars (mine and jess), and Roof. The roof is the one thats causing me trouble because our budget did not account for it going this long. Are we screwed? no. I have a good enough job we can afford it, but it makes things tighter, especially having a baby now. 

If the IRS was to deliver - as it was supposed to - in the 6-8 weeks they stated, we'd be golden. However, since they haven't, I have to continue taking a bunch outta each paycheck to pay for that loan. Which makes us tap into savings for the CC. 

Again, I have my finances in pretty good shape right now, and in fact, great shape. My issue is still with the IRS fucking up enough to make things more difficult for me and my family.</description>
		<content:encoded><![CDATA[<p>Debt is money that you owe. Yes, I owe money. However, most of the money I owe is standard stuff (CC bills [paid off each month], Electric, Gas, Insurances, etc.) I have student loans, yes, in fact this is the first month I will be out of deferment. </p>
<p>Money I &#8220;owe&#8221; for: Mortgage, Cars (mine and jess), and Roof. The roof is the one thats causing me trouble because our budget did not account for it going this long. Are we screwed? no. I have a good enough job we can afford it, but it makes things tighter, especially having a baby now. </p>
<p>If the IRS was to deliver - as it was supposed to - in the 6-8 weeks they stated, we&#8217;d be golden. However, since they haven&#8217;t, I have to continue taking a bunch outta each paycheck to pay for that loan. Which makes us tap into savings for the CC. </p>
<p>Again, I have my finances in pretty good shape right now, and in fact, great shape. My issue is still with the IRS fucking up enough to make things more difficult for me and my family.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
