<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>RubyRescue</title>
	<link>http://www.rubyrescue.com/blog</link>
	<description>begin..rescue..end</description>
	<lastBuildDate>Wed, 10 Mar 2010 15:38:30 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Ruby Rescue is looking for a designer</title>
		<description><![CDATA[RubyRescue, creator of high-traffic, user-centered websites, is looking for a web designer to join our team. If you know Photoshop, HTML, CSS, and you can prove it with a solid portfolio, contact us. We&#8217;re a small group of hacker/entrepreneurs working on technology projects and we need good, responsible and motivated people to join our team. [...]]]></description>
		<link>http://www.rubyrescue.com/blog/2010/03/10/ruby-rescue-is-looking-for-a-designer/</link>
			</item>
	<item>
		<title>Tango Rails After Office &#8211; Buenos Aires &#8211; Wed 17 Feb @ 7:30 in Palermo Soho at Sullivans</title>
		<description><![CDATA[Tango Rails meets for drinks monthly - this month we're at Sullivan's Pub, Wednesday 17 Feb at 7:30 in Palermo.]]></description>
		<link>http://www.rubyrescue.com/blog/2010/02/09/tango-rails-after-office-buenos-aires-730-in-palermo-soho-at-sullivans/</link>
			</item>
	<item>
		<title>cat /proc/cpuinfo or Don&#8217;t Trust Your Cores To Rackspace, Part I</title>
		<description><![CDATA[We&#8217;ve been running a pretty high traffic site on one big server for more than a year and a half. The site was originally PHP, but about four months ago we migrated the site to Rails. The Rails migration has been relatively smooth, and we now are serving more than 9 sites (mostly branding and [...]]]></description>
		<link>http://www.rubyrescue.com/blog/2009/10/27/cat-proccpuinfo-or-dont-trust-your-cores-to-rackspace-part-i/</link>
			</item>
	<item>
		<title>moving your wordpress blog from the root to a subdirectory</title>
		<description><![CDATA[Here&#8217;s how I did it:
mysqldump -uroot -p rubyrescue &#124; sed
's#rubyrescue.com#rubyrescue.com/blog#g' &#62; temp.sql
mysql -uroot -p rubyrescue &#60; temp.sql
The only other item was dealing with permalinks. The error handler for lighttpd was set to look for index.php in the root. I had to change that to look for it in /blog. 
]]></description>
		<link>http://www.rubyrescue.com/blog/2009/06/17/moving-your-wordpress-blog-from-the-root-to-a-subdirectory/</link>
			</item>
	<item>
		<title>heroku is my favorite deployment environment now</title>
		<description><![CDATA[this article nicely summarizes how great heroku is. i deployed a small personal project with it and LOVE how easy it was. incredible.
One concern i have is that without a static IP address, if you have a highly SEO-sensitive application it&#8217;s probably not the best choice, because a static IP is just one of many [...]]]></description>
		<link>http://www.rubyrescue.com/blog/2009/05/07/heroku-is-my-favorite-deployment-environment-now/</link>
			</item>
	<item>
		<title>New Bort application breaks with Rails 2.3.2</title>
		<description><![CDATA[In attempting to upgrade a Bort app with Rails 2.3.2, i&#8217;ve found two errors so far:

1. This OpenIdAuthentication error:

rake aborted!
uninitialized constant Rails::Plugin::OpenIdAuthentication
/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:105:in `const_missing'
/home/chadd/foo/vendor/plugins/open_id_authentication/init.rb:16:in `evaluate_init_rb'
The solution is to comment out line 16 in vendor/plugins/open_id_authentication/init.rb when running rake db:migrate. 
Updated: Better solution in the comments, thanks!

chadd@ubuntu:~/foo$ rake db:migrate --trace
(in /home/chadd/foo)
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute [...]]]></description>
		<link>http://www.rubyrescue.com/blog/2009/03/24/new-bort-application-breaks-with-rails-232/</link>
			</item>
	<item>
		<title>Twitter Ruby function to find all friends and followers of a user</title>
		<description><![CDATA[The twitter gem doesn&#8217;t do a good job of allowing unauthenticated queries, so I have to make a specific request to the twitter API to do this.
If you pass in Scrap.friendsandfollowers(&#8216;rubyrescue&#8217;) you&#8217;ll get about 6000 ids. Anything better than a depth of &#8216;1&#8242; and you&#8217;ll need an un-rate-limited account w/Twitter as it will take more [...]]]></description>
		<link>http://www.rubyrescue.com/blog/2009/03/22/twitter-ruby-function-to-find-all-friends-and-followers-of-a-user/</link>
			</item>
	<item>
		<title>Locos X Rails 2009 &#8211; Buenos Aires &#8211; April 3 &amp; 4</title>
		<description><![CDATA[http://locosxrails.com

I&#8217;m going&#8230; Anyone from Brazil other than Akita On Rails?
]]></description>
		<link>http://www.rubyrescue.com/blog/2009/03/10/locos-x-rails-2009-buenos-aires-april-3-4/</link>
			</item>
	<item>
		<title>released my first gem &#8211; wordpress on rails (wp_on_rails)</title>
		<description><![CDATA[A skeleton (but functional) ruby gem that allows manipulation of a WordPress database from rails, using activerecord. WordPress on Rails
]]></description>
		<link>http://www.rubyrescue.com/blog/2008/12/20/released-my-first-gem-wordpress-on-rails/</link>
			</item>
	<item>
		<title>rake aborts with closed stream running rake test</title>
		<description><![CDATA[Why does rake abort?
chadd@ubuntu:~/myproj$ rake test:units
(in /home/chadd/myproj)
rake aborted!
closed stream
(See full trace by running task with &#8211;trace)
 
SOLVED &#8211; just do a rake db:schema:dump. If that has never been done, and the database was originally built without a migration (even though I have a full set of migrations that SHOULD create the database properly in the test [...]]]></description>
		<link>http://www.rubyrescue.com/blog/2008/12/11/rake-aborts-with-closed-stream-running-rake-test/</link>
			</item>
</channel>
</rss>
