<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for require &#039;brain&#039;</title>
	<atom:link href="http://szeryf.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://szeryf.wordpress.com</link>
	<description>The blog with the bug.</description>
	<lastBuildDate>Thu, 23 May 2013 14:32:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on The simplest way to set-up a &#8220;we&#8217;ll be back shortly&#8221; page by Website Rankings Dropped Fast - 10 Possible Causes - Lets Build Websites</title>
		<link>http://szeryf.wordpress.com/2009/07/10/simplest-way-to-set-up-a-well-be-back-shortly-page/#comment-1345</link>
		<dc:creator><![CDATA[Website Rankings Dropped Fast - 10 Possible Causes - Lets Build Websites]]></dc:creator>
		<pubDate>Thu, 23 May 2013 14:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=206#comment-1345</guid>
		<description><![CDATA[[&#8230;] If you have a planned downtime you can setup a 503 code which tells the search engines that you&#8217;re aware of the situation and that they should try again later. You can even set a return time for the search engines to crawl your site. This is pretty technical for the average webmaster but you can see more details from the Google blog. Another technical resource is this post. [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] If you have a planned downtime you can setup a 503 code which tells the search engines that you&#8217;re aware of the situation and that they should try again later. You can even set a return time for the search engines to crawl your site. This is pretty technical for the average webmaster but you can see more details from the Google blog. Another technical resource is this post. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The simplest way to set-up a &#8220;we&#8217;ll be back shortly&#8221; page by Brett Stauner (@mightybs)</title>
		<link>http://szeryf.wordpress.com/2009/07/10/simplest-way-to-set-up-a-well-be-back-shortly-page/#comment-1333</link>
		<dc:creator><![CDATA[Brett Stauner (@mightybs)]]></dc:creator>
		<pubDate>Wed, 10 Apr 2013 20:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=206#comment-1333</guid>
		<description><![CDATA[I use this rewrite condition to allow access to anything static to be able to reach stylesheets, images, etc much like Ernesto, but easily allow for anything that does not need to be processed by my application.

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* - [R=503]]]></description>
		<content:encoded><![CDATA[<p>I use this rewrite condition to allow access to anything static to be able to reach stylesheets, images, etc much like Ernesto, but easily allow for anything that does not need to be processed by my application.</p>
<p>RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteRule .* &#8211; [R=503]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TextMate shortcuts you should be using by TextMate 3: useful links and ideas for Ruby &#124; RubyRails</title>
		<link>http://szeryf.wordpress.com/2010/02/15/textmate-shortcuts-you-should-be-using/#comment-1289</link>
		<dc:creator><![CDATA[TextMate 3: useful links and ideas for Ruby &#124; RubyRails]]></dc:creator>
		<pubDate>Sun, 09 Sep 2012 05:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=253#comment-1289</guid>
		<description><![CDATA[[...] TextMate Shortcuts szeryf&#8217;s list of very useful keyboard shortcuts   This entry was posted in Uncategorized and tagged links, TextMate. Bookmark the permalink.    &#8592; TextMate 2 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] TextMate Shortcuts szeryf&#8217;s list of very useful keyboard shortcuts   This entry was posted in Uncategorized and tagged links, TextMate. Bookmark the permalink.    &larr; TextMate 2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy and flexible breadcrumbs for Rails by Fabio</title>
		<link>http://szeryf.wordpress.com/2008/06/13/easy-and-flexible-breadcrumbs-for-rails/#comment-1286</link>
		<dc:creator><![CDATA[Fabio]]></dc:creator>
		<pubDate>Thu, 19 Jul 2012 17:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=45#comment-1286</guid>
		<description><![CDATA[Hi, thanks for a nice breadcrumb solution. One suggestion: right now, the breadcrumb text is not html escaped, this opens up the risk of XSS.  e.g. if @title contains &quot;alert(&#039;hi&#039;)&quot;  add_breadcrumb @title,foo will output the script verbatim instead of the safe &quot;&amp;ltscript...&quot;

The app can do the escaping, but since the breadcrumbs are set on the controller, it is a bit cumbersome:
add_breadcrumb ERB::Util.html_escape(@title), ...

I suggest you consider escaping the output as part of the library instead of leaving it to the application.]]></description>
		<content:encoded><![CDATA[<p>Hi, thanks for a nice breadcrumb solution. One suggestion: right now, the breadcrumb text is not html escaped, this opens up the risk of XSS.  e.g. if @title contains &#8220;alert(&#8216;hi&#8217;)&#8221;  add_breadcrumb @title,foo will output the script verbatim instead of the safe &#8220;&amp;ltscript&#8230;&#8221;</p>
<p>The app can do the escaping, but since the breadcrumbs are set on the controller, it is a bit cumbersome:<br />
add_breadcrumb ERB::Util.html_escape(@title), &#8230;</p>
<p>I suggest you consider escaping the output as part of the library instead of leaving it to the application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy and flexible breadcrumbs for Rails by Daryn</title>
		<link>http://szeryf.wordpress.com/2008/06/13/easy-and-flexible-breadcrumbs-for-rails/#comment-1285</link>
		<dc:creator><![CDATA[Daryn]]></dc:creator>
		<pubDate>Wed, 11 Jul 2012 18:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=45#comment-1285</guid>
		<description><![CDATA[I ask this because, I don&#039;t want to have use use add_breadcrumb multiple times each time a go to a different page under a certain trail. I just want the path to be stores statically and added on to.]]></description>
		<content:encoded><![CDATA[<p>I ask this because, I don&#8217;t want to have use use add_breadcrumb multiple times each time a go to a different page under a certain trail. I just want the path to be stores statically and added on to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy and flexible breadcrumbs for Rails by Daryn</title>
		<link>http://szeryf.wordpress.com/2008/06/13/easy-and-flexible-breadcrumbs-for-rails/#comment-1284</link>
		<dc:creator><![CDATA[Daryn]]></dc:creator>
		<pubDate>Wed, 11 Jul 2012 17:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=45#comment-1284</guid>
		<description><![CDATA[so is @breadcrumb static (doesn&#039;t erase after the first call to add_breadcrumb)?]]></description>
		<content:encoded><![CDATA[<p>so is @breadcrumb static (doesn&#8217;t erase after the first call to add_breadcrumb)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy and flexible breadcrumbs for Rails by szeryf</title>
		<link>http://szeryf.wordpress.com/2008/06/13/easy-and-flexible-breadcrumbs-for-rails/#comment-1283</link>
		<dc:creator><![CDATA[szeryf]]></dc:creator>
		<pubDate>Wed, 11 Jul 2012 16:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=45#comment-1283</guid>
		<description><![CDATA[The &#124;&#124;= is conditional initialization in Ruby, i.e. it only assigns the value if @breadcrumb is nil.]]></description>
		<content:encoded><![CDATA[<p>The ||= is conditional initialization in Ruby, i.e. it only assigns the value if @breadcrumb is nil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy and flexible breadcrumbs for Rails by Daryn</title>
		<link>http://szeryf.wordpress.com/2008/06/13/easy-and-flexible-breadcrumbs-for-rails/#comment-1282</link>
		<dc:creator><![CDATA[Daryn]]></dc:creator>
		<pubDate>Wed, 11 Jul 2012 15:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=45#comment-1282</guid>
		<description><![CDATA[what does the &#124;&#124;= do for @breadcrumb?]]></description>
		<content:encoded><![CDATA[<p>what does the ||= do for @breadcrumb?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Does stubbing make your tests brittle? by Sorry, You&#8217;re Just Not My Type &#124; site_title</title>
		<link>http://szeryf.wordpress.com/2008/01/07/does-stubbing-make-your-tests-brittle/#comment-1278</link>
		<dc:creator><![CDATA[Sorry, You&#8217;re Just Not My Type &#124; site_title]]></dc:creator>
		<pubDate>Thu, 21 Jun 2012 02:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/2008/01/07/does-stubbing-make-your-tests-brittle/#comment-1278</guid>
		<description><![CDATA[[...] szeryf asks if stubbing makes your tests brittle. His widely-shared concern is that mocks and stubs couple your tests to the implementation. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] szeryf asks if stubbing makes your tests brittle. His widely-shared concern is that mocks and stubs couple your tests to the implementation. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy and flexible breadcrumbs for Rails by Jan</title>
		<link>http://szeryf.wordpress.com/2008/06/13/easy-and-flexible-breadcrumbs-for-rails/#comment-1274</link>
		<dc:creator><![CDATA[Jan]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 22:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=45#comment-1274</guid>
		<description><![CDATA[This solution comes absolutely handy for a little project I&#039;m on at the moment. Thank you! Still being a beginner @Rails, I wondered where to put my breadcrumbs method and had just started to type it into the application helper, when I decided to do a quick Google search. Glad I did :-)]]></description>
		<content:encoded><![CDATA[<p>This solution comes absolutely handy for a little project I&#8217;m on at the moment. Thank you! Still being a beginner @Rails, I wondered where to put my breadcrumbs method and had just started to type it into the application helper, when I decided to do a quick Google search. Glad I did :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: turn off ANSI codes in Rails console by andrewclarkeau</title>
		<link>http://szeryf.wordpress.com/2009/02/02/how-to-turn-off-ansi-codes-in-rails-console/#comment-1273</link>
		<dc:creator><![CDATA[andrewclarkeau]]></dc:creator>
		<pubDate>Fri, 11 May 2012 01:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=143#comment-1273</guid>
		<description><![CDATA[errrm, I mean, Rails 3.2 - i&#039;m on 3.2.1 so my brain wrote 3.1. duhhh.]]></description>
		<content:encoded><![CDATA[<p>errrm, I mean, Rails 3.2 &#8211; i&#8217;m on 3.2.1 so my brain wrote 3.1. duhhh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: turn off ANSI codes in Rails console by andrewclarkeau</title>
		<link>http://szeryf.wordpress.com/2009/02/02/how-to-turn-off-ansi-codes-in-rails-console/#comment-1272</link>
		<dc:creator><![CDATA[andrewclarkeau]]></dc:creator>
		<pubDate>Fri, 11 May 2012 01:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=143#comment-1272</guid>
		<description><![CDATA[And for anyone hunting for a solution in rails 3.1, try this

  # disappear the annoying ANSI codes for PowerShell and cmd
  if RUBY_PLATFORM =~ /mswin&#124;mingw/i
    ActiveSupport::LogSubscriber.colorize_logging = false
  end]]></description>
		<content:encoded><![CDATA[<p>And for anyone hunting for a solution in rails 3.1, try this</p>
<p>  # disappear the annoying ANSI codes for PowerShell and cmd<br />
  if RUBY_PLATFORM =~ /mswin|mingw/i<br />
    ActiveSupport::LogSubscriber.colorize_logging = false<br />
  end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cookie handling in multi-domain applications in Ruby on Rails by Paweł Gościcki (@pawelgoscicki)</title>
		<link>http://szeryf.wordpress.com/2008/01/21/cookie-handling-in-multi-domain-applications-in-ruby-on-rails/#comment-1271</link>
		<dc:creator><![CDATA[Paweł Gościcki (@pawelgoscicki)]]></dc:creator>
		<pubDate>Tue, 13 Mar 2012 10:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/2008/01/21/cookie-handling-in-multi-domain-applications-in-ruby-on-rails/#comment-1271</guid>
		<description><![CDATA[How about doing this? In `config/environments/production.rb`:
config.session_store :cookie_store, { :key =&gt; &#039;_my_app_session&#039;, :domain =&gt; &quot;.myapp.com&quot;  }]]></description>
		<content:encoded><![CDATA[<p>How about doing this? In `config/environments/production.rb`:<br />
config.session_store :cookie_store, { :key =&gt; &#8216;_my_app_session&#8217;, :domain =&gt; &#8220;.myapp.com&#8221;  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unstubbing methods in Mocha by floehopper</title>
		<link>http://szeryf.wordpress.com/2007/11/09/unstubbing-methods-in-mocha/#comment-1270</link>
		<dc:creator><![CDATA[floehopper]]></dc:creator>
		<pubDate>Wed, 07 Mar 2012 14:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/2007/11/09/unstubbing-methods-in-mocha/#comment-1270</guid>
		<description><![CDATA[A bit late, but this functionality was added [1] to Mocha some time ago. Cheers, James.

[1] http://mocha.rubyforge.org/Mocha/Mock.html#method-i-unstub]]></description>
		<content:encoded><![CDATA[<p>A bit late, but this functionality was added [1] to Mocha some time ago. Cheers, James.</p>
<p>[1] <a href="http://mocha.rubyforge.org/Mocha/Mock.html#method-i-unstub" rel="nofollow">http://mocha.rubyforge.org/Mocha/Mock.html#method-i-unstub</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Self-referential many-to-many relations in Ruby on Rails by Guillaume</title>
		<link>http://szeryf.wordpress.com/2007/06/27/self-referential-many-to-many-relations-in-ruby-on-rails/#comment-1265</link>
		<dc:creator><![CDATA[Guillaume]]></dc:creator>
		<pubDate>Thu, 19 Jan 2012 02:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/2007/06/27/self-referential-many-to-many-relations-in-ruby-on-rails/#comment-1265</guid>
		<description><![CDATA[Many many thanks!]]></description>
		<content:encoded><![CDATA[<p>Many many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Favorite Interview Question by Witek</title>
		<link>http://szeryf.wordpress.com/2012/01/05/my-favorite-interview-question/#comment-1262</link>
		<dc:creator><![CDATA[Witek]]></dc:creator>
		<pubDate>Sun, 15 Jan 2012 22:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=799#comment-1262</guid>
		<description><![CDATA[I could read it earlier;)]]></description>
		<content:encoded><![CDATA[<p>I could read it earlier;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TextMate shortcuts you should be using by TextMate Power Tips &#124; simpledream</title>
		<link>http://szeryf.wordpress.com/2010/02/15/textmate-shortcuts-you-should-be-using/#comment-1258</link>
		<dc:creator><![CDATA[TextMate Power Tips &#124; simpledream]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 21:41:42 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=253#comment-1258</guid>
		<description><![CDATA[[...] TextMate shortcuts you should be using  Share this:EmailLike this:LikeBe the first to like this post.   This entry was posted in Craftsmanship, Mac, Software and tagged Craftsmanship, shortcuts, textmate by Lance Willett. Bookmark the permalink. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] TextMate shortcuts you should be using  Share this:EmailLike this:LikeBe the first to like this post.   This entry was posted in Craftsmanship, Mac, Software and tagged Craftsmanship, shortcuts, textmate by Lance Willett. Bookmark the permalink. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally getting GetText to work with Rails 2.2 by pragmatig</title>
		<link>http://szeryf.wordpress.com/2009/03/07/finally-getting-gettext-to-work-with-rails-22/#comment-1248</link>
		<dc:creator><![CDATA[pragmatig]]></dc:creator>
		<pubDate>Thu, 13 Oct 2011 21:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=165#comment-1248</guid>
		<description><![CDATA[Have a look at the readme of https://github.com/grosser/gettext_i18n_rails should e all there]]></description>
		<content:encoded><![CDATA[<p>Have a look at the readme of <a href="https://github.com/grosser/gettext_i18n_rails" rel="nofollow">https://github.com/grosser/gettext_i18n_rails</a> should e all there</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally getting GetText to work with Rails 2.2 by skorianez (@skorianez)</title>
		<link>http://szeryf.wordpress.com/2009/03/07/finally-getting-gettext-to-work-with-rails-22/#comment-1247</link>
		<dc:creator><![CDATA[skorianez (@skorianez)]]></dc:creator>
		<pubDate>Thu, 13 Oct 2011 18:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=165#comment-1247</guid>
		<description><![CDATA[Gret tutorial, How about upgrade for rails 3.1 ?]]></description>
		<content:encoded><![CDATA[<p>Gret tutorial, How about upgrade for rails 3.1 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TextMate shortcuts you should be using by Neil Henegan</title>
		<link>http://szeryf.wordpress.com/2010/02/15/textmate-shortcuts-you-should-be-using/#comment-1246</link>
		<dc:creator><![CDATA[Neil Henegan]]></dc:creator>
		<pubDate>Thu, 08 Sep 2011 08:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://szeryf.wordpress.com/?p=253#comment-1246</guid>
		<description><![CDATA[We did a short little video on some awesome shortcuts: http://bit.ly/ppD0ij

-enjoy :)]]></description>
		<content:encoded><![CDATA[<p>We did a short little video on some awesome shortcuts: <a href="http://bit.ly/ppD0ij" rel="nofollow">http://bit.ly/ppD0ij</a></p>
<p>-enjoy :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
