<?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"
	>
<channel>
	<title>Comments for Stuff...  And Things...</title>
	<atom:link href="http://stuff-things.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuff-things.net</link>
	<description>Paradise is exactly like where you are right now only much, much better...</description>
	<pubDate>Thu, 20 Nov 2008 20:59:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on Encrypting Lots of Sensitive Data with Ruby (on Rails) by Spike</title>
		<link>http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-175</link>
		<dc:creator>Spike</dc:creator>
		<pubDate>Fri, 13 Jun 2008 21:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-175</guid>
		<description>Yes, you'd use a :text column if you are Base64 encoding the encrypted data.  With many databases a :binary column would likely work as well, but I haven't tested it.  The thing you &lt;em&gt;can't&lt;/em&gt; do is use a :string column.  A :string is limited to 255 characters which is too small to hold data the encrypted data once it's encoded with Base64.

If you are &lt;em&gt;not&lt;/em&gt; using Base64 then you should use :binary.</description>
		<content:encoded><![CDATA[<p>Yes, you&#8217;d use a :text column if you are Base64 encoding the encrypted data.  With many databases a :binary column would likely work as well, but I haven&#8217;t tested it.  The thing you <em>can&#8217;t</em> do is use a :string column.  A :string is limited to 255 characters which is too small to hold data the encrypted data once it&#8217;s encoded with Base64.</p>
<p>If you are <em>not</em> using Base64 then you should use :binary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypting Lots of Sensitive Data with Ruby (on Rails) by Technosophos</title>
		<link>http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-174</link>
		<dc:creator>Technosophos</dc:creator>
		<pubDate>Fri, 13 Jun 2008 20:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-174</guid>
		<description>If the text is base64 encoded, shouldn't it be stored in a field type text, not binary?</description>
		<content:encoded><![CDATA[<p>If the text is base64 encoded, shouldn&#8217;t it be stored in a field type text, not binary?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick and Dirty cropping images with attachment_fu by Paul Sturgess</title>
		<link>http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-135</link>
		<dc:creator>Paul Sturgess</dc:creator>
		<pubDate>Sat, 03 May 2008 18:19:33 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-135</guid>
		<description>Thanks a lot for this. Works a treat.

I also added in the line:

&lt;code&gt;img.strip!&lt;/code&gt;

before the if statement. This just strips out the colour profile information and makes images a lot smaller :-)</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this. Works a treat.</p>
<p>I also added in the line:</p>
<p><code>img.strip!</code></p>
<p>before the if statement. This just strips out the colour profile information and makes images a lot smaller <img src='http://stuff-things.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypting Lots of Sensitive Data with Ruby (on Rails) by Spike</title>
		<link>http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-123</link>
		<dc:creator>Spike</dc:creator>
		<pubDate>Tue, 15 Apr 2008 23:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-123</guid>
		<description>I'm using OpenSSL 0.9.7l on Leopard.  I've also tested it with 0.9.8e, and 0.9.8g on other systems.

How are you storing the encrypted data?  If you are using Rails with SQLite you may run into problems with it's, shall we say, interesting handling of binary data.  You'll at least want to make sure your column is :binary and you might want to Base64 encode it to be safe.

Feel free to email me some code if you'd like me to try and debug it.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using OpenSSL 0.9.7l on Leopard.  I&#8217;ve also tested it with 0.9.8e, and 0.9.8g on other systems.</p>
<p>How are you storing the encrypted data?  If you are using Rails with SQLite you may run into problems with it&#8217;s, shall we say, interesting handling of binary data.  You&#8217;ll at least want to make sure your column is :binary and you might want to Base64 encode it to be safe.</p>
<p>Feel free to email me some code if you&#8217;d like me to try and debug it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypting Lots of Sensitive Data with Ruby (on Rails) by Michael</title>
		<link>http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-121</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 15 Apr 2008 22:11:14 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-121</guid>
		<description>I'm having the same padding check failed error as well.

I'm using Leopard. What version of OpenSSL are you using in the tutorial?

Other sites are saying there are issues with the public key encrypting the data incorrectly.

Thoughts?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same padding check failed error as well.</p>
<p>I&#8217;m using Leopard. What version of OpenSSL are you using in the tutorial?</p>
<p>Other sites are saying there are issues with the public key encrypting the data incorrectly.</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick and Dirty cropping images with attachment_fu by Spike</title>
		<link>http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-118</link>
		<dc:creator>Spike</dc:creator>
		<pubDate>Wed, 09 Apr 2008 20:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-118</guid>
		<description>Shan, I haven't tried it in production, but the following should work:

&lt;code&gt;
i = User.image
i.create_or_update_thumbnail(i.create_temp_file,:thumb, 'crop: 100x100')
&lt;/code&gt;

It will use the overridden resize method to crop the image, and update the size of the thumbnail in the database.</description>
		<content:encoded><![CDATA[<p>Shan, I haven&#8217;t tried it in production, but the following should work:</p>
<p><code><br />
i = User.image<br />
i.create_or_update_thumbnail(i.create_temp_file,:thumb, 'crop: 100x100')<br />
</code></p>
<p>It will use the overridden resize method to crop the image, and update the size of the thumbnail in the database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick and Dirty cropping images with attachment_fu by Shan</title>
		<link>http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-115</link>
		<dc:creator>Shan</dc:creator>
		<pubDate>Sun, 06 Apr 2008 10:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-115</guid>
		<description>Do you have any idea how we could use this function to resize images that have already been stored. 

e.g If the user has the option to select the size of her avatar/thumbnail after uploading the original image.</description>
		<content:encoded><![CDATA[<p>Do you have any idea how we could use this function to resize images that have already been stored. </p>
<p>e.g If the user has the option to select the size of her avatar/thumbnail after uploading the original image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick and Dirty cropping images with attachment_fu by Neil</title>
		<link>http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-112</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Sat, 05 Apr 2008 17:49:50 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/21/quick-and-dirty-cropping-images-with-attachment_fu/#comment-112</guid>
		<description>Thanks for this, Spike. Works perfectly for me, and seems cleaner than the other suggestions for patching the rmagick_processor.</description>
		<content:encoded><![CDATA[<p>Thanks for this, Spike. Works perfectly for me, and seems cleaner than the other suggestions for patching the rmagick_processor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypting Sensitive Data with Ruby (on Rails) by Encrypting Login Password without SSL in Ruby on Rails &#171; i am josh</title>
		<link>http://stuff-things.net/2007/06/11/encrypting-sensitive-data-with-ruby-on-rails/#comment-101</link>
		<dc:creator>Encrypting Login Password without SSL in Ruby on Rails &#171; i am josh</dc:creator>
		<pubDate>Tue, 18 Mar 2008 03:05:06 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2007/06/11/encrypting-sensitive-data-with-ruby-on-rails/#comment-101</guid>
		<description>[...] Encrypting Sensitive Data with Ruby (on Rails)     &#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] Encrypting Sensitive Data with Ruby (on Rails)     &nbsp; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypting Lots of Sensitive Data with Ruby (on Rails) by links for 2008-03-12 &#171; Bloggitation</title>
		<link>http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-100</link>
		<dc:creator>links for 2008-03-12 &#171; Bloggitation</dc:creator>
		<pubDate>Wed, 12 Mar 2008 00:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://stuff-things.net/2008/02/05/encrypting-lots-of-sensitive-data-with-ruby-on-rails/#comment-100</guid>
		<description>[...] Encrypting Lots of Sensitive Data with Ruby (on Rails) (tags: ruby rails security crypto programming) [...]</description>
		<content:encoded><![CDATA[<p>[...] Encrypting Lots of Sensitive Data with Ruby (on Rails) (tags: ruby rails security crypto programming) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
