<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">

<channel>
	<title>WonderKid</title>
	
	<link>http://blog.rushcj.com</link>
	<description>Wonder Land</description>
	<pubDate>Wed, 14 Oct 2009 03:55:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CEWeblog" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Java 集合</title>
		<link>http://blog.rushcj.com/2009/10/14/java-%e9%9b%86%e5%90%88/</link>
		<comments>http://blog.rushcj.com/2009/10/14/java-%e9%9b%86%e5%90%88/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 03:55:48 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=78</guid>
		<description><![CDATA[1, PriorityQueue的Iterator不保证顺序
2, PriorityQueue不保证先进先出（如果要保证先进先出，可以用AtomicLong给元素编码，然后再compareTo方法中判断）
3, TreeSet中判断是否是同一个元素是根据compareTo方法，而不是equals方法！与Set的约定有违背。
4, TreeSet的Iterator升序。
]]></description>
			<content:encoded><![CDATA[<p>1, PriorityQueue的Iterator不保证顺序</p>
<p>2, PriorityQueue不保证先进先出（如果要保证先进先出，可以用AtomicLong给元素编码，然后再compareTo方法中判断）</p>
<p>3, TreeSet中判断是否是同一个元素是根据compareTo方法，而不是equals方法！与Set的约定有违背。</p>
<p>4, TreeSet的Iterator升序。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=8-lMVJjaoic:vSPL6uS0ixo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=8-lMVJjaoic:vSPL6uS0ixo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=8-lMVJjaoic:vSPL6uS0ixo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=8-lMVJjaoic:vSPL6uS0ixo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=8-lMVJjaoic:vSPL6uS0ixo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=8-lMVJjaoic:vSPL6uS0ixo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=8-lMVJjaoic:vSPL6uS0ixo:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2009/10/14/java-%e9%9b%86%e5%90%88/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SVN simple notes</title>
		<link>http://blog.rushcj.com/2009/06/19/svn-simple-notes/</link>
		<comments>http://blog.rushcj.com/2009/06/19/svn-simple-notes/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 10:21:43 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[automatic-tag-link]]></category>

		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=75</guid>
		<description><![CDATA[I wrote some interesting WordPress plugins one year ago, and I recevied lots of comments and suggestions on these plugins. They are very helpful, but I didn&#8217;t have enough to replay them and to improve my plugins. Today, after receiving a very long and careful comment, I think I have the responsibility to make some [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote some interesting <a href="http://www.wprdpress.org">WordPress</a> plugins one year ago, and I recevied lots of comments and suggestions on these plugins. They are very helpful, but I didn&#8217;t have enough to replay them and to improve my plugins. Today, after receiving a very long and careful comment, I think I have the responsibility to make some progress.</p>
<p>My plugins are hosted in wordpress.org. They prefer SVN to manager these small projects. So I spent a little time on SVN to upgrade my plugins. Here is some notes:</p>
<p>Take on of my small project for example: the repo of plugin <strong>automatic-tag-link</strong> is <a href="http://svn.wp-plugins.org/automatic-tag-link/">http://svn.wp-plugins.org/automatic-tag-link/</a></p>
<p>FIrst, create a folder as a local SVN repo.</p>
<blockquote><p>mkdir automatic-tag</p></blockquote>
<p>then, restore the files from remote SVN repo.</p>
<blockquote><p>svn co http://svn.wp-plugins.org/automatic-tag-link  automatic-tag</p></blockquote>
<p>so, we can modify the files, when finish, we should commit it to the SVN server.</p>
<blockquote><p>svn ci -m &#8220;some messages&#8221;</p></blockquote>
<p>if we add some new files(eg, newfiles.php), before commiting, we should add it to the repo.</p>
<blockquote><p>svn add newfiles.php</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=z0l_Gygw2Cc:FubrvsF_vIk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=z0l_Gygw2Cc:FubrvsF_vIk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=z0l_Gygw2Cc:FubrvsF_vIk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=z0l_Gygw2Cc:FubrvsF_vIk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=z0l_Gygw2Cc:FubrvsF_vIk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=z0l_Gygw2Cc:FubrvsF_vIk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=z0l_Gygw2Cc:FubrvsF_vIk:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2009/06/19/svn-simple-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Programming Pearls</title>
		<link>http://blog.rushcj.com/2009/02/18/programming-pearls/</link>
		<comments>http://blog.rushcj.com/2009/02/18/programming-pearls/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 06:02:15 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/2009/02/18/programming-pearls/</guid>
		<description><![CDATA[I started read Programming Pearls days ago, now I have read 57 pages. It’s a very good book. You can hardly find such a great book in the sea of CS books. 
I just read Chapter 5, something about program veritfication. It’s an old topic, but important for a starter.
]]></description>
			<content:encoded><![CDATA[<p>I started read Programming Pearls days ago, now I have read 57 pages. It’s a very good book. You can hardly find such a great book in the sea of CS books. </p>
<p>I just read Chapter 5, something about program veritfication. It’s an old topic, but important for a starter.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ifgGT5YhqS0:VMlvA-E72fg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ifgGT5YhqS0:VMlvA-E72fg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=ifgGT5YhqS0:VMlvA-E72fg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ifgGT5YhqS0:VMlvA-E72fg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=ifgGT5YhqS0:VMlvA-E72fg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ifgGT5YhqS0:VMlvA-E72fg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=ifgGT5YhqS0:VMlvA-E72fg:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2009/02/18/programming-pearls/feed/</wfw:commentRss>
		</item>
		<item>
		<title>hi, school days</title>
		<link>http://blog.rushcj.com/2009/02/17/hi-school-days/</link>
		<comments>http://blog.rushcj.com/2009/02/17/hi-school-days/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 08:02:11 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Tianjin University]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/2009/02/17/hi-school-days/</guid>
		<description><![CDATA[After a long sweet holiday at home, now I’m back to the university. I got sick because of some corrupt food on the second day. I got very weak in the next day when i open my eyes in the morning. A bad start of my last term in the unviersity.
I just told to my [...]]]></description>
			<content:encoded><![CDATA[<p>After a long sweet holiday at home, now I’m back to the university. I got sick because of some corrupt food on the second day. I got very weak in the next day when i open my eyes in the morning. A bad start of my last term in the unviersity.</p>
<p>I just told to my teacher about the schedule of graduate staff. I’ll leave Tianjin Univeristy in June. </p>
<p>Six years in Tianjin, and I’ll say beybey to this soon. BeyBey, all the pains, all the happiness, I’ll never come back.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ES-t7esMWNY:a6cehmxAEEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ES-t7esMWNY:a6cehmxAEEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=ES-t7esMWNY:a6cehmxAEEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ES-t7esMWNY:a6cehmxAEEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=ES-t7esMWNY:a6cehmxAEEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=ES-t7esMWNY:a6cehmxAEEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=ES-t7esMWNY:a6cehmxAEEc:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2009/02/17/hi-school-days/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Think clearly</title>
		<link>http://blog.rushcj.com/2008/09/12/think-clearly/</link>
		<comments>http://blog.rushcj.com/2008/09/12/think-clearly/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 11:19:44 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=71</guid>
		<description><![CDATA[I haven&#8217;t read any semantic web related papers for a very long time,  and I&#8217;ve no idea what&#8217;s going in this area.
Days ago,  my roommate ask me some questions about owl,ontology,  and I could hardly answered them perfectly.  I spent most of  my time on job hurting, writing codes, and surfing the net recently. I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t read any semantic web related papers for a very long time,  and I&#8217;ve no idea what&#8217;s going in this area.</p>
<p>Days ago,  my roommate ask me some questions about owl,ontology,  and I could hardly answered them perfectly.  I spent most of  my time on job hurting, writing codes, and surfing the net recently. I&#8217;m not a qualified semantic web student.</p>
<p>I remember I filled the Research Area on the new student form with &#8220;service computing&#8221; just because I work on a big project about Web Service in the lab. Actually,  I didn&#8217;t really know what the hell is &#8220;service computing&#8221;, and I thought I&#8217;ll still foucs on Semantic Web in my research life, which proved wrong. It&#8217;s a little ridigous of the whole thing.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=qBpdhgb0TRo:-wc5EcC3QkU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=qBpdhgb0TRo:-wc5EcC3QkU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=qBpdhgb0TRo:-wc5EcC3QkU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=qBpdhgb0TRo:-wc5EcC3QkU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=qBpdhgb0TRo:-wc5EcC3QkU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=qBpdhgb0TRo:-wc5EcC3QkU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=qBpdhgb0TRo:-wc5EcC3QkU:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2008/09/12/think-clearly/feed/</wfw:commentRss>
		</item>
		<item>
		<title>S.T.O.P.</title>
		<link>http://blog.rushcj.com/2008/09/06/stop/</link>
		<comments>http://blog.rushcj.com/2008/09/06/stop/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 13:28:19 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=69</guid>
		<description><![CDATA[A bad day for me!
]]></description>
			<content:encoded><![CDATA[<p>A bad day for me!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=DFDGAxD47lM:7wi1UoqXT3s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=DFDGAxD47lM:7wi1UoqXT3s:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=DFDGAxD47lM:7wi1UoqXT3s:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=DFDGAxD47lM:7wi1UoqXT3s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=DFDGAxD47lM:7wi1UoqXT3s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=DFDGAxD47lM:7wi1UoqXT3s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=DFDGAxD47lM:7wi1UoqXT3s:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2008/09/06/stop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Day Day Up</title>
		<link>http://blog.rushcj.com/2008/09/05/day-day-up/</link>
		<comments>http://blog.rushcj.com/2008/09/05/day-day-up/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 07:06:45 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[day day up]]></category>

		<category><![CDATA[study]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=56</guid>
		<description><![CDATA[Chinese children grown up with a sentence &#8220;好好学习，天天向上&#8221;, which means &#8220;make improve every day&#8221;. Some chinese people call it &#8220;Good good study, up up everday&#8221;, and a more nice way to express this could be &#8220;day day up&#8221;.
&#8220;Day day up&#8221; is kind of spirit, a positive way of living. Tell yourself to improve when you [...]]]></description>
			<content:encoded><![CDATA[<p>Chinese children grown up with a sentence &#8220;好好学习，天天向上&#8221;, which means &#8220;make improve every day&#8221;. Some chinese people call it &#8220;Good good study, up up everday&#8221;, and a more nice way to express this could be &#8220;day day up&#8221;.</p>
<p>&#8220;Day day up&#8221; is kind of spirit, a positive way of living. Tell yourself to improve when you get up and ask yourself what&#8217;s the achivement today when you go to bed. If you need to learn something difficult, that&#8217;s useful.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=F56hhIqG6Ik:aRRTr6ZhdPk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=F56hhIqG6Ik:aRRTr6ZhdPk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=F56hhIqG6Ik:aRRTr6ZhdPk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=F56hhIqG6Ik:aRRTr6ZhdPk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=F56hhIqG6Ik:aRRTr6ZhdPk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=F56hhIqG6Ik:aRRTr6ZhdPk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=F56hhIqG6Ik:aRRTr6ZhdPk:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2008/09/05/day-day-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Phone Interview</title>
		<link>http://blog.rushcj.com/2008/09/04/phone-interview/</link>
		<comments>http://blog.rushcj.com/2008/09/04/phone-interview/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 05:49:21 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[job]]></category>

		<category><![CDATA[interview]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=54</guid>
		<description><![CDATA[Half years ago I sent my resumes to MSRA(Microsoft Research Asia) Machine Learning Group for an intern position, and I got my first phone interview at 9:30pm 2 days later.
All my research is fouce on Semantic Web, SOA, and I&#8217;m not familiar with data mining, NLP or such things. But the requirments of MSRA MLG [...]]]></description>
			<content:encoded><![CDATA[<p>Half years ago I sent my resumes to <a href="http://research.microsoft.com/asia/">MSRA(</a>Microsoft Research Asia) Machine Learning Group for an intern position, and I got my first phone interview at 9:30pm 2 days later.</p>
<p>All my research is fouce on Semantic Web, SOA, and I&#8217;m not familiar with data mining, NLP or such things. But the requirments of MSRA MLG are just about Semantic Web, so I think maybe I have chance to get it. But I failed in the end.</p>
<p>Why failed? I think about this sometimes. Bad phone communication skills? Bad Language(C++) skills? Misunderstanding the hiring manager&#8217;s words? None prepared?</p>
<p>I will take my second phone interview in some days. Now I should do some homework. I should prepare for every interview and never take naked again.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=21h1SdNDji4:X0D1XWqi5Zs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=21h1SdNDji4:X0D1XWqi5Zs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=21h1SdNDji4:X0D1XWqi5Zs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=21h1SdNDji4:X0D1XWqi5Zs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=21h1SdNDji4:X0D1XWqi5Zs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=21h1SdNDji4:X0D1XWqi5Zs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=21h1SdNDji4:X0D1XWqi5Zs:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2008/09/04/phone-interview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What’s Wrong with WP-Syntax</title>
		<link>http://blog.rushcj.com/2008/09/04/whats-wrong-with-wp-syntax/</link>
		<comments>http://blog.rushcj.com/2008/09/04/whats-wrong-with-wp-syntax/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 03:00:34 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[upgrade]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wp-syntax]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/?p=50</guid>
		<description><![CDATA[I&#8217;m a big fan of wp-syntax. It&#8217;s a great plugin, which makes my codes on post looks much beautiful and professional. Yesterday, I noticed that the new version just released, so I upgraded it immediately. I felt nothing wrong then.
When I opened my rss reader this morning, and I found all my codes become a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of <a href="http://wordpress.org/extend/plugins/wp-syntax/">wp-syntax</a>. It&#8217;s a great plugin, which makes my codes on post looks much beautiful and professional. Yesterday, I noticed that the new version just released, so I upgraded it immediately. I felt nothing wrong then.</p>
<p>When I opened my rss reader this morning, and I found all my codes become a serial of meaningless numbers. That&#8217;s strange.  It not happened all the time. but still, that depressed me a little.</p>
<p>There are some rules for using softwares I made years ago, one of them is: &#8220;If not necessary, do not upgrade!&#8221;. I&#8217;m against my own rules, and I paid for that.</p>
<p>I hope next release will fix this.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=o7iqRmpIoNM:tcrKryPY-oU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=o7iqRmpIoNM:tcrKryPY-oU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=o7iqRmpIoNM:tcrKryPY-oU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=o7iqRmpIoNM:tcrKryPY-oU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=o7iqRmpIoNM:tcrKryPY-oU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=o7iqRmpIoNM:tcrKryPY-oU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=o7iqRmpIoNM:tcrKryPY-oU:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2008/09/04/whats-wrong-with-wp-syntax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Try Google Chrome</title>
		<link>http://blog.rushcj.com/2008/09/03/try-google-chrome/</link>
		<comments>http://blog.rushcj.com/2008/09/03/try-google-chrome/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 03:07:39 +0000</pubDate>
		<dc:creator>sammychen</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://blog.rushcj.com/2008/09/03/try-google-chrome/</guid>
		<description><![CDATA[Google Chrome is a brand new web browser released by Google yesterday. I have to say it&#8217;s a nice web browser after I trying it in the whole morning. The speed of loading(with google gear) and JS interpret are much faster than firefox3 and IE7. That&#8217;s impressive.
I like the status bar very much. I will only appear when you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/chrome">Google Chrome</a> is a brand new web browser released by <a href="http://www.google.com">Google</a> yesterday. I have to say it&#8217;s a nice web browser after I trying it in the whole morning. The speed of loading(with google gear) and JS interpret are much faster than firefox3 and IE7. That&#8217;s impressive.</p>
<p>I like the status bar very much. I will only appear when you need it (eg. put your mouse on a link, then the statur bar will appear, when your mouse goes away, it&#8217;s gone too).</p>
<p>Surely, there are something not so good, especially the memory it eats.  I opened 5 tabs, and nearly 100M memory is gone.Waiting for the next release. :) </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CEWeblog?a=D9M4Kj3tAiI:2K5IxuobyDo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CEWeblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=D9M4Kj3tAiI:2K5IxuobyDo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=D9M4Kj3tAiI:2K5IxuobyDo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=D9M4Kj3tAiI:2K5IxuobyDo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=D9M4Kj3tAiI:2K5IxuobyDo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CEWeblog?a=D9M4Kj3tAiI:2K5IxuobyDo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CEWeblog?i=D9M4Kj3tAiI:2K5IxuobyDo:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.rushcj.com/2008/09/03/try-google-chrome/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
