<?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" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>旋转木马の阶梯 » Selectives</title>
	
	<link>http://boke.name/citizen</link>
	<description>Just another Boke.name site</description>
	<lastBuildDate>Sat, 10 Sep 2011 15:17:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<feedburner:info uri="2ndfloorstore" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/2ndFloorRear" /><feedburner:info uri="2ndfloorrear" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>Ragel状态机生成器</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/YsRebKxN7sA/</link>
		<comments>http://boke.name/citizen/2008/12/04/ragel/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 00:28:17 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Selectives]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[fa]]></category>
		<category><![CDATA[fsm]]></category>
		<category><![CDATA[ragel]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=318</guid>
		<description><![CDATA[Ragel可以把正则表达式翻译成有限状态机（FA）的各种语言表示，包括C、C++、Objective-C、D、Java和Ruby。Regular Expression和FA的用途很广，可以用于协议分析、数据解析、词法分析、用户数据校验等。在Ragel的帮助下，写一个atoi的函数非常容易，而且比标准库提供的atoi函数性能要高。 /* * Convert a string to an integer. */ #include #include #include %%{ machine atoi; write data; }%% long long atoi( char *str ) { char *p = str, *pe = str + strlen( str ); int cs; long long val = 0; bool neg = false; %%{ action see_neg { neg = [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.complang.org/ragel/" target="_blank">Ragel</a>可以把正则表达式翻译成有限状态机（FA）的各种语言表示，包括C、C++、Objective-C、D、Java和Ruby。Regular Expression和FA的用途很广，可以用于协议分析、数据解析、词法分析、用户数据校验等。在Ragel的帮助下，写一个atoi的函数非常容易，而且比标准库提供的atoi函数性能要高。</p>
<pre>/*
 * Convert a string to an integer.
 */

#include
#include
#include 

%%{
	machine atoi;
	write data;
}%%

long long atoi( char *str )
{
	char *p = str, *pe = str + strlen( str );
	int cs;
	long long val = 0;
	bool neg = false;

	%%{
		action see_neg {
			neg = true;
		}

		action add_digit {
			val = val * 10 + (fc - '0');
		}

		main :=
			( '-'@see_neg | '+' )? ( digit @add_digit )+
			'n';

		# Initialize and execute.
		write init;
		write exec;
	}%%

	if ( neg )
		val = -1 * val;

	if ( cs &lt; atoi_first_final )
		fprintf( stderr, "atoi: there was an errorn" );

	return val;
};

#define BUFSIZE 1024

int main()
{
	char buf[BUFSIZE];
	while ( fgets( buf, sizeof(buf), stdin ) != 0 ) {
		long long value = atoi( buf );
		printf( "%lldn", value );
	}
	return 0;
}</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=OuOwAB4Q"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=JqjZJBcF"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=eyao2VvP"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=eyao2VvP" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=JtS5LfbI"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/12/04/ragel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/12/04/ragel/</feedburner:origLink></item>
		<item>
		<title>Here’s to the Crazy Ones</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/0F-796YDUpM/</link>
		<comments>http://boke.name/citizen/2008/08/25/heres-to-the-crazy-ones/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 18:31:15 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Selectives]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=311</guid>
		<description><![CDATA[Here&#8217;s to the Crazy Ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They&#8217;re not fond of rules. And they have no respect for the status quo. You can quote them, disagree with them, disbelieve them, glorify or vilify them. About the only thing [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s to the Crazy Ones.<br />
The misfits.<br />
The rebels.<br />
The troublemakers.<br />
The round pegs in the square holes.<br />
The ones who see things differently.<br />
They&#8217;re not fond of rules.<br />
And they have no respect for the status quo.<br />
You can quote them, disagree with them,<br />
disbelieve them, glorify or vilify them.<br />
About the only thing that you can&#8217;t do, is ignore them.<br />
Because they change things.<br />
They invent. They imagine. They heal.<br />
They explore. They create. They inspire.<br />
They push the human race forward.<br />
Maybe they have to be crazy.<br />
How else can you stare at an empty canvas and see a work of art?<br />
Or, sit in silence and hear a song that hasn&#8217;t been written?<br />
Or, gaze at a red planet and see a laboratory on wheels?<br />
<strong>We make tools for these kinds of people.</strong><br />
While some may see them as the crazy ones, <strong>we see genius.</strong><br />
Because the ones who are crazy enough to think that they can change the world,<br />
are the ones who do.</p>
<p><strong><span style="font-family: Lucida Grande,monotype"></span>Think different.</strong></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=v9nn2FZN"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=Cy0NvkDT"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=xTsyTLIc"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=xTsyTLIc" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=V5hWfw1l"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/08/25/heres-to-the-crazy-ones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/08/25/heres-to-the-crazy-ones/</feedburner:origLink></item>
		<item>
		<title>Into the Wild</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/RyePY5v4SN4/</link>
		<comments>http://boke.name/citizen/2008/06/22/into-the-wild/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 03:31:58 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[Selectives]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=274</guid>
		<description><![CDATA[比起在网上广为流传的那张Chris坐在magic bus前微笑的遗照，我更喜欢这张和小女生一起的照片。看来我还是喜欢温馨的场景啊！BTW，这个叫Kristen Stewart的女生是我喜欢的类型。嗯。 Into the Wild, 是一部根据真实故事改编的电影。故事的主角Christopher Johnson McCandless是刚从Emory University毕业的学生。我的第一感觉是，他因为家庭原因（童年阴影），行为显得很反社会化。他厌恶物质享受，拒绝父母给他换新车。他厌倦了嘈吵的人群，向往着无人地带。于是刚刚才穿上学士服的Chris把所有存款捐了，把ID烧了，开着破车远离人群。后来汽车遇到了泥石流。他干脆把汽车抛弃了，把现金烧了，背上背包开始漫无目的的徒步旅行。 他向往的是自然的生活状态。在路上，他一边徒步旅行，偶尔打工，穿越了大半个美国。在路上，他碰到了不同的人，有流浪的吉普赛夫妇，有待他和善的逃犯，有唱歌很美的邻家女孩，有丧妻丧子的年老退伍军人。Chris并不是完全的远离人群。他想远离的，是原来囚笼一般的父母所指定和期待的世界。由于童年阴影，他不敢与父母沟通。年轻的叛逆和无声的反抗的结果是逃离。当他离开压抑的气氛以后，他总是充满着善意的与人群交往。 虽然他是天真而无知的，但他有着理想主义的勇敢。他向往的是蛮荒的阿拉斯加。他义无反顾的越过雪地、跨过冰河，最后来到了一辆废弃在阿拉斯加荒原中的神奇巴士处住了下来。最后当他领悟到了&#8221;Happiness is only real when shared&#8221;的时候，却死于中毒造成的饿死。 他到阿拉斯加去完全是无计划、无准备与未经考虑的。他的传奇的经历，对不同的人来说有不同的意义。就我来说，我也很希望有一天能一个人孤身上路去寻找一些生命中值得追寻的事物。但会不会放弃其它所有呢？我不知道。 更多关于这个故事的真实情况可以看这里。]]></description>
			<content:encoded><![CDATA[<p><a href="https://boke.name/citizen/wp-content/uploads/2008/06/itunesscreensnapz003.jpg"><img class="alignnone size-full wp-image-276" src="https://boke.name/citizen/wp-content/uploads/2008/06/itunesscreensnapz003.jpg" alt="" width="500" height="283" /></a></p>
<p>比起在网上广为流传的那张Chris坐在magic bus前微笑的遗照，我更喜欢这张和小女生一起的照片。看来我还是喜欢温馨的场景啊！BTW，这个叫Kristen Stewart的女生是我喜欢的类型。嗯。</p>
<p>Into the Wild, 是一部根据真实故事改编的电影。故事的主角Christopher Johnson McCandless是刚从Emory University毕业的学生。我的第一感觉是，他因为家庭原因（童年阴影），行为显得很反社会化。他厌恶物质享受，拒绝父母给他换新车。他厌倦了嘈吵的人群，向往着无人地带。于是刚刚才穿上学士服的Chris把所有存款捐了，把ID烧了，开着破车远离人群。后来汽车遇到了泥石流。他干脆把汽车抛弃了，把现金烧了，背上背包开始漫无目的的徒步旅行。</p>
<p>他向往的是自然的生活状态。在路上，他一边徒步旅行，偶尔打工，穿越了大半个美国。在路上，他碰到了不同的人，有流浪的吉普赛夫妇，有待他和善的逃犯，有唱歌很美的邻家女孩，有丧妻丧子的年老退伍军人。Chris并不是完全的远离人群。他想远离的，是原来囚笼一般的父母所指定和期待的世界。由于童年阴影，他不敢与父母沟通。年轻的叛逆和无声的反抗的结果是逃离。当他离开压抑的气氛以后，他总是充满着善意的与人群交往。</p>
<p>虽然他是天真而无知的，但他有着理想主义的勇敢。他向往的是蛮荒的阿拉斯加。他义无反顾的越过雪地、跨过冰河，最后来到了一辆废弃在阿拉斯加荒原中的神奇巴士处住了下来。最后当他领悟到了&#8221;Happiness is only real when shared&#8221;的时候，却死于中毒造成的饿死。</p>
<p>他到阿拉斯加去完全是无计划、无准备与未经考虑的。他的传奇的经历，对不同的人来说有不同的意义。就我来说，我也很希望有一天能一个人孤身上路去寻找一些生命中值得追寻的事物。但会不会放弃其它所有呢？我不知道。</p>
<p>更多关于这个故事的真实情况可以看<a href="http://tw.myblog.yahoo.com/jw!AcLRJEOUERVGVDGJr7uc2OyCsvk-/article?mid=7068">这里</a>。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=u0p1uBsn"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=zq9zxtHr"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=nYDHsTGG"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=nYDHsTGG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=cyD0HgHH"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/06/22/into-the-wild/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/06/22/into-the-wild/</feedburner:origLink></item>
		<item>
		<title>苜蓿地</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/lunWbrda9gM/</link>
		<comments>http://boke.name/citizen/2008/06/21/cloverfield/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 21:41:18 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[Selectives]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=273</guid>
		<description><![CDATA[Felicity 是我很喜欢的一部电视剧。所以当它的制作人J. J. Abrams后来拍了这部全新的DV作品的时候，我就觉得有看的必要。苜蓿地是一部全DV电影，影片的背景是男主角一班朋友欢送男主角聚会。男女主角之间有矛盾。后来灾难发生，男主角决定回到走散的地方救人。电影是用DV拍下的全记录，中间错乱的夹杂着没有删除的过去的男女主角相处的片段。 影片的构思很好，不过我的感觉是很晃。由于是全DV手动拍摄，镜头晃得不得了。我对晃镜头导致的头晕完全无解。后来把电影transfer到iPod Touch上看完了。]]></description>
			<content:encoded><![CDATA[<p><em>Felicity</em> 是我很喜欢的一部电视剧。所以当它的制作人J. J. Abrams后来拍了这部全新的DV作品的时候，我就觉得有看的必要。苜蓿地是一部全DV电影，影片的背景是男主角一班朋友欢送男主角聚会。男女主角之间有矛盾。后来灾难发生，男主角决定回到走散的地方救人。电影是用DV拍下的全记录，中间错乱的夹杂着没有删除的过去的男女主角相处的片段。</p>
<p>影片的构思很好，不过我的感觉是很晃。由于是全DV手动拍摄，镜头晃得不得了。我对晃镜头导致的头晕完全无解。后来把电影transfer到iPod Touch上看完了。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=kgbHTIXF"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=ftSdUlqI"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=tLxufEBi"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=tLxufEBi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=r3dliSHf"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/06/21/cloverfield/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/06/21/cloverfield/</feedburner:origLink></item>
		<item>
		<title>安妮的绿色小屋</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/JevkSfTnDI4/</link>
		<comments>http://boke.name/citizen/2008/06/14/anne-of-green-gables/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 02:29:22 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Selectives]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=272</guid>
		<description><![CDATA[女主角Anne。表演者Amy Wallis。这是她第三次扮演Anne。 Anne of Green Gables，其实应该翻译成绿色小屋的安妮，不过中文翻译挺好的，标题也就是这个了。3月份我就订了这张Anne of Green Gables preview场的票，日子还是在13日星期五。我坐的位置很好，在靠舞台的第五排，在中间稍侧的位置，刚好能看到演员的最好的侧面。我没机会到后面或者balcony去听具体的音效如何。但在我这个位置，演员和乐队指挥的动作和表情都非常清楚。音乐的感染力很强。 《安妮的绿色小屋》是加拿大作家Lucy Maud Montgomery的作品。讲述一个红发孤女Anne被一对农家兄妹收养的故事。音乐剧讲述的比小说较多，还包括了小说续集的故事。音乐剧对Matthew的去世还作了艺术处理，把Matthew的死（极悲）放在了Anne赢得奖学金（极喜）之后。现场不少人因此而落泪。 现场看音乐剧的感觉比在屏幕上看要震撼得多。虽然因为舞台较小的原因，现场的布景并不非常奢华。对比最著名的四大音乐剧，布景很简单。布景的复杂程度大概和法语音乐剧小王子相若。尽管舞台布景不复杂，现场乐队的出色表现、演员的极具感染力的表演都令我印象非常深刻。对比国内看过的一些话剧，这出音乐剧的演员更投入他们的演出。主角Anne的演出更是十分出色，不论是外表、唱功还是演技都可与Broadway著名的音乐剧演员相若，能真正的做到以演技来感动观众。相比之下，我看过的话剧的演员的感染力都很有限。据说真正的专业演员都要受“解放天性”的训练。也许是教育原因导致国内外演员表现力有所差别。 当地的观众也相当有水平，全场没有听到一次电话的声音。现场很多小孩子来看音乐剧，小孩子也没有发出很多刺耳的声音。我还没有更多的在国外看演出的经历，不知道最后全场观众起立鼓掌是不是惯例。不过今天大家都看得很感动，最后鼓掌时间挺长的。]]></description>
			<content:encoded><![CDATA[<p><img style="vertical-align: top" src="http://www.confederationcentre.com/site-ccoa/media/confederationcentre/Anne2008.jpg" alt="" width="372" height="299" /></p>
<p>女主角Anne。表演者Amy Wallis。这是她第三次扮演Anne。</p>
<p><a href="http://www.confederationcentre.com/en/home/onstage/charlottetownfestival/anneofgreengables/photogallery.aspx">Anne of Green Gables</a>，其实应该翻译成绿色小屋的安妮，不过中文翻译挺好的，标题也就是这个了。3月份我就订了这张Anne of Green Gables preview场的票，日子还是在13日星期五。我坐的位置很好，在靠舞台的第五排，在中间稍侧的位置，刚好能看到演员的最好的侧面。我没机会到后面或者balcony去听具体的音效如何。但在我这个位置，演员和乐队指挥的动作和表情都非常清楚。音乐的感染力很强。</p>
<p>《安妮的绿色小屋》是加拿大作家Lucy Maud Montgomery的作品。讲述一个红发孤女Anne被一对农家兄妹收养的故事。音乐剧讲述的比小说较多，还包括了小说续集的故事。音乐剧对Matthew的去世还作了艺术处理，把Matthew的死（极悲）放在了Anne赢得奖学金（极喜）之后。现场不少人因此而落泪。</p>
<p>现场看音乐剧的感觉比在屏幕上看要震撼得多。虽然因为舞台较小的原因，现场的布景并不非常奢华。对比最著名的四大音乐剧，布景很简单。布景的复杂程度大概和法语音乐剧小王子相若。尽管舞台布景不复杂，现场乐队的出色表现、演员的极具感染力的表演都令我印象非常深刻。对比国内看过的一些话剧，这出音乐剧的演员更投入他们的演出。主角Anne的演出更是十分出色，不论是外表、唱功还是演技都可与Broadway著名的音乐剧演员相若，能真正的做到以演技来感动观众。相比之下，我看过的话剧的演员的感染力都很有限。据说真正的专业演员都要受“解放天性”的训练。也许是教育原因导致国内外演员表现力有所差别。</p>
<p>当地的观众也相当有水平，全场没有听到一次电话的声音。现场很多小孩子来看音乐剧，小孩子也没有发出很多刺耳的声音。我还没有更多的在国外看演出的经历，不知道最后全场观众起立鼓掌是不是惯例。不过今天大家都看得很感动，最后鼓掌时间挺长的。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=wi9uLLYV"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=FloqyXGO"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=J2KnHrSo"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=J2KnHrSo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=PULR2lLo"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/06/14/anne-of-green-gables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/06/14/anne-of-green-gables/</feedburner:origLink></item>
		<item>
		<title>Geek的一天</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/I6etpvsAA14/</link>
		<comments>http://boke.name/citizen/2008/06/08/a-geek-weekday/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 05:37:14 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Selectives]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=271</guid>
		<description><![CDATA[回想一下自己的每个工作日，果然挺geek的。BTW，谁看到了我的blog的，有兴趣写写自己的每一个工作日怎么过的么？ 7:00am   起床，洗漱，看一下中国当日的财经新闻 7:45am   上班 8:00am   到办公室 12:00pm 午餐 12:30pm 继续 4:00pm   下班，偶尔到超市买菜 5:00pm   看研究的题目，paper 6:00pm   晚餐，看当天的世界财经新闻 7:30pm   开始研究工作 10:30pm 中国股市开市 11:30pm 研究工作结束 12:30pm 中国股市上午收市，睡觉。]]></description>
			<content:encoded><![CDATA[<p>回想一下自己的每个工作日，果然挺geek的。BTW，谁看到了我的blog的，有兴趣写写自己的每一个工作日怎么过的么？</p>
<p>7:00am   起床，洗漱，看一下中国当日的财经新闻<br />
7:45am   上班<br />
8:00am   到办公室<br />
12:00pm 午餐<br />
12:30pm 继续<br />
4:00pm   下班，偶尔到超市买菜<br />
5:00pm   看研究的题目，paper<br />
6:00pm   晚餐，看当天的世界财经新闻<br />
7:30pm   开始研究工作<br />
10:30pm 中国股市开市<br />
11:30pm 研究工作结束<br />
12:30pm 中国股市上午收市，睡觉。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=8Q5CqzzD"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=pauDhM38"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=mjwmNoXp"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=mjwmNoXp" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=MiZiV1Yf"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/06/08/a-geek-weekday/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/06/08/a-geek-weekday/</feedburner:origLink></item>
		<item>
		<title>四川地震</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/vCIdDsIQ5Q0/</link>
		<comments>http://boke.name/citizen/2008/05/12/sichuan-earthquake/#comments</comments>
		<pubDate>Mon, 12 May 2008 07:14:59 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Selectives]]></category>
		<category><![CDATA[天气]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=268</guid>
		<description><![CDATA[据说震中是成都附近，连北京、上海都有明显震感。震源7.8级。写字楼已经疏散。希望各位还好！  ]]></description>
			<content:encoded><![CDATA[<p>据说震中是<a href="http://earthquake.usgs.gov/eqcenter/recenteqsww/Maps/region/Asia.php">成都附近</a>，连北京、上海都有明显震感。震源7.8级。写字楼已经疏散。希望各位还好！<br />
<a href='https://boke.name/citizen/wp-content/uploads/2008/05/asia.gif'><img src="https://boke.name/citizen/wp-content/uploads/2008/05/asia-300x213.gif" alt="" width="300" height="213" class="aligncenter size-medium wp-image-269" /></a></p>
<p> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=uchAkpwa"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=ZzkC9r40"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=gs5MO1FI"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=gs5MO1FI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=XiHRkOlt"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/05/12/sichuan-earthquake/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/05/12/sichuan-earthquake/</feedburner:origLink></item>
		<item>
		<title>最近流行晒history</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/ibecPf92PYY/</link>
		<comments>http://boke.name/citizen/2008/04/22/%e6%9c%80%e8%bf%91%e6%b5%81%e8%a1%8c%e6%99%92history/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 06:23:31 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Selectives]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[history]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/?p=266</guid>
		<description><![CDATA[Triangle:newsoul felix$ history &#124; awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'&#124;sort -rn&#124;head 136 java 113 git 94 ls 50 cd 17 tail 11 vi 10 mate 7 rm 6 dig 5 ps]]></description>
			<content:encoded><![CDATA[<p><code>Triangle:newsoul felix$ history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head<br />
136 java<br />
113 git<br />
94 ls<br />
50 cd<br />
17 tail<br />
11 vi<br />
10 mate<br />
7 rm<br />
6 dig<br />
5 ps<br />
</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=e5aYufJq"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=g2kRU6rR"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=e1QIMSjr"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=e1QIMSjr" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=HUyYgVBP"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/04/22/%e6%9c%80%e8%bf%91%e6%b5%81%e8%a1%8c%e6%99%92history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/04/22/%e6%9c%80%e8%bf%91%e6%b5%81%e8%a1%8c%e6%99%92history/</feedburner:origLink></item>
		<item>
		<title>links for 2008-03-31</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/vCeon7act7c/</link>
		<comments>http://boke.name/citizen/2008/03/31/links-for-2008-03-31/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 02:30:43 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Selectives]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/2008/03/31/links-for-2008-03-31/</guid>
		<description><![CDATA[Hello World iPhone Native Application &#124; muthu arumugam blog (tags: iphone programming interface builder sdk)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://techblog.muthuka.com/index.php/2008/03/27/hello-world-iphone-native-application/">Hello World iPhone Native Application | muthu arumugam blog</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/gzfelix/iphone">iphone</a> <a href="http://del.icio.us/gzfelix/programming">programming</a> <a href="http://del.icio.us/gzfelix/interface">interface</a> <a href="http://del.icio.us/gzfelix/builder">builder</a> <a href="http://del.icio.us/gzfelix/sdk">sdk</a>)</div>
</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=2YIJPm12"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=Q0GnwhVI"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=GA1F9kdS"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=GA1F9kdS" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=fh6P1RlH"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/03/31/links-for-2008-03-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/03/31/links-for-2008-03-31/</feedburner:origLink></item>
		<item>
		<title>links for 2008-03-23</title>
		<link>http://feedproxy.google.com/~r/2ndFloorStore/~3/Az7XOGScN4I/</link>
		<comments>http://boke.name/citizen/2008/03/23/links-for-2008-03-23/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 02:17:08 +0000</pubDate>
		<dc:creator>dev</dc:creator>
				<category><![CDATA[Selectives]]></category>

		<guid isPermaLink="false">http://boke.name/citizen/2008/03/23/links-for-2008-03-23/</guid>
		<description><![CDATA[Running Windows XP from a USB-Stick / HDD (tags: windows usb boot)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.ngine.de/index.jsp?pageid=4176">Running Windows XP from a USB-Stick / HDD</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/gzfelix/windows">windows</a> <a href="http://del.icio.us/gzfelix/usb">usb</a> <a href="http://del.icio.us/gzfelix/boot">boot</a>)</div>
</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=5GeHuU9M"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=bS1Q1OUi"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=QeRTshSQ"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?i=QeRTshSQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/2ndFloorStore?a=I1Hzgx4Q"><img src="http://feeds.feedburner.com/~f/2ndFloorStore?d=45" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://boke.name/citizen/2008/03/23/links-for-2008-03-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://boke.name/citizen/2008/03/23/links-for-2008-03-23/</feedburner:origLink></item>
	</channel>
</rss>

