<?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 Nick Zalabak - techwhizbang</title>
	<atom:link href="http://techwhizbang.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://techwhizbang.com</link>
	<description>my work, life, and ideas</description>
	<lastBuildDate>Thu, 01 Jul 2010 20:13:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on Stored Procedure Myth Busters by techwhizbang</title>
		<link>http://techwhizbang.com/2010/06/stored-procedure-myth-busters/comment-page-1/#comment-93</link>
		<dc:creator>techwhizbang</dc:creator>
		<pubDate>Thu, 01 Jul 2010 20:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=265#comment-93</guid>
		<description>Good point Todd, I didn&#039;t consider that.</description>
		<content:encoded><![CDATA[<p>Good point Todd, I didn&#8217;t consider that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stored Procedure Myth Busters by Todd</title>
		<link>http://techwhizbang.com/2010/06/stored-procedure-myth-busters/comment-page-1/#comment-92</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Thu, 01 Jul 2010 19:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=265#comment-92</guid>
		<description>You are wrong about security. Stored procs are more secure. If you grant a user write permissions to a table, the user can circumvent an application create a linked table in access. If the user only has access to the stored procedure the user can not update the table directly. Since auditing (such as storing the user who does the update in the table) can be coded in the stored proc, they are more secure.</description>
		<content:encoded><![CDATA[<p>You are wrong about security. Stored procs are more secure. If you grant a user write permissions to a table, the user can circumvent an application create a linked table in access. If the user only has access to the stored procedure the user can not update the table directly. Since auditing (such as storing the user who does the update in the table) can be coded in the stored proc, they are more secure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Homemade Chicago Stuffed Pizza by techwhizbang</title>
		<link>http://techwhizbang.com/2010/05/homemade-chicago-stuffed-pizza/comment-page-1/#comment-76</link>
		<dc:creator>techwhizbang</dc:creator>
		<pubDate>Sun, 30 May 2010 18:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=209#comment-76</guid>
		<description>Hey Jack, thanks. You can bet on it, go Hawks!</description>
		<content:encoded><![CDATA[<p>Hey Jack, thanks. You can bet on it, go Hawks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Homemade Chicago Stuffed Pizza by Jack Delaney</title>
		<link>http://techwhizbang.com/2010/05/homemade-chicago-stuffed-pizza/comment-page-1/#comment-74</link>
		<dc:creator>Jack Delaney</dc:creator>
		<pubDate>Fri, 28 May 2010 13:45:56 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=209#comment-74</guid>
		<description>Nick, Pizza looks great! I hope that, in true Monday night tennis and Chicago Blackhawk spirit, a few brews were enjoyed with the cuisine.</description>
		<content:encoded><![CDATA[<p>Nick, Pizza looks great! I hope that, in true Monday night tennis and Chicago Blackhawk spirit, a few brews were enjoyed with the cuisine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JRuby, ActiveRecord, JDBC to SQL Server by techwhizbang</title>
		<link>http://techwhizbang.com/2010/03/jruby-activerecord-jdbc-sqlserver/comment-page-1/#comment-72</link>
		<dc:creator>techwhizbang</dc:creator>
		<pubDate>Mon, 24 May 2010 02:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=109#comment-72</guid>
		<description>Nice catch, thanks Jason.</description>
		<content:encoded><![CDATA[<p>Nice catch, thanks Jason.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JRuby, ActiveRecord, JDBC to SQL Server by Jason</title>
		<link>http://techwhizbang.com/2010/03/jruby-activerecord-jdbc-sqlserver/comment-page-1/#comment-71</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 18 May 2010 21:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=109#comment-71</guid>
		<description>Minor error in here...

file = File.new(&quot;my_xml.xml&quot;, &quot;w&quot;)
file = File.write(people.to_xml)
file.close

should be...

file = File.new(&quot;my_xml.xml&quot;, &quot;w&quot;)
file.write(people.to_xml)
file.close</description>
		<content:encoded><![CDATA[<p>Minor error in here&#8230;</p>
<p>file = File.new(&#8220;my_xml.xml&#8221;, &#8220;w&#8221;)<br />
file = File.write(people.to_xml)<br />
file.close</p>
<p>should be&#8230;</p>
<p>file = File.new(&#8220;my_xml.xml&#8221;, &#8220;w&#8221;)<br />
file.write(people.to_xml)<br />
file.close</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bright Future for Dynamic Languages by techwhizbang</title>
		<link>http://techwhizbang.com/2010/04/bright-future-for-dynamic-languages/comment-page-1/#comment-58</link>
		<dc:creator>techwhizbang</dc:creator>
		<pubDate>Mon, 12 Apr 2010 16:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=130#comment-58</guid>
		<description>I think real programmers know many languages and when to apply them appropriately. I&#039;m sorry, but your comment shouts ignorance and I think you missed the whole point of the post.</description>
		<content:encoded><![CDATA[<p>I think real programmers know many languages and when to apply them appropriately. I&#8217;m sorry, but your comment shouts ignorance and I think you missed the whole point of the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bright Future for Dynamic Languages by BHH</title>
		<link>http://techwhizbang.com/2010/04/bright-future-for-dynamic-languages/comment-page-1/#comment-57</link>
		<dc:creator>BHH</dc:creator>
		<pubDate>Mon, 12 Apr 2010 11:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=130#comment-57</guid>
		<description>Java and C are for men, for real programmers. Keep on writing scripts with your text editor, one day you&#039;ll be ready boy.</description>
		<content:encoded><![CDATA[<p>Java and C are for men, for real programmers. Keep on writing scripts with your text editor, one day you&#8217;ll be ready boy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Surprise birthday party, wow! by Meagan</title>
		<link>http://techwhizbang.com/2009/11/surprise-birthday-party/comment-page-1/#comment-7</link>
		<dc:creator>Meagan</dc:creator>
		<pubDate>Sun, 15 Nov 2009 20:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=56#comment-7</guid>
		<description>Amazing the things you find in the suburbs, eh?  Sounds like you had a super birthday and we were glad to be a part of it!</description>
		<content:encoded><![CDATA[<p>Amazing the things you find in the suburbs, eh?  Sounds like you had a super birthday and we were glad to be a part of it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jruby-quartz 1.1 released by Randy Pena</title>
		<link>http://techwhizbang.com/2009/11/jruby-quartz-1-1-released/comment-page-1/#comment-2</link>
		<dc:creator>Randy Pena</dc:creator>
		<pubDate>Wed, 04 Nov 2009 05:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=19#comment-2</guid>
		<description>A friend of mine just emailed me one of your articles from a while back.  I read that one a few more.  Really enjoy your blog.  Thanks</description>
		<content:encoded><![CDATA[<p>A friend of mine just emailed me one of your articles from a while back.  I read that one a few more.  Really enjoy your blog.  Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
