<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Ambethia</title>
	<link>http://ambethia.com</link>
	<description>The journal and personal website of Jason L Perry</description>
	<pubDate>Thu, 24 Jul 2008 11:33:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>Comment on reCAPTCHA for Rails by evan</title>
		<link>http://ambethia.com/2007/05/27/recaptcha-for-rails/#comment-3466</link>
		<dc:creator>evan</dc:creator>
		<pubDate>Tue, 01 Jul 2008 17:48:04 +0000</pubDate>
		<guid>http://ambethia.com/2007/05/27/recaptcha-for-rails/#comment-3466</guid>
		<description>I figured out a way to use the reCAPTCHA AJAX API, which takes care of my problem.

Just submitted an enhancement patch to your lighthouse tracker.

thanks again and enjoy!</description>
		<content:encoded><![CDATA[<p>I figured out a way to use the reCAPTCHA <span class="caps">AJAX</span> <span class="caps">API</span>, which takes care of my problem.</p>
<p>Just submitted an enhancement patch to your lighthouse tracker.</p>
<p>thanks again and enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on reCAPTCHA for Rails by evan</title>
		<link>http://ambethia.com/2007/05/27/recaptcha-for-rails/#comment-3447</link>
		<dc:creator>evan</dc:creator>
		<pubDate>Mon, 30 Jun 2008 22:22:05 +0000</pubDate>
		<guid>http://ambethia.com/2007/05/27/recaptcha-for-rails/#comment-3447</guid>
		<description>great plugin
wondering if you have any tips for using it in a form that is updated asynchronously...</description>
		<content:encoded><![CDATA[<p>great plugin<br />
wondering if you have any tips for using it in a form that is updated asynchronously&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Projects by awef</title>
		<link>http://ambethia.com/projects/#comment-3437</link>
		<dc:creator>awef</dc:creator>
		<pubDate>Mon, 30 Jun 2008 09:29:06 +0000</pubDate>
		<guid>http://ambethia.com/projects/#comment-3437</guid>
		<description>thanks for an alternative recaptcha plugin :)  I can actually sleep tonight!</description>
		<content:encoded><![CDATA[<p>thanks for an alternative recaptcha plugin <img src='http://ambethia.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I can actually sleep tonight!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Makes for some ugly SQL, but&#8230; by Jason Perry</title>
		<link>http://ambethia.com/2008/06/19/makes-for-some-ugly-sql-but/#comment-3275</link>
		<dc:creator>Jason Perry</dc:creator>
		<pubDate>Thu, 19 Jun 2008 15:55:42 +0000</pubDate>
		<guid>http://ambethia.com/2008/06/19/makes-for-some-ugly-sql-but/#comment-3275</guid>
		<description>&lt;code lang="ruby"&gt;
Book.find(2).listings
&lt;/code&gt;

&lt;code lang="sql"&gt;
SELECT * FROM `books` WHERE (`books`.`id` = 2) 
SELECT * FROM `listings` WHERE (`listings`.book_id = 2) 
&lt;/code&gt;

As many selects from the `guides` table as there are listings.

&lt;code lang="ruby"&gt;
Book.find(2).listings.sort
&lt;/code&gt;

&lt;code lang="sql"&gt;
SELECT * FROM `books` WHERE (`books`.`id` = 2) 
SELECT * FROM `listings` WHERE (`listings`.book_id = 2) 
SELECT * FROM `guides` WHERE (`guides`.`id` = 8) 
SELECT * FROM `guides` WHERE (`guides`.`id` = 2) 
SELECT * FROM `guides` WHERE (`guides`.`id` = 4) 
SELECT * FROM `guides` WHERE (`guides`.`id` = 1) 
SELECT * FROM `guides` WHERE (`guides`.`id` = 7) 
SELECT * FROM `guides` WHERE (`guides`.`id` = 5)
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<div class="code ruby" style="font-family: monospace;">
Book.<span style="color:#9900CC;">find</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">2</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">listings</span></p>
<p>&nbsp;</p></div>
<div class="code sql" style="font-family: monospace;">
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`books`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`books`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`listings`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`listings`</span>.book_id = <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> </p>
<p>&nbsp;</p></div>
<p>As many selects from the `guides` table as there are listings.</p>
<div class="code ruby" style="font-family: monospace;">
Book.<span style="color:#9900CC;">find</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">2</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">listings</span>.<span style="color:#9900CC;">sort</span></p>
<p>&nbsp;</p></div>
<div class="code sql" style="font-family: monospace;">
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`books`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`books`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`listings`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`listings`</span>.book_id = <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`guides`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`guides`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">8</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`guides`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`guides`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`guides`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`guides`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">4</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`guides`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`guides`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`guides`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`guides`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">7</span><span style="color: #66cc66;">&#41;</span> <br />
<span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`guides`</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`guides`</span>.<span style="color: #ff0000;">`id`</span> = <span style="color: #cc66cc;">5</span><span style="color: #66cc66;">&#41;</span></p>
<p>&nbsp;</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Makes for some ugly SQL, but&#8230; by Pope</title>
		<link>http://ambethia.com/2008/06/19/makes-for-some-ugly-sql-but/#comment-3274</link>
		<dc:creator>Pope</dc:creator>
		<pubDate>Thu, 19 Jun 2008 15:13:21 +0000</pubDate>
		<guid>http://ambethia.com/2008/06/19/makes-for-some-ugly-sql-but/#comment-3274</guid>
		<description>Ahhh...but what does the SQL look like?</description>
		<content:encoded><![CDATA[<p>Ahhh&#8230;but what does the <span class="caps">SQL</span> look like?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zebra Tables Revisited by TomasKell</title>
		<link>http://ambethia.com/2006/11/22/zebra-tables-revisited/#comment-3009</link>
		<dc:creator>TomasKell</dc:creator>
		<pubDate>Thu, 29 May 2008 01:55:33 +0000</pubDate>
		<guid>http://ambethia.com/2006/11/22/zebra-tables-revisited/#comment-3009</guid>
		<description>Hello webmaster, very nice site here, great work! 
TomasKell</description>
		<content:encoded><![CDATA[<p>Hello webmaster, very nice site here, great work! <br />
TomasKell</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I can do anything by ynw</title>
		<link>http://ambethia.com/2008/04/07/i-can-do-anything/#comment-2551</link>
		<dc:creator>ynw</dc:creator>
		<pubDate>Sun, 20 Apr 2008 16:28:19 +0000</pubDate>
		<guid>http://ambethia.com/2008/04/07/i-can-do-anything/#comment-2551</guid>
		<description>I know you can</description>
		<content:encoded><![CDATA[<p>I know you can</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on You can&#8217;t cache that by Todd Werth</title>
		<link>http://ambethia.com/2008/03/19/you-cant-cache-that/#comment-2356</link>
		<dc:creator>Todd Werth</dc:creator>
		<pubDate>Sat, 05 Apr 2008 00:41:24 +0000</pubDate>
		<guid>http://ambethia.com/2008/03/19/you-cant-cache-that/#comment-2356</guid>
		<description>That's awesome.</description>
		<content:encoded><![CDATA[<p>That&#8217;s awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MicroTip #1 by Ruby, Rails, RSpec, Rails Plugin, JavaScript, OS X &#171; exceptionz</title>
		<link>http://ambethia.com/2008/01/23/microtip-1/#comment-1297</link>
		<dc:creator>Ruby, Rails, RSpec, Rails Plugin, JavaScript, OS X &#171; exceptionz</dc:creator>
		<pubDate>Tue, 29 Jan 2008 09:20:42 +0000</pubDate>
		<guid>http://ambethia.com/2008/01/23/microtip-1/#comment-1297</guid>
		<description>[...] Prevent those race conditions in RSpec specs [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Prevent those race conditions in RSpec specs [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on attr_protected my left foot. by Christopher J. Bottaro</title>
		<link>http://ambethia.com/2007/11/09/attr_protected-my-left-foot/#comment-1197</link>
		<dc:creator>Christopher J. Bottaro</dc:creator>
		<pubDate>Tue, 22 Jan 2008 01:31:50 +0000</pubDate>
		<guid>http://ambethia.com/2007/11/09/attr_protected-my-left-foot/#comment-1197</guid>
		<description>Ok, I made the Rails plugin...
http://blog.stochasticbytes.com/2008/01/paramprotected.html</description>
		<content:encoded><![CDATA[<p>Ok, I made the Rails plugin&#8230;<br />
<a href="http://blog.stochasticbytes.com/2008/01/paramprotected.html" rel="nofollow">http://blog.stochasticbytes.com/2008/01/paramprotected.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on attr_protected my left foot. by Christopher J. Bottaro</title>
		<link>http://ambethia.com/2007/11/09/attr_protected-my-left-foot/#comment-1152</link>
		<dc:creator>Christopher J. Bottaro</dc:creator>
		<pubDate>Fri, 18 Jan 2008 00:08:26 +0000</pubDate>
		<guid>http://ambethia.com/2007/11/09/attr_protected-my-left-foot/#comment-1152</guid>
		<description>I completely agree with you (after the nightmare code refactoring job after trying attr_protected).  I'll be looking at merb_param_protection ... thanks for that, btw.</description>
		<content:encoded><![CDATA[<p>I completely agree with you (after the nightmare code refactoring job after trying attr_protected).  I&#8217;ll be looking at merb_param_protection &#8230; thanks for that, btw.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on attr_protected my left foot. by Michael</title>
		<link>http://ambethia.com/2007/11/09/attr_protected-my-left-foot/#comment-1102</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 12 Jan 2008 03:29:45 +0000</pubDate>
		<guid>http://ambethia.com/2007/11/09/attr_protected-my-left-foot/#comment-1102</guid>
		<description>Well, it took a while, but this is now an official Merb plugin: merb_param_protection.</description>
		<content:encoded><![CDATA[<p>Well, it took a while, but this is now an official Merb plugin: merb_param_protection.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
