<?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 A Place for my head</title>
	<atom:link href="http://gnufied.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gnufied.org</link>
	<description>On Ruby, Rails, Concurrency and fiction</description>
	<pubDate>Wed, 27 Aug 2008 23:23:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on Mysql C bindings for Ruby 1.9 by Dawid Marcin Grzesiak</title>
		<link>http://gnufied.org/2007/12/21/mysql-c-bindings-for-ruby-19/#comment-2538</link>
		<dc:creator>Dawid Marcin Grzesiak</dc:creator>
		<pubDate>Mon, 25 Aug 2008 14:52:38 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2007/12/21/mysql-c-bindings-for-ruby-19/#comment-2538</guid>
		<description>What helps me was editing "/usr/include/ruby-1.9.0/ruby/ruby.h" (in your case the file is in "/usr/local/include/ruby-1.9.0" dir) file and replacing the RString struct with this code:

struct RString {
    struct RBasic basic;
    union {
        union {
            struct {
                long len;
                char *ptr;
                union {
                    long capa;
                    VALUE shared;
                } aux;
            } heap;
            char ary[RSTRING_EMBED_LEN_MAX];
        } as;

        struct {
            long len;
            char *ptr;
            union {
                long capa;
                VALUE shared;
            } aux;
        };
    };
};

I've created empty file "version.h" in the "/usr/include/ruby-1.9.0" dir.

Then I've just run "sudo gem1.9 install dbd-mysql" and everything compiled smooth.

Cheers,
Dawid</description>
		<content:encoded><![CDATA[<p>What helps me was editing &#8220;/usr/include/ruby-1.9.0/ruby/ruby.h&#8221; (in your case the file is in &#8220;/usr/local/include/ruby-1.9.0&#8243; dir) file and replacing the RString struct with this code:</p>
<p>struct RString {<br />
    struct RBasic basic;<br />
    union {<br />
        union {<br />
            struct {<br />
                long len;<br />
                char *ptr;<br />
                union {<br />
                    long capa;<br />
                    VALUE shared;<br />
                } aux;<br />
            } heap;<br />
            char ary[RSTRING_EMBED_LEN_MAX];<br />
        } as;</p>
<p>        struct {<br />
            long len;<br />
            char *ptr;<br />
            union {<br />
                long capa;<br />
                VALUE shared;<br />
            } aux;<br />
        };<br />
    };<br />
};</p>
<p>I&#8217;ve created empty file &#8220;version.h&#8221; in the &#8220;/usr/include/ruby-1.9.0&#8243; dir.</p>
<p>Then I&#8217;ve just run &#8220;sudo gem1.9 install dbd-mysql&#8221; and everything compiled smooth.</p>
<p>Cheers,<br />
Dawid</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screencasting from Linux/Ubuntu by Bookmarks about Dev</title>
		<link>http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/#comment-2535</link>
		<dc:creator>Bookmarks about Dev</dc:creator>
		<pubDate>Mon, 25 Aug 2008 07:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/#comment-2535</guid>
		<description>[...] - bookmarked by 1 members originally found by jezzafrombristol on 2008-08-05  Screencasting from Linux/Ubuntu  http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/ - bookmarked by 1 members originally [...]</description>
		<content:encoded><![CDATA[<p>[...] - bookmarked by 1 members originally found by jezzafrombristol on 2008-08-05  Screencasting from Linux/Ubuntu  <a href="http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/" rel="nofollow">http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/</a> - bookmarked by 1 members originally [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Hans</title>
		<link>http://gnufied.org/about/#comment-2518</link>
		<dc:creator>Hans</dc:creator>
		<pubDate>Fri, 22 Aug 2008 22:35:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-2518</guid>
		<description>Hi
cannot start background process. Using Mac OS X 15.3
I got the message in the log
adress already in use
Tried ip: localhost and got the message 
Address family not supported by protocol family

Any suggestions</description>
		<content:encoded><![CDATA[<p>Hi<br />
cannot start background process. Using Mac OS X 15.3<br />
I got the message in the log<br />
adress already in use<br />
Tried ip: localhost and got the message<br />
Address family not supported by protocol family</p>
<p>Any suggestions</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making Ruby Bacon play with Mocha by Rich</title>
		<link>http://gnufied.org/2008/06/12/making-ruby-bacon-play-with-mocha/#comment-2368</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Tue, 12 Aug 2008 11:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/06/12/making-ruby-bacon-play-with-mocha/#comment-2368</guid>
		<description>The above script could be improved slightly: as it stands, any mocha errors won't cause the Bacon test to fail; they'll just dump the errors to stdout.

You could refactor it to the following, which avoids this issue:


class Bacon::Context
  include Mocha::Standalone
  def it_with_mocha description
    it_without_mocha description do
      mocha_setup
      yield
      mocha_verify
      mocha_teardown
    end
  end
  alias_method_chain :it, :mocha
end
</description>
		<content:encoded><![CDATA[<p>The above script could be improved slightly: as it stands, any mocha errors won&#8217;t cause the Bacon test to fail; they&#8217;ll just dump the errors to stdout.</p>
<p>You could refactor it to the following, which avoids this issue:</p>
<p>class Bacon::Context<br />
  include Mocha::Standalone<br />
  def it_with_mocha description<br />
    it_without_mocha description do<br />
      mocha_setup<br />
      yield<br />
      mocha_verify<br />
      mocha_teardown<br />
    end<br />
  end<br />
  alias_method_chain :it, :mocha<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making Ruby Bacon play with Mocha by Rich</title>
		<link>http://gnufied.org/2008/06/12/making-ruby-bacon-play-with-mocha/#comment-2367</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Tue, 12 Aug 2008 11:05:25 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/06/12/making-ruby-bacon-play-with-mocha/#comment-2367</guid>
		<description>Thanks very much.

You should try and get this merged into Mocha :-)</description>
		<content:encoded><![CDATA[<p>Thanks very much.</p>
<p>You should try and get this merged into Mocha <img src='http://gnufied.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by magnum</title>
		<link>http://gnufied.org/about/#comment-2286</link>
		<dc:creator>magnum</dc:creator>
		<pubDate>Sun, 03 Aug 2008 16:54:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-2286</guid>
		<description>... same problem mee too, some soggestions ?</description>
		<content:encoded><![CDATA[<p>&#8230; same problem mee too, some soggestions ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bleeding Edge Version of BackgrounDRb for better memory usage by chirp.syxyz.net &#187; Blog Archive &#187; upgrading backgroundrb, the fun way.</title>
		<link>http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2249</link>
		<dc:creator>chirp.syxyz.net &#187; Blog Archive &#187; upgrading backgroundrb, the fun way.</dc:creator>
		<pubDate>Mon, 28 Jul 2008 18:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2249</guid>
		<description>[...] the worker control code now is totally changed, and the Worker class itself needs to inherit from BackgrounDRb::MetaWorker now. Having taken care of these and a few other cleanups, we seem to be running with a much smaller [...]</description>
		<content:encoded><![CDATA[<p>[...] the worker control code now is totally changed, and the Worker class itself needs to inherit from BackgrounDRb::MetaWorker now. Having taken care of these and a few other cleanups, we seem to be running with a much smaller [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bleeding Edge Version of BackgrounDRb for better memory usage by Lukas Rieder</title>
		<link>http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2210</link>
		<dc:creator>Lukas Rieder</dc:creator>
		<pubDate>Tue, 22 Jul 2008 13:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2210</guid>
		<description>Really Important is to REMOVE THE OLD FILES GENERATED FROM backgroundrb:setup!
This saved my day (and night probably too).

Thanks for sharing,

Have a nice day!

Lukas</description>
		<content:encoded><![CDATA[<p>Really Important is to REMOVE THE OLD FILES GENERATED FROM backgroundrb:setup!<br />
This saved my day (and night probably too).</p>
<p>Thanks for sharing,</p>
<p>Have a nice day!</p>
<p>Lukas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bleeding Edge Version of BackgrounDRb for better memory usage by Hemant</title>
		<link>http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2201</link>
		<dc:creator>Hemant</dc:creator>
		<pubDate>Thu, 17 Jul 2008 13:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2201</guid>
		<description>Melvin:

There is already one:

http://rubyforge.org/mailman/listinfo/backgroundrb-devel</description>
		<content:encoded><![CDATA[<p>Melvin:</p>
<p>There is already one:</p>
<p><a href="http://rubyforge.org/mailman/listinfo/backgroundrb-devel" rel="nofollow">http://rubyforge.org/mailman/listinfo/backgroundrb-devel</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bleeding Edge Version of BackgrounDRb for better memory usage by Melvin Ram</title>
		<link>http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2200</link>
		<dc:creator>Melvin Ram</dc:creator>
		<pubDate>Thu, 17 Jul 2008 13:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://gnufied.org/2008/05/21/bleeding-edge-version-of-backgroundrb-for-better-memory-usage/#comment-2200</guid>
		<description>I agree there should be a mailing list for asking questions and answering them as I didn't know there was an update to my question till today.

I vote for using Google Groups.

PS: Thanks Hemant for the update. I give it a go over the next week.</description>
		<content:encoded><![CDATA[<p>I agree there should be a mailing list for asking questions and answering them as I didn&#8217;t know there was an update to my question till today.</p>
<p>I vote for using Google Groups.</p>
<p>PS: Thanks Hemant for the update. I give it a go over the next week.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
