<?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 on: Compiling Ruby as a Visual Studio Solution</title>
	<atom:link href="http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/feed/" rel="self" type="application/rss+xml" />
	<link>http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/</link>
	<description>Game Development and General Hacking by the Old West</description>
	<lastBuildDate>Tue, 20 Jul 2010 15:03:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: çelik kapı</title>
		<link>http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/comment-page-1/#comment-138102</link>
		<dc:creator>çelik kapı</dc:creator>
		<pubDate>Thu, 19 Nov 2009 15:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/#comment-138102</guid>
		<description>thankssssss</description>
		<content:encoded><![CDATA[<p>thankssssss</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kotiteatteri</title>
		<link>http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/comment-page-1/#comment-107761</link>
		<dc:creator>kotiteatteri</dc:creator>
		<pubDate>Mon, 04 May 2009 06:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/#comment-107761</guid>
		<description>Cool. I didn&#039;t know you could do that with a Visual Studio</description>
		<content:encoded><![CDATA[<p>Cool. I didn&#8217;t know you could do that with a Visual Studio</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Washu</title>
		<link>http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/comment-page-1/#comment-4276</link>
		<dc:creator>Washu</dc:creator>
		<pubDate>Thu, 04 Oct 2007 23:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/#comment-4276</guid>
		<description>The whole codebase is riddled with undefined behavior, and unfortunately that undefinedness does crop up when building it against platforms it wasn&#039;t designed for (aka, GCC 3.x + 32 bit CPU).</description>
		<content:encoded><![CDATA[<p>The whole codebase is riddled with undefined behavior, and unfortunately that undefinedness does crop up when building it against platforms it wasn&#8217;t designed for (aka, GCC 3.x + 32 bit CPU).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mick West</title>
		<link>http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/comment-page-1/#comment-4226</link>
		<dc:creator>Mick West</dc:creator>
		<pubDate>Tue, 02 Oct 2007 15:42:26 +0000</pubDate>
		<guid isPermaLink="false">http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/#comment-4226</guid>
		<description>There&#039;s some surprisingly hair-raising code under the hood with Ruby.  Like this in rb_call0 (called from method_call, so executed every time a Ruby object&#039;s method is called)



&lt;blockquote&gt;&lt;code&gt;
    if ((++tick &amp; 0xff) == 0) {
	CHECK_INTS;		/* better than nothing */
	stack_check();
	rb_gc_finalize_deferred();
    }
&lt;/code&gt;&lt;/blockquote&gt;



&quot;Better that nothing&quot;.   Cowboys!</description>
		<content:encoded><![CDATA[<p>There&#8217;s some surprisingly hair-raising code under the hood with Ruby.  Like this in rb_call0 (called from method_call, so executed every time a Ruby object&#8217;s method is called)</p>
<blockquote><p><code><br />
    if ((++tick &#038; 0xff) == 0) {<br />
	CHECK_INTS;		/* better than nothing */<br />
	stack_check();<br />
	rb_gc_finalize_deferred();<br />
    }<br />
</code></p></blockquote>
<p>&#8220;Better that nothing&#8221;.   Cowboys!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Washu</title>
		<link>http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/comment-page-1/#comment-4214</link>
		<dc:creator>Washu</dc:creator>
		<pubDate>Tue, 02 Oct 2007 05:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://cowboyprogramming.com/2007/09/01/compiling-ruby-as-a-visual-studio-solution/#comment-4214</guid>
		<description>Having done &lt;a href=&quot;http://libindustry.svn.sourceforge.net/viewvc/libindustry/trunk/industry/languages/ruby/ruby.hpp?revision=401&amp;view=markup&amp;pathrev=480&quot; rel=&quot;nofollow&quot;&gt;a bit of Ruby work&lt;/a&gt; in the past, I must say that their C interface sucks. The fact that the language isn&#039;t even remotely 64 bit compatible (although 1.9/2.0 are &quot;going to be&quot;, I&#039;ve yet to see them make progress on that front).

I do like the language though, it&#039;s quite fun much like Python.</description>
		<content:encoded><![CDATA[<p>Having done <a href="http://libindustry.svn.sourceforge.net/viewvc/libindustry/trunk/industry/languages/ruby/ruby.hpp?revision=401&amp;view=markup&amp;pathrev=480" rel="nofollow">a bit of Ruby work</a> in the past, I must say that their C interface sucks. The fact that the language isn&#8217;t even remotely 64 bit compatible (although 1.9/2.0 are &#8220;going to be&#8221;, I&#8217;ve yet to see them make progress on that front).</p>
<p>I do like the language though, it&#8217;s quite fun much like Python.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

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