<?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 for Stuart Hacking</title>
	<atom:link href="http://stuarthacking.com/wordpress/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://stuarthacking.com/wordpress</link>
	<description></description>
	<lastBuildDate>Tue, 15 Jun 2010 11:25:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on C++ Templates for XCode 3.2 by Skúli Arnlaugsson</title>
		<link>http://stuarthacking.com/wordpress/?p=229&#038;cpage=1#comment-2612</link>
		<dc:creator>Skúli Arnlaugsson</dc:creator>
		<pubDate>Tue, 15 Jun 2010 11:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=229#comment-2612</guid>
		<description>Thanks!! I couldn&#039;t figure out how to include the wxwidgets library, so this solved my problem! You&#039;ve been bookmarked!</description>
		<content:encoded><![CDATA[<p>Thanks!! I couldn&#8217;t figure out how to include the wxwidgets library, so this solved my problem! You&#8217;ve been bookmarked!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse Development Lossitude by redbrain</title>
		<link>http://stuarthacking.com/wordpress/?p=261&#038;cpage=1#comment-2165</link>
		<dc:creator>redbrain</dc:creator>
		<pubDate>Sun, 30 May 2010 19:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=261#comment-2165</guid>
		<description>Yeah good overview, i still haven&#039;d found debuggers that useful even in a codebase the size of GCC i can&#039;t find them useful yet. I mean the only tool is would use is valgrind. And have a ./configure --with-debug=yes and have 

#ifdef DEBUG
# define debug( ... ) \
  __debug__( __LINE__, __FILE__, __FUNCTION__, __VA_ARGS__ );
#else
# define debug( ... ) 
#endif

all in the cpp so it can be #ifdef&#039;d in and out of the program when you release.</description>
		<content:encoded><![CDATA[<p>Yeah good overview, i still haven&#8217;d found debuggers that useful even in a codebase the size of GCC i can&#8217;t find them useful yet. I mean the only tool is would use is valgrind. And have a ./configure &#8211;with-debug=yes and have </p>
<p>#ifdef DEBUG<br />
# define debug( &#8230; ) \<br />
  __debug__( __LINE__, __FILE__, __FUNCTION__, __VA_ARGS__ );<br />
#else<br />
# define debug( &#8230; )<br />
#endif</p>
<p>all in the cpp so it can be #ifdef&#8217;d in and out of the program when you release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Clash: Common Lisp as Shell by Chris "Jesdisciple"</title>
		<link>http://stuarthacking.com/wordpress/?p=15&#038;cpage=1#comment-2044</link>
		<dc:creator>Chris "Jesdisciple"</dc:creator>
		<pubDate>Sun, 23 May 2010 02:10:56 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=15#comment-2044</guid>
		<description>I suddenly got the urge to use a Lisp shell today, and I also found this (impure) solution although I haven&#039;t tried either: http://lush.sourceforge.net/  I&#039;m keeping both bookmarked for the day I get a chance to use one.</description>
		<content:encoded><![CDATA[<p>I suddenly got the urge to use a Lisp shell today, and I also found this (impure) solution although I haven&#8217;t tried either: <a href="http://lush.sourceforge.net/" rel="nofollow">http://lush.sourceforge.net/</a>  I&#8217;m keeping both bookmarked for the day I get a chance to use one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ Templates for XCode 3.2 by David Vielmetter</title>
		<link>http://stuarthacking.com/wordpress/?p=229&#038;cpage=1#comment-1503</link>
		<dc:creator>David Vielmetter</dc:creator>
		<pubDate>Sun, 14 Feb 2010 21:57:24 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=229#comment-1503</guid>
		<description>Awesome! I&#039;ve been looking for a wxWidgets sample project for XCode 3.2.1 and this works perfectly. The WxWiki documentation for setting up WxWidgets in Xcode is hopelessly outdated and didn&#039;t work for me. At least now I have a working template project.

Cheers,
David V.</description>
		<content:encoded><![CDATA[<p>Awesome! I&#8217;ve been looking for a wxWidgets sample project for XCode 3.2.1 and this works perfectly. The WxWiki documentation for setting up WxWidgets in Xcode is hopelessly outdated and didn&#8217;t work for me. At least now I have a working template project.</p>
<p>Cheers,<br />
David V.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GLUT on Mac OS X by Bryan</title>
		<link>http://stuarthacking.com/wordpress/?p=89&#038;cpage=1#comment-1233</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Fri, 18 Dec 2009 22:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=89#comment-1233</guid>
		<description>Thanks.. I was trying to run examples from the Red Book, and this was helpful.  In these, it&#039;s called &#039;init()&#039;, not &#039;initGL()&#039;, and came after the other stuff, so the weird error you got wasn&#039;t happening to me, but knowing where to look for the libraries was essential.</description>
		<content:encoded><![CDATA[<p>Thanks.. I was trying to run examples from the Red Book, and this was helpful.  In these, it&#8217;s called &#8216;init()&#8217;, not &#8216;initGL()&#8217;, and came after the other stuff, so the weird error you got wasn&#8217;t happening to me, but knowing where to look for the libraries was essential.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows updates by Max J.</title>
		<link>http://stuarthacking.com/wordpress/?p=180&#038;cpage=1#comment-1043</link>
		<dc:creator>Max J.</dc:creator>
		<pubDate>Mon, 16 Nov 2009 23:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=180#comment-1043</guid>
		<description>There is one thing about Windows Update I hate even more: The sudden popup of &quot;Restart now or postpone&quot; with the restart preselected. Whenever this dialog appears, I am usually typing away - hitting spacebar however restarts the computer without the opportunity to save anything :-(</description>
		<content:encoded><![CDATA[<p>There is one thing about Windows Update I hate even more: The sudden popup of &#8220;Restart now or postpone&#8221; with the restart preselected. Whenever this dialog appears, I am usually typing away &#8211; hitting spacebar however restarts the computer without the opportunity to save anything <img src='http://stuarthacking.com/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nethack on OS X 10.6 (Snow Leopard) by Stuart</title>
		<link>http://stuarthacking.com/wordpress/?p=222&#038;cpage=1#comment-1031</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Fri, 13 Nov 2009 22:51:42 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=222#comment-1031</guid>
		<description>Thanks for the heads up, I&#039;ll add these fixes. :-) 
(and also do a sanity check on the other changes- I guess that would have been a good idea. :-P )</description>
		<content:encoded><![CDATA[<p>Thanks for the heads up, I&#8217;ll add these fixes. <img src='http://stuarthacking.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
(and also do a sanity check on the other changes- I guess that would have been a good idea. <img src='http://stuarthacking.com/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nethack on OS X 10.6 (Snow Leopard) by Rhoda</title>
		<link>http://stuarthacking.com/wordpress/?p=222&#038;cpage=1#comment-1029</link>
		<dc:creator>Rhoda</dc:creator>
		<pubDate>Fri, 13 Nov 2009 21:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=222#comment-1029</guid>
		<description>Thanks for enabling my addiction. I was able to enable full regexp with the menucolor patch by uncommenting #define MENU_COLOR_REGEX_POSIX in include/config.h and then changing the menucolor config line in the nethackrc file to escape the parentheses e.g.

MENUCOLOR=&quot; cursed .* \(being worn\)&quot;=red&amp;underline

Also I ran into a Bus Error crash with the statuscolor patch when I became encumbered. To fix this I had to change line 453 in src/botl.c from:

		add_colored_text(enc_stat[cap]);
to:
		add_colored_text(enc_stat[cap], newbot2);

Hope this helps. Happy hacking!</description>
		<content:encoded><![CDATA[<p>Thanks for enabling my addiction. I was able to enable full regexp with the menucolor patch by uncommenting #define MENU_COLOR_REGEX_POSIX in include/config.h and then changing the menucolor config line in the nethackrc file to escape the parentheses e.g.</p>
<p>MENUCOLOR=&#8221; cursed .* \(being worn\)&#8221;=red&amp;underline</p>
<p>Also I ran into a Bus Error crash with the statuscolor patch when I became encumbered. To fix this I had to change line 453 in src/botl.c from:</p>
<p>		add_colored_text(enc_stat[cap]);<br />
to:<br />
		add_colored_text(enc_stat[cap], newbot2);</p>
<p>Hope this helps. Happy hacking!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nethack Settings for OS X by Stuart</title>
		<link>http://stuarthacking.com/wordpress/?p=39&#038;cpage=1#comment-1025</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Fri, 13 Nov 2009 15:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=39#comment-1025</guid>
		<description>I also had problems with Menucolor but after reading your comment I went back and visited it again. &lt;a href=&quot;http://stuarthacking.com/wordpress/?p=222&quot; rel=&quot;nofollow&quot;&gt;Here&#039;s&lt;/a&gt; an update where I have applied the menucolor and a new status color patch.</description>
		<content:encoded><![CDATA[<p>I also had problems with Menucolor but after reading your comment I went back and visited it again. <a href="http://stuarthacking.com/wordpress/?p=222" rel="nofollow">Here&#8217;s</a> an update where I have applied the menucolor and a new status color patch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nethack Settings for OS X by Alexandre Gravier</title>
		<link>http://stuarthacking.com/wordpress/?p=39&#038;cpage=1#comment-1000</link>
		<dc:creator>Alexandre Gravier</dc:creator>
		<pubDate>Wed, 04 Nov 2009 17:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://stuarthacking.com/wordpress/?p=39#comment-1000</guid>
		<description>Thank you Stuart. 

For the record, my gcc 4.0.1 (Apple Inc. build 5490) doesn&#039;t like the Menucolors patch, and hence the corresponding options have to be removed from Stuart&#039;s .nethackrc but I still end up with a very playable version of the best game in the universe.</description>
		<content:encoded><![CDATA[<p>Thank you Stuart. </p>
<p>For the record, my gcc 4.0.1 (Apple Inc. build 5490) doesn&#8217;t like the Menucolors patch, and hence the corresponding options have to be removed from Stuart&#8217;s .nethackrc but I still end up with a very playable version of the best game in the universe.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
