<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Zhou on WordPress</title>
	<atom:link href="http://zhouji.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://zhouji.wordpress.com</link>
	<description>Just another Wordpress.com weblog</description>
	<lastBuildDate>Sat, 08 Aug 2009 15:11:16 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on See5 and C5.0 by Zhou</title>
		<link>http://zhouji.wordpress.com/2008/11/09/see5-and-c50/#comment-157</link>
		<dc:creator>Zhou</dc:creator>
		<pubDate>Sat, 08 Aug 2009 15:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/?p=63#comment-157</guid>
		<description>I didn&#039;t find anything that covers similar functionality. Thanks for your comment.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t find anything that covers similar functionality. Thanks for your comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on See5 and C5.0 by Will Dwinnell</title>
		<link>http://zhouji.wordpress.com/2008/11/09/see5-and-c50/#comment-156</link>
		<dc:creator>Will Dwinnell</dc:creator>
		<pubDate>Sat, 08 Aug 2009 02:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/?p=63#comment-156</guid>
		<description>I am curious:  You say that you are dumping See5 because it is not free.  Have you replaced it with something else?</description>
		<content:encoded><![CDATA[<p>I am curious:  You say that you are dumping See5 because it is not free.  Have you replaced it with something else?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ClassCastException by Zhou</title>
		<link>http://zhouji.wordpress.com/2009/01/17/classcastexception/#comment-155</link>
		<dc:creator>Zhou</dc:creator>
		<pubDate>Sat, 28 Mar 2009 14:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/?p=78#comment-155</guid>
		<description>in case I forget this. The reason of this exception is Collection.toArray() returns an array of Object, which can not be cast to an array of String. The right way to do this is:
String[] array = vector.toArray(new String[0]);
or use an existing String array as the argument.</description>
		<content:encoded><![CDATA[<p>in case I forget this. The reason of this exception is Collection.toArray() returns an array of Object, which can not be cast to an array of String. The right way to do this is:<br />
String[] array = vector.toArray(new String[0]);<br />
or use an existing String array as the argument.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Protolize by zhouji</title>
		<link>http://zhouji.wordpress.com/2009/03/03/protolize/#comment-154</link>
		<dc:creator>zhouji</dc:creator>
		<pubDate>Tue, 03 Mar 2009 21:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/2009/03/03/protolize/#comment-154</guid>
		<description>bookmarked on 2006/5/4</description>
		<content:encoded><![CDATA[<p>bookmarked on 2006/5/4</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on failed services by zhouji</title>
		<link>http://zhouji.wordpress.com/2009/01/11/failed-services/#comment-153</link>
		<dc:creator>zhouji</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/?p=76#comment-153</guid>
		<description>another thing I bookmarked in 2006 but is now gone: zingee.com

Zingee™ Really Simple Sharing</description>
		<content:encoded><![CDATA[<p>another thing I bookmarked in 2006 but is now gone: zingee.com</p>
<p>Zingee™ Really Simple Sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on hello world of Windows programming by zhouji</title>
		<link>http://zhouji.wordpress.com/2007/07/07/hello-world-of-windows-programming/#comment-141</link>
		<dc:creator>zhouji</dc:creator>
		<pubDate>Mon, 09 Jul 2007 21:57:23 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/2007/07/07/hello-world-of-windows-programming/#comment-141</guid>
		<description>When this code is compiled (whatever that means), you get an .exe file. You may find this tricky detail when you try to run it: if you start it by typing the .exe file name from the command line of a console box, everything looks fine; if you start it by double clicking the .exe file icon, you see a console box coming  up with the normal window that you mean to have. In the latter case, the program can be quit by either normal operation on the normal window or closing that unnecessary console box. 

How do you stop that unnecessary console box showing up? You need to use a proper linker option when you compile (actually link) the code. In MS Visual studio, it is something like &quot;/SUBSYSTEM:WINDOWS&quot;. I use gcc under MinGW, so what I do is &quot;gcc filename.c c:\msys\1.0\mingw\lib\*.a -Wl,--subsystem,windows&quot;.</description>
		<content:encoded><![CDATA[<p>When this code is compiled (whatever that means), you get an .exe file. You may find this tricky detail when you try to run it: if you start it by typing the .exe file name from the command line of a console box, everything looks fine; if you start it by double clicking the .exe file icon, you see a console box coming  up with the normal window that you mean to have. In the latter case, the program can be quit by either normal operation on the normal window or closing that unnecessary console box. </p>
<p>How do you stop that unnecessary console box showing up? You need to use a proper linker option when you compile (actually link) the code. In MS Visual studio, it is something like &#8220;/SUBSYSTEM:WINDOWS&#8221;. I use gcc under MinGW, so what I do is &#8220;gcc filename.c c:\msys\1.0\mingw\lib\*.a -Wl,&#8211;subsystem,windows&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m not attractive, but I&#8217;m tender-hearted. by zhouji</title>
		<link>http://zhouji.wordpress.com/2007/05/24/im-not-attractive-but-im-tender-hearted/#comment-137</link>
		<dc:creator>zhouji</dc:creator>
		<pubDate>Tue, 29 May 2007 14:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/2007/05/24/im-not-attractive-but-im-tender-hearted/#comment-137</guid>
		<description>It is not really my poem. It is my translation of the lyrics of a Chinese song. Nevertheless, I&#039;m very glad to hear that you consider it a poem. Thanks a lot!</description>
		<content:encoded><![CDATA[<p>It is not really my poem. It is my translation of the lyrics of a Chinese song. Nevertheless, I&#8217;m very glad to hear that you consider it a poem. Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m not attractive, but I&#8217;m tender-hearted. by Brian</title>
		<link>http://zhouji.wordpress.com/2007/05/24/im-not-attractive-but-im-tender-hearted/#comment-136</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Sun, 27 May 2007 17:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/2007/05/24/im-not-attractive-but-im-tender-hearted/#comment-136</guid>
		<description>I enjoyed your poem, full of passion and fire.</description>
		<content:encoded><![CDATA[<p>I enjoyed your poem, full of passion and fire.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A poem by Dorothy Parker by westernqueensland</title>
		<link>http://zhouji.wordpress.com/2007/02/27/a-poem-by-dorothy-parker/#comment-135</link>
		<dc:creator>westernqueensland</dc:creator>
		<pubDate>Sun, 15 Apr 2007 21:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/2007/02/27/a-poem-by-dorothy-parker/#comment-135</guid>
		<description>Brilliant poem, thanks</description>
		<content:encoded><![CDATA[<p>Brilliant poem, thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on memory of last century&#8217;s computers by flightlessangel</title>
		<link>http://zhouji.wordpress.com/2006/10/29/memory-of-last-centurys-computers/#comment-2</link>
		<dc:creator>flightlessangel</dc:creator>
		<pubDate>Thu, 02 Nov 2006 16:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://zhouji.wordpress.com/2006/10/29/memory-of-last-centurys-computers/#comment-2</guid>
		<description>I love playing up with the computer. I wanted to take up Computer Science before, but then I didn&#039;t. I took up Nursing instead because of a lot of reasons. ;)</description>
		<content:encoded><![CDATA[<p>I love playing up with the computer. I wanted to take up Computer Science before, but then I didn&#8217;t. I took up Nursing instead because of a lot of reasons. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
