<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Paul Goscicki</title>
	<link>http://paulgoscicki.com</link>
	<description>Random pieces of code, thoughts and movie reviews</description>
	<lastBuildDate>Tue, 15 Nov 2011 18:45:12 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.5" -->

	<item>
		<title>Introduction to Heroku H12 timeouts</title>
		<description><![CDATA[At Exvo we were experiencing problems while trying to send an email to all of our 150K+ users. This lead to a careful investigation of what is exactly happening during this process. So we setup our loggers (heroku logs -t &#124; tee output.log), run heroku consoles, increased to 20 dynos and 10 workers and begun [...]]]></description>
		<link>http://paulgoscicki.com/archives/2011/11/introduction-to-heroku-h12-timeouts/</link>
			</item>
	<item>
		<title>11/11/11</title>
		<description><![CDATA[Aka the &#8220;mandatory&#8221; 11/11/11 post. Nothing else here, move along.]]></description>
		<link>http://paulgoscicki.com/archives/2011/11/111111/</link>
			</item>
	<item>
		<title>Ruby 1.9.2 via rvm installation woes</title>
		<description><![CDATA[I&#8217;ve just had to upgrade Ruby to 1.9.2 (from 1.8.7) on the EC2 instance, but ran into a weird error while running rvm install 1.9.2: Compiling yaml in /home/ubuntu/.rvm/src/yaml-0.1.4. ERROR: Error running 'make ', please read /home/ubuntu/.rvm/log/ruby-1.9.2-p290/yaml/make.log Installing yaml to /home/ubuntu/.rvm/usr ERROR: Error running 'make install', please read /home/ubuntu/.rvm/log/ruby-1.9.2-p290/yaml/make.install.log and in the log: src/Makefile.am:2: Libtool [...]]]></description>
		<link>http://paulgoscicki.com/archives/2011/11/ruby-1-9-2-via-rvm-installation-woes/</link>
			</item>
	<item>
		<title>In Ruby &#8216;?&#8217; binds stronger than &#8216;or&#8217;</title>
		<description><![CDATA[Found it the hard way. Improper/misleading: true or true ? "yes" : "no" => true the above is basically the same as this: true or (true ? "yes" : "no") => true The proper way: true &#124;&#124; true ? "yes" : "no" => "yes"]]></description>
		<link>http://paulgoscicki.com/archives/2011/10/in-ruby-binds-stronger-than-or/</link>
			</item>
	<item>
		<title>Tell bundler to install gems globally when using capistrano</title>
		<description><![CDATA[Seems like it&#8217;s not so straightforward. Here&#8217;s the excerpt from my config/deploy.rb: require "bundler/capistrano" set :bundle_dir, "" # install into "system" gems set :bundle_flags, "--quiet" # no verbose output set :bundle_without, [] # bundle all gems (even dev &#038; test) Maybe someone finds it helpful.]]></description>
		<link>http://paulgoscicki.com/archives/2011/10/tell-bundler-to-install-gems-globally-when-using-capistrano/</link>
			</item>
	<item>
		<title>Painful ruby 1.9.2-p180 to 1.9.2-p290 upgrade</title>
		<description><![CDATA[I did the recommended upgrade of my current p180 to the new p290 using rvm: $ rvm upgrade ruby-1.9.2-p180 ruby-1.9.2-p290 First annoyance &#8211; moving gems from one gemset to the new one took over 40 minutes. Have really no idea why. But after it was done, whenever I tried to run &#8216;gem&#8217; or &#8216;rake&#8217; or [...]]]></description>
		<link>http://paulgoscicki.com/archives/2011/10/painful-ruby-1-9-2-p180-to-1-9-2-p290-upgrade/</link>
			</item>
	<item>
		<title>Bug of the day</title>
		<description><![CDATA[Completely bad code follows, beware. Silent error in Ruby 1.8.7: x = [:a, :b] => [:a, :b] x.slice!(:a) => nil x => [:a, :b] Explicit error (resulting in a failing test) in Ruby 1.9.2: x = [:a, :b] => [:a, :b] x.slice!(:a) TypeError: can't convert Symbol into Integer Just yet another incompatibility, but for the [...]]]></description>
		<link>http://paulgoscicki.com/archives/2011/09/bug-of-the-day/</link>
			</item>
	<item>
		<title>Run guard-jasmine-headless-webkit without X server</title>
		<description><![CDATA[You write specs for your javascript, right? If not, you really should. jasmine-headless-webkit really helps with that. guard-jasmine-headless-webkit makes it all even more enjoyable, although there&#8217;s one caveat &#8211; it&#8217;s not so easy to set it all up. There is a great guide for that, but it lacks some important details on running guard-jasmine-headless-webkit without [...]]]></description>
		<link>http://paulgoscicki.com/archives/2011/09/run-guard-jasmine-headless-webkit-without-x-server/</link>
			</item>
	<item>
		<title>Hash to HTML (hash2html) in Ruby</title>
		<description><![CDATA[I needed to output a Hash as a nested HTML structure. Googling didn&#8217;t find any satisfactory results, so I decided to roll my own. UL/LI tags seemed like the best choice. It was a nice exercise in recursion. The result is a function, which outputs a nicely indented HTML. Note, however, that it&#8217;s a very [...]]]></description>
		<link>http://paulgoscicki.com/archives/2011/09/hash_to_html-hash2html-in-ruby/</link>
			</item>
	<item>
		<title>My first pull request to a public project has been accepted</title>
		<description><![CDATA[It was a small but important patch to the i18n gem&#8216;s pluralization rules for the Polish language. Really made my day. Thanks Krzysztof!]]></description>
		<link>http://paulgoscicki.com/archives/2011/08/my-first-pull-request-to-a-public-project-has-been-accepted/</link>
			</item>
</channel>
</rss>

