<?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 Motion Standing Still</title>
	<atom:link href="http://www.motionstandingstill.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.motionstandingstill.com</link>
	<description>high performance ruby on rails</description>
	<lastBuildDate>Sat, 30 Jan 2010 18:44:05 +1300</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Setting up a resumable remote login to ubuntu with vnc by j4y</title>
		<link>http://www.motionstandingstill.com/setting-up-a-resumable-remote-login-to-ubuntu-with-vnc/2008-10-13/comment-page-1/#comment-8524</link>
		<dc:creator>j4y</dc:creator>
		<pubDate>Sat, 30 Jan 2010 18:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=140#comment-8524</guid>
		<description>Thanks for documenting this.  It worked perfectly for me.</description>
		<content:encoded><![CDATA[<p>Thanks for documenting this.  It worked perfectly for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nginx to send files with x-accel-redirect by IceskYsl@1sters! &#187; Using nginx to send files with X-Accel-Redirect</title>
		<link>http://www.motionstandingstill.com/using-nginx-to-send-files-with-x-accel-redirect/2008-09-03/comment-page-1/#comment-5887</link>
		<dc:creator>IceskYsl@1sters! &#187; Using nginx to send files with X-Accel-Redirect</dc:creator>
		<pubDate>Tue, 22 Sep 2009 02:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=109#comment-5887</guid>
		<description>[...] http://www.motionstandingstill.com/using-nginx-to-send-files-with-x-accel-redirect/2008-09-03/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.motionstandingstill.com/using-nginx-to-send-files-with-x-accel-redirect/2008-09-03/" rel="nofollow">http://www.motionstandingstill.com/using-nginx-to-send-files-with-x-accel-redirect/2008-09-03/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Attributes not saving for models with attachments by Kostas</title>
		<link>http://www.motionstandingstill.com/attributes-not-saving-for-models-with-attachments/2008-11-05/comment-page-1/#comment-4520</link>
		<dc:creator>Kostas</dc:creator>
		<pubDate>Wed, 08 Jul 2009 07:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=170#comment-4520</guid>
		<description>I believe that the best course of action is to comment out the line from the plugin and add it manually to whichever model actually needs it.
This way you keep security and control on your code.</description>
		<content:encoded><![CDATA[<p>I believe that the best course of action is to comment out the line from the plugin and add it manually to whichever model actually needs it.<br />
This way you keep security and control on your code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Attributes not saving for models with attachments by Lex</title>
		<link>http://www.motionstandingstill.com/attributes-not-saving-for-models-with-attachments/2008-11-05/comment-page-1/#comment-4152</link>
		<dc:creator>Lex</dc:creator>
		<pubDate>Sun, 31 May 2009 04:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=170#comment-4152</guid>
		<description>I had a similar issue where I had set an attribute (id) that was not a model accessor.  I chose to manually set the id attribute and then remove it from the hash -- rather than make the id an accessor:

   1. def image_attributes=(image_attributes)
   2.     image_attributes.each do &#124;attributes&#124;
   3.       if attributes[:id].blank?
   4.         photos.build(attributes)
   5.       else
   6.         photo = photos.detect { &#124;t&#124; t.id == attributes[:id].to_i}
   7.         photo.id = attributes[:id]
   8.         attributes.delete(&quot;id&quot;)
   9.         photo.attributes = attributes
  10.       end
  11.     end
  12.   end

We get alot of speed with the Rails framework, e.g., Mass Assignment Hashes...but can spend alot of time debugging it, too.</description>
		<content:encoded><![CDATA[<p>I had a similar issue where I had set an attribute (id) that was not a model accessor.  I chose to manually set the id attribute and then remove it from the hash &#8212; rather than make the id an accessor:</p>
<p>   1. def image_attributes=(image_attributes)<br />
   2.     image_attributes.each do |attributes|<br />
   3.       if attributes[:id].blank?<br />
   4.         photos.build(attributes)<br />
   5.       else<br />
   6.         photo = photos.detect { |t| t.id == attributes[:id].to_i}<br />
   7.         photo.id = attributes[:id]<br />
   8.         attributes.delete(&#8221;id&#8221;)<br />
   9.         photo.attributes = attributes<br />
  10.       end<br />
  11.     end<br />
  12.   end</p>
<p>We get alot of speed with the Rails framework, e.g., Mass Assignment Hashes&#8230;but can spend alot of time debugging it, too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordpress with Nginx on Slicehost by nahum</title>
		<link>http://www.motionstandingstill.com/wordpress-with-nginx-on-slicehost/2008-10-23/comment-page-1/#comment-4115</link>
		<dc:creator>nahum</dc:creator>
		<pubDate>Tue, 26 May 2009 23:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=162#comment-4115</guid>
		<description>That&#039;s exactly the same as the one I&#039;m using.</description>
		<content:encoded><![CDATA[<p>That&#8217;s exactly the same as the one I&#8217;m using.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordpress with Nginx on Slicehost by Kolya</title>
		<link>http://www.motionstandingstill.com/wordpress-with-nginx-on-slicehost/2008-10-23/comment-page-1/#comment-4113</link>
		<dc:creator>Kolya</dc:creator>
		<pubDate>Tue, 26 May 2009 21:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=162#comment-4113</guid>
		<description>Craig, here it is (credits to Matt Stevens from slicehost forum):

# if the requested file exists, return it immediately
if (-f $request_filename) {
break;
}

set $supercache_file &#039;&#039;;
set $supercache_uri $request_uri;

if ($request_method = POST) {
set $supercache_uri &#039;&#039;;
}

# Using pretty permalinks, so bypass the cache for any query string
if ($query_string) {
set $supercache_uri &#039;&#039;;
}

if ($http_cookie ~* &quot;comment_author_&#124;wordpress&#124;wp-postpass_&quot; ) {
set $supercache_uri &#039;&#039;;
}

# if we haven&#039;t bypassed the cache, specify our supercache file
if ($supercache_uri ~ ^(.+)$) {
set $supercache_file /wp-content/cache/supercache/$http_host/$1index.html;
}

# only rewrite to the supercache file if it actually exists
if (-f $document_root$supercache_file) {
rewrite ^(.*)$ $supercache_file break;
}

# all other requests go to Wordpress
if (!-e $request_filename) {
rewrite . /index.php last;
}</description>
		<content:encoded><![CDATA[<p>Craig, here it is (credits to Matt Stevens from slicehost forum):</p>
<p># if the requested file exists, return it immediately<br />
if (-f $request_filename) {<br />
break;<br />
}</p>
<p>set $supercache_file &#8221;;<br />
set $supercache_uri $request_uri;</p>
<p>if ($request_method = POST) {<br />
set $supercache_uri &#8221;;<br />
}</p>
<p># Using pretty permalinks, so bypass the cache for any query string<br />
if ($query_string) {<br />
set $supercache_uri &#8221;;<br />
}</p>
<p>if ($http_cookie ~* &#8220;comment_author_|wordpress|wp-postpass_&#8221; ) {<br />
set $supercache_uri &#8221;;<br />
}</p>
<p># if we haven&#8217;t bypassed the cache, specify our supercache file<br />
if ($supercache_uri ~ ^(.+)$) {<br />
set $supercache_file /wp-content/cache/supercache/$http_host/$1index.html;<br />
}</p>
<p># only rewrite to the supercache file if it actually exists<br />
if (-f $document_root$supercache_file) {<br />
rewrite ^(.*)$ $supercache_file break;<br />
}</p>
<p># all other requests go to Wordpress<br />
if (!-e $request_filename) {<br />
rewrite . /index.php last;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordpress with Nginx on Slicehost by Craig Jolicoeur</title>
		<link>http://www.motionstandingstill.com/wordpress-with-nginx-on-slicehost/2008-10-23/comment-page-1/#comment-3881</link>
		<dc:creator>Craig Jolicoeur</dc:creator>
		<pubDate>Sun, 17 May 2009 00:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=162#comment-3881</guid>
		<description>I&#039;m very interested in what you are using for WPSuperCache config params.

The nginx.conf file you listed above simply includes the prams from the file below:

include /etc/nginx/conf/wordpress_params.super_cache;

Could you post, or even better, email me directly what you are using to get WPSuperCache to work with WP?  I&#039;ve tried many things and have been unable to get WPSuperCache working with my WP+Nginx setup.</description>
		<content:encoded><![CDATA[<p>I&#8217;m very interested in what you are using for WPSuperCache config params.</p>
<p>The nginx.conf file you listed above simply includes the prams from the file below:</p>
<p>include /etc/nginx/conf/wordpress_params.super_cache;</p>
<p>Could you post, or even better, email me directly what you are using to get WPSuperCache to work with WP?  I&#8217;ve tried many things and have been unable to get WPSuperCache working with my WP+Nginx setup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up a resumable remote login to ubuntu with vnc by Getting vnc4server on ubuntu 8.10 working &#171; Yong&#8217;s Blog</title>
		<link>http://www.motionstandingstill.com/setting-up-a-resumable-remote-login-to-ubuntu-with-vnc/2008-10-13/comment-page-1/#comment-3456</link>
		<dc:creator>Getting vnc4server on ubuntu 8.10 working &#171; Yong&#8217;s Blog</dc:creator>
		<pubDate>Tue, 14 Apr 2009 09:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=140#comment-3456</guid>
		<description>[...] References: http://ubuntuforums.org/showthread.php?t=122402 http://www.motionstandingstill.com/setting-up-a-resumable-remote-login-to-ubuntu-with-vnc/2008-10-13... [...]</description>
		<content:encoded><![CDATA[<p>[...] References: <a href="http://ubuntuforums.org/showthread.php?t=122402" rel="nofollow">http://ubuntuforums.org/showthread.php?t=122402</a> <a href="http://www.motionstandingstill.com/setting-up-a-resumable-remote-login-to-ubuntu-with-vnc/2008-10-13.." rel="nofollow">http://www.motionstandingstill.com/setting-up-a-resumable-remote-login-to-ubuntu-with-vnc/2008-10-13..</a>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring and watching Apache. by nahum</title>
		<link>http://www.motionstandingstill.com/configuring-and-watching-apache/2008-08-03/comment-page-1/#comment-2948</link>
		<dc:creator>nahum</dc:creator>
		<pubDate>Tue, 24 Feb 2009 20:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=49#comment-2948</guid>
		<description>jeh: Did I realize that reload is &quot;...usually equivalent to graceful...&quot;?  No I didn&#039;t.  That&#039;s a bit dumb using different names, plus &quot;usually&quot; isn&#039;t good enough.  Yep to your &#039;status&#039; question.</description>
		<content:encoded><![CDATA[<p>jeh: Did I realize that reload is &#8220;&#8230;usually equivalent to graceful&#8230;&#8221;?  No I didn&#8217;t.  That&#8217;s a bit dumb using different names, plus &#8220;usually&#8221; isn&#8217;t good enough.  Yep to your &#8217;status&#8217; question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring and watching Apache. by jeh</title>
		<link>http://www.motionstandingstill.com/configuring-and-watching-apache/2008-08-03/comment-page-1/#comment-2947</link>
		<dc:creator>jeh</dc:creator>
		<pubDate>Tue, 24 Feb 2009 19:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.motionstandingstill.com/?p=49#comment-2947</guid>
		<description>You do realize that the &quot;reload&quot; action in the built in is usually equivalent to graceful and status is just using a lynx command to grab the status URL, right?</description>
		<content:encoded><![CDATA[<p>You do realize that the &#8220;reload&#8221; action in the built in is usually equivalent to graceful and status is just using a lynx command to grab the status URL, right?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 3.077 seconds -->
