<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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"
	>

<channel>
	<title>live@haliluya</title>
	<atom:link href="http://live.haliluya.org/weblog/feed" rel="self" type="application/rss+xml" />
	<link>http://live.haliluya.org/weblog</link>
	<description>Yang Jing's Weblog</description>
	<pubDate>Tue, 08 Jul 2008 09:27:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>[Flickr] I am not ok but Cloud will change its Shape anyway.</title>
		<link>http://live.haliluya.org/weblog/2008/07/08/flickr-i-am-not-ok-but-cloud-will-change-its-shape-anyway/</link>
		<comments>http://live.haliluya.org/weblog/2008/07/08/flickr-i-am-not-ok-but-cloud-will-change-its-shape-anyway/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 09:27:02 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/2008/07/08/flickr-i-am-not-ok-but-cloud-will-change-its-shape-anyway/</guid>
		<description><![CDATA[


I am not ok but Cloud will change its Shape anyway., originally uploaded by _remo.


天空和云的照片，我是无法抵挡。... ]]></description>
			<content:encoded><![CDATA[<div style="text-align: left; padding: 3px;">
<a href="http://www.flickr.com/photos/rkottonau/2631006515/"  title="photo sharing"><img src="http://farm4.static.flickr.com/3062/2631006515_9e5d52ae21.jpg" style="border: solid 2px #000000;" alt="" /></a><br />
<br />
<span style="font-size: 0.8em; margin-top: 0px;"><a href="http://www.flickr.com/photos/rkottonau/2631006515/" >I am not ok but Cloud will change its Shape anyway.</a>, originally uploaded by <a href="http://www.flickr.com/people/rkottonau/" >_remo</a>.</span>
</div>
<p>
天空和云的照片，我是无法抵挡。</p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/07/08/flickr-i-am-not-ok-but-cloud-will-change-its-shape-anyway/feed/</wfw:commentRss>
		</item>
		<item>
		<title>新手: CSS三栏布局</title>
		<link>http://live.haliluya.org/weblog/2008/07/04/3-column-css-based-layout/</link>
		<comments>http://live.haliluya.org/weblog/2008/07/04/3-column-css-based-layout/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 05:51:37 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[(Web)Design]]></category>

		<category><![CDATA[3 Column]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[layout]]></category>

		<category><![CDATA[三栏布局]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=363</guid>
		<description><![CDATA[我目前知道两种基于CSS的三栏布局方式。第一种叫“嵌套”，第二种叫“挤压”。（名目都是我自己编的）
1. 嵌套。这个简单，大部分三栏布局都用这个，我想。就是两个div（AB和C），在其中... ]]></description>
			<content:encoded><![CDATA[<p>我目前知道两种基于CSS的三栏布局方式。第一种叫“嵌套”，第二种叫“挤压”。（名目都是我自己编的）</p>
<p><strong>1. 嵌套。</strong>这个简单，大部分三栏布局都用这个，我想。就是两个div（AB和C），在其中一个中嵌上两个div（A和B）。</p>
<p><img src="http://haliluya.org/gallery/d/3519-1/3-colunm-1.jpg" alt="3-column-css-based-layout" /></p>
<p>CSS代码是：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">#AB { float:left; }</li>
<li>#A { float:left; }</li>
<li>#B { float:right; }</li>
<li>#C { float:right; }</li>
<li>.clear { clear:both; }</li></ol></div>
<p>HTML代码是：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">&lt;html&gt;</li>
<li>&lt;body&gt;</li>
<li>&lt;div id=&quot;AB&quot;&gt;</li>
<li>&nbsp; &lt;div id=&quot;A&quot;&gt;&lt;/div&gt;</li>
<li>&nbsp; &lt;div id=&quot;B&quot;&gt;&lt;/div&gt;</li>
<li>&nbsp; &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;</li>
<li>&lt;/div&gt;</li>
<li>&lt;div id=&quot;C&quot;&gt;&lt;/div&gt;</li>
<li>&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;</li>
<li>&lt;/body&gt;</li>
<li>&lt;/html&gt;</li></ol></div>
<p><strong>2. 挤压。</strong>这个也不难。先让A、C漂浮在左右两边，B左右Padding出A、C的宽度，这样B就把A、C挤到两边成为中间一栏了。需要注意的是，在HTML代码中，要先A、C块，再B块。</p>
<p><img src="http://haliluya.org/gallery/d/3521-1/3-colunm-2.jpg" alt="3-column-css-based-layout" /></p>
<p>CSS代码是：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">#A { float:left; width:200px; }</li>
<li>#B { padding:5px 200px; }</li>
<li>#C { float:right; width:200px; }</li>
<li>.clear { clear:both; }</li></ol></div>
<p>HTML代码是：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">&lt;html&gt;</li>
<li>&lt;body&gt;</li>
<li>&lt;div id=&quot;A&quot;&gt;&lt;/div&gt;</li>
<li>&lt;div id=&quot;C&quot;&gt;&lt;/div&gt;</li>
<li>&lt;div id=&quot;B&quot;&gt;&lt;/div&gt;</li>
<li>&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;</li>
<li>&lt;/body&gt;</li>
<li>&lt;/html&gt;</li></ol></div>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/07/04/3-column-css-based-layout/feed/</wfw:commentRss>
		</item>
		<item>
		<title>我最喜欢的5本书</title>
		<link>http://live.haliluya.org/weblog/2008/07/02/my-favorite-books/</link>
		<comments>http://live.haliluya.org/weblog/2008/07/02/my-favorite-books/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 03:17:31 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[看听读写]]></category>

		<category><![CDATA[罗素]]></category>

		<category><![CDATA[陀思妥耶夫斯基]]></category>

		<category><![CDATA[马尔克斯]]></category>

		<category><![CDATA[别尔嘉耶夫]]></category>

		<category><![CDATA[托尔斯泰]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=364</guid>
		<description><![CDATA[下面是我最喜欢的5本书，有排名顺序。近年读书少了，《百年孤独》是5本中最后读的，也在两年之前了。荒废呀，就在一天一天中失掉了阅读和音乐的乐趣。
1. 《战争与和平》。《战争与和... ]]></description>
			<content:encoded><![CDATA[<p>下面是我最喜欢的5本书，有排名顺序。近年读书少了，《百年孤独》是5本中最后读的，也在两年之前了。荒废呀，就在一天一天中失掉了阅读和音乐的乐趣。</p>
<p>1. 《战争与和平》。《战争与和平》对于我就象是《挪威的森林》中那本《了不起的盖茨·比》，读了不少于5次，随手翻开一册就可以读下去，有时只读和平，有时只读战争。我的这套有4册，是从地摊上一位艺术学院学生手上得来的；八几年的人民文学版；董秋斯译。我也在书店里读过别的版本，看不下去，理由似乎有些小题大做：我受不了包尔康斯基王爵变成包尔康斯基公爵、彼尔变成皮特。莫德《（托尔斯泰的英文译者）在<a href="http://www.douban.com/subject/1024790/" >托尔斯泰传</a>》中说过，俄罗斯没公爵这种封号，亲王或王爵才是正统的称呼。（虽然彼得大帝引进了伯爵、侯爵这些欧洲封号）扯远了。在我心目中，《战争与和平》是最好的小说，体现了托尔斯泰最为高超的小说才能。他在大篇大篇的对话和议论中，让我一一经历了国家与国家之间、人与人之间、人内心之中的战争与和平。托尔斯泰也是我最喜欢的作家，我钦佩他为改善世界和改善自己所做的努力。</p>
<p>2. 《罪与罚》。我不能否认对俄罗斯文学的偏爱，特别是对托尔斯泰和陀思妥耶夫斯基的偏爱。后者最著名的是其最后一部小说《<a href="http://www.douban.com/subject/1902056/" >卡拉马佐夫兄弟</a>》，不过《罪与罚》对于我有更重要的意义，因为我是在读了《福音书》之后读的《罪与罚》————读过《圣经》和陀思妥耶夫斯基的人都知道陀氏的小说是对《福音书》的深刻解释。小说氛围很完整，始终在一片灰暗中，直到拉斯柯尔尼科夫服刑才逐渐开朗。什么是罪，什么是罚，什么真是罪，什么真是罚。上帝的诫令不应只刻在石板上。</p>
<p><a href="http://www.douban.com/subject/1937228/" ><img src="http://otho.douban.com/mpic/s2353279.jpg" class="frame" style="clear:both;"/></a>	<a href="http://www.douban.com/subject/1008189/" ><img src="http://otho.douban.com/mpic/s1815896.jpg" class="frame" style="clear:both;"/></a>	<a href="http://www.douban.com/subject/1061839/" ><img src="http://otho.douban.com/mpic/s1047783.jpg" class="frame" style="clear:both;"/></a></p>
<p>3. 《百年孤独》。如果我有才能写一本好小说，我会选择写一本魔幻小说，因为我被马尔克斯了不起的才华和自由的想象所折服。年月在流逝，人在出生、死亡，一百年间热闹来了又去，最终只是寂静。</p>
<p>4. 《西方哲学史》。读完此书，许多疑问豁然开朗，让我觉得罗素是我读过的作家中最聪明的一个。我相当喜欢他的书，包括他的自传。</p>
<p>5. 《论人的使命》。其实我并没有读完别尔嘉耶夫的《<a href="http://www.douban.com/subject/1061839/" >论人的使命:悖论伦理学体验</a>》，但我所读到那部分深刻地影响了我的世界观。</p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/07/02/my-favorite-books/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Coldplay, Fireflight &#038; Lunik</title>
		<link>http://live.haliluya.org/weblog/2008/06/27/coldplay-fireflight-lunik/</link>
		<comments>http://live.haliluya.org/weblog/2008/06/27/coldplay-fireflight-lunik/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 02:48:24 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[看听读写]]></category>

		<category><![CDATA[Coldplay]]></category>

		<category><![CDATA[Fireflight]]></category>

		<category><![CDATA[Lunik]]></category>

		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=362</guid>
		<description><![CDATA[标题是三只乐队的名字。我觉得他们的音乐都很大众化，就放在一块简要地介绍一下他们新专辑。
相信很多人都迫不及待地听了Coldplay的新专辑Viva La Vida Or Death And All His Friends。虽然加入了一些... ]]></description>
			<content:encoded><![CDATA[<p>标题是三只乐队的名字。我觉得他们的音乐都很大众化，就放在一块简要地介绍一下他们新专辑。</p>
<p>相信很多人都迫不及待地听了Coldplay的新专辑<a href="http://www.douban.com/subject/3039908/" >Viva La Vida Or Death And All His Friends</a>。虽然加入了一些粗糙、实验和异域风格，但Chris Martin一开声，Cold就又play起来了。Viva La Vida不失为一张好听的唱片，但个人觉得还是比不上<a href="http://www.douban.com/subject/1463061/" >Parachutes</a>，当然就更比不上2005年的<a href="http://www.douban.com/subject/1394600/" >X&#038;Y</a>。没有Yellow和Don&#8217;t Panic，就不会知道Coldplay，没有X&#038;Y，就谈不上对Coldplay有多喜欢。相比Radiohead和Blur，Coldplay的才华算不上一流，也可能是音乐观念不同，Coldplay显得很传统，不激进，不活泼。Coldplay说自己的风格是“very heavy soft rock”，并被大家拿来与Jeff Buckley和Oasis相比。Oasis我听得不多，不过与Jeff Buckley比较，很明显，他们缺乏震撼力。X&#038;Y是一张缺乏震撼力的专辑，却是一张相当好听、耐听的唱片。</p>
<p><img src="http://otho.douban.com/mpic/s1399810.jpg" class="frame" style="clear:both;" />    <img src="http://otho.douban.com/mpic/s1400630.jpg" class="frame" style="clear:both;" />    <img src="http://otho.douban.com/mpic/s3075847.jpg" class="frame" style="clear:both;" />    <a href="http://www.douban.com/subject/2988769/" ><img src="http://otho.douban.com/mpic/s2894512.jpg" class="frame" style="clear:both;" /></a></p>
<p>最近在我的MP3 Player里出出进进的专辑挺多，<a href="http://www.douban.com/subject/2988769/" >Unbreakable</a>是唯一留下的。这是<a href="http://en.wikipedia.org/wiki/Fireflight" >Fireflight</a>的第二张专辑；女声主唱。Unbreakable很讨耳朵的喜欢：流行金属（或者说是趋于流行的very heavy soft rock），重鼓点、激昂旋律。比较适合骑车的时候听。</p>
<div class="clear"></div>
<p><a href="http://www.lunik.com/" >Lunik</a>是一只瑞士乐队，成立于1997年，同样为女声主唱，风格是“Atmospheric Trip Hop”。虽说Trip Hop都带Electronic，不过Lunik的音乐还是很清爽的。他们的最后一张专辑是Preparing to leave，发行于2006年。我猜想会不会再发行一张Goodbey，或者已经离开了。他们不算太出名，可以先在豆瓣里试听一下，看是否对味。</p>
<p><a href="http://www.douban.com/subject/1465425/" ><img src="http://otho.douban.com/mpic/s2873241.jpg" class="frame" style="clear:both;" /></a>    <a href="http://www.douban.com/subject/2135310/" ><img src="http://otho.douban.com/mpic/s2561182.jpg" class="frame" style="clear:both;" /></a>    <a href="http://www.douban.com/subject/1465424/" ><img src="http://otho.douban.com/mpic/s2716292.jpg" class="frame" style="clear:both;" /></a>    <a href="http://www.douban.com/subject/1873151/" ><img src="http://otho.douban.com/mpic/s1807716.jpg" class="frame" style="clear:both;" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/06/27/coldplay-fireflight-lunik/feed/</wfw:commentRss>
		</item>
		<item>
		<title>祈祷</title>
		<link>http://live.haliluya.org/weblog/2008/05/14/pray/</link>
		<comments>http://live.haliluya.org/weblog/2008/05/14/pray/#comments</comments>
		<pubDate>Wed, 14 May 2008 06:29:31 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=360</guid>
		<description><![CDATA[并没有多少话可说。在危难中，在平凡人身上，总是能得到激励自己信心的力量。
为死难的同胞哀悼 为尚存的同胞祈祷... ]]></description>
			<content:encoded><![CDATA[<p>并没有多少话可说。在危难中，在平凡人身上，总是能得到激励自己信心的力量。</p>
<p><strong>为死难的同胞哀悼 为尚存的同胞祈祷</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/05/14/pray/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu8.04 LTS和6600GT</title>
		<link>http://live.haliluya.org/weblog/2008/04/28/ubuntu804-lts-and-6600gt/</link>
		<comments>http://live.haliluya.org/weblog/2008/04/28/ubuntu804-lts-and-6600gt/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 02:25:19 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[Linux(Ubuntu)]]></category>

		<category><![CDATA[6600GT]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu8.04]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=359</guid>
		<description><![CDATA[或许Ubuntu中文论坛里流传的“升级与人品有关”的笑话，是对系统升级的最形象的描述。上次，从7.04升级到7.10，很顺利。这次，失败，最后彻底重装。
我是在Ubuntu8.04 RC发布时升级的（上个星... ]]></description>
			<content:encoded><![CDATA[<p>或许Ubuntu中文论坛里流传的“升级与人品有关”的笑话，是对系统升级的最形象的描述。上次，从7.04升级到7.10，很顺利。这次，失败，最后彻底重装。</p>
<p>我是在Ubuntu8.04 RC发布时升级的（上个星期天），该下载的下载，该安装的安装，重启之后来到了登录界面，满心欢喜地输入密码，却永远只看到鼠标指针停留在一片淡黄背景中间。我当时并不着急，想着正式版出来后来个upgrade就会好了。期间试了一些办法启动X，无效。同时也怀疑是显卡驱动的问题，而且我的显卡太old了（mx 400，无法打开桌面特效），主板也old，只能插AGP显卡，于是在淘宝买了一块丽台的6600GT。</p>
<p>25号，有了<a href="http://www.ubuntu.com/getubuntu/download" >正式版</a>和新显卡两大法宝，我要破除人品论的迷信。结果，在始终4、50k的速度里熬了1个多小时后，升级没能解决问题。第二天一大早，把正式版刻录盘丢进光驱，我重装，我不在乎人品了。再次重启系统，再次满心欢喜地输入密码，我看到了桌面背景了，哇哦，哇哦，哇~~~。原来重装后可以多看到一张桌面。</p>
<p>最后，只有把/home/user下的所有（.开头的）配置文件和文件夹删除，再重装。终于没什么悬念了。而有了6600GT，我终于能开启特效了。</p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/04/28/ubuntu804-lts-and-6600gt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>奥运会</title>
		<link>http://live.haliluya.org/weblog/2008/04/20/olympic-games/</link>
		<comments>http://live.haliluya.org/weblog/2008/04/20/olympic-games/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 02:07:04 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[看听读写]]></category>

		<category><![CDATA[2008]]></category>

		<category><![CDATA[北京]]></category>

		<category><![CDATA[奥运]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=358</guid>
		<description><![CDATA[历数各届奥运点火仪式，我最喜欢92年巴塞罗那奥运会那次：一位残疾人运动员射出火箭点燃主火炬。我之所以喜欢，是因为它在形式上很简单、很纯粹，实际上却很难。但是&#8211;也许大家都... ]]></description>
			<content:encoded><![CDATA[<p>历数各届奥运点火仪式，我最喜欢92年巴塞罗那奥运会那次：一位残疾人运动员射出火箭点燃主火炬。我之所以喜欢，是因为它在形式上很简单<span style="text-decoration: line-through;">、很纯粹</span>，实际上却很难。但是&#8211;也许大家都知道了，那支火箭没有射入火炬盆，而是故意越过火炬盆落到体育场外。于是我划掉了很纯粹。</p>
<p>奥运金牌，因为政治（裁判打分），因为兴奋剂，早就不能说干净了。更多时候，我喜欢电视画面里那些没有得到金牌却笑逐颜开的运动员们，那才是参与游戏的愉悦。</p>
<p>93年，北京申奥失败，我哭过。01年，北京申奥成功，我很快乐。我觉得中国太需要一个象奥运这样机会，让外国人&#8211;特别是普通人&#8211;对我们多一些了解。而且全民申奥那股劲很让人振奋。但是，没有开放的心态和讲真话的勇气，能让他人了解多少呢。</p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/04/20/olympic-games/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Access Flickr!更新到1.9</title>
		<link>http://live.haliluya.org/weblog/2008/04/13/access-flickr-upgrad-to-1-9/</link>
		<comments>http://live.haliluya.org/weblog/2008/04/13/access-flickr-upgrad-to-1-9/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 10:07:36 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[Web+Bloggin]]></category>

		<category><![CDATA[Access Flickr!]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[gfw]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=357</guid>
		<description><![CDATA[翻墙访问Flickr的Firefox附加软件Access Flickr!更新到了1.9。1.8已经实效一段时间了，可爱的Flickr开了许多天窗。这下色彩又塞满了眼球。
似乎因为安装Access Flickr!需要同意用户许可，所以无法自动... ]]></description>
			<content:encoded><![CDATA[<p>翻墙访问<a href="http://flickr.com"  target="_blank">Flickr</a>的Firefox附加软件<a href="https://addons.mozilla.org/en-US/firefox/addon/4286"  target="_blank">Access Flickr!</a>更新到了1.9。1.8已经实效一段时间了，可爱的Flickr开了许多天窗。这下色彩又塞满了眼球。</p>
<p>似乎因为安装Access Flickr!需要同意用户许可，所以无法自动更新。开天窗的朋友自己更新一下吧。</p>
<p>感谢一下Access Flickr!的作者<a href="http://www.flickr.com/people/hamed/"  target="_blank">Hamed Saber</a>。Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/04/13/access-flickr-upgrad-to-1-9/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[转帖] cd命令小技巧</title>
		<link>http://live.haliluya.org/weblog/2008/04/13/cd-command-tips/</link>
		<comments>http://live.haliluya.org/weblog/2008/04/13/cd-command-tips/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 09:35:42 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[Linux(Ubuntu)]]></category>

		<category><![CDATA[cd]]></category>

		<category><![CDATA[shell]]></category>

		<category><![CDATA[tips]]></category>

		<category><![CDATA[技巧]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=356</guid>
		<description><![CDATA[转帖，备忘。
cd -  （回到上次所在目录）
cd !$  （把上个命令的参数作为输入）
cd      （回到主目录）
cd ~   （同样也是回到主目录）
如果还是不太清楚怎么用，可以到dzh001的博客看详... ]]></description>
			<content:encoded><![CDATA[<p>转帖，备忘。</p>
<blockquote><p>cd -  （回到上次所在目录）<br />
cd !$  （把上个命令的参数作为输入）<br />
cd      （回到主目录）<br />
cd ~   （同样也是回到主目录）</p></blockquote>
<p>如果还是不太清楚怎么用，可以到<a href="http://dzh001.blog.51cto.com/2767/40627"  target="_blank">dzh001的博客</a>看详细说明。<a href="http://dzh001.blog.51cto.com/2767/40627"  target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/04/13/cd-command-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>让Thunderbird成为GTD工具</title>
		<link>http://live.haliluya.org/weblog/2008/04/10/thunderbird-gmail-gtd/</link>
		<comments>http://live.haliluya.org/weblog/2008/04/10/thunderbird-gmail-gtd/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 02:14:33 +0000</pubDate>
		<dc:creator>Yang Jing</dc:creator>
		
		<category><![CDATA[Freeware]]></category>

		<category><![CDATA[Web+Bloggin]]></category>

		<category><![CDATA[gmail]]></category>

		<category><![CDATA[GTD]]></category>

		<category><![CDATA[IMAP]]></category>

		<category><![CDATA[Outlook]]></category>

		<category><![CDATA[Thunderbird]]></category>

		<category><![CDATA[教程]]></category>

		<guid isPermaLink="false">http://live.haliluya.org/weblog/?p=352</guid>
		<description><![CDATA[很多人用Outlook来通盘管理邮件、日历、任务列表，如果加上Exchange，的确很强大。不过使用Outlook就意味着你必须使用 Windows系统，必须交钱。有没有跨平台、免费的选项？不用我说，你肯定已... ]]></description>
			<content:encoded><![CDATA[<p>很多人用Outlook来通盘管理邮件、日历、任务列表，如果加上Exchange，的确很强大。不过使用Outlook就意味着你必须使用 Windows系统，必须交钱。有没有跨平台、免费的选项？不用我说，你肯定已经想到了Thunderbird。本文将讲一讲如何用 Thunderbird来作为GTD工具，通盘管理日历、任务列表和计划。</p>
<p>文中的方法大都来自网络，我只是汇总在一起。而且假定你已经了解<a href="http://en.wikipedia.org/wiki/GTD"  target="_blank">GTD（Getting Things Done）</a>指的是什么了。</p>
<p>首先，我们<strong>需要Thunderbird安装程序和几个附加软件，再加上一个Google帐号</strong>。选择Google帐号是因为其电子邮件服务<a href="http://mail.google.coom"  target="_blank">Gmail</a>免费提供了<a href="http://en.wikipedia.org/wiki/IMAP" >IMAP</a>接入，并且其在线日历服务<a href="http://calendar.google.com"  target="_blank">Google Calendar</a>能与Thunderbird同步更新。（这里就不讲如何申请Google帐号了）</p>
<h3>下载Thunderbird及附加软件</h3>
<ul>
<li>Thunderbird在<a href="http://www.mozilla.com/en-US/thunderbird/"  target="_blank">这里下载</a>。（我安装的是2.0.0.12简体中文版）</li>
<li>Thunderbird附加软件<strong>Lighting</strong><a href="http://www.mozilla.org/projects/calendar/lightning/"  target="_blank">下载</a>。Lighting为Thunderbird提供日历功能，目前<a href="http://www.mozilla.org/projects/calendar/releases/lightning0.8.html"  target="_blank">最新版本为0.8</a>，这个版本加入了“任务”功能。</li>
<li>Thunderbird附加软件<strong>Provider for Google Calendar</strong><a href="https://addons.mozilla.org/en-US/sunbird/addon/4631" >下载</a>。这个附加软件使Thunderbird能读写Google Calendar。</li>
</ul>
<p>安装Thunderbird附加软件的方法是：下载附加软件到本地。打开Thunderbird的附加软件窗口（工具&#8211;附加软件），把下载的附加软件拖曳到窗口中就可以安装了。</p>
<h3>在Thunderbird中设置Gmail IMAP帐号</h3>
<p>具体如何在Thunderbird中设置使用Gmail IMAP，请参考Google的<a href="https://mail.google.com/support/bin/answer.py?answer=77662"  target="_blank">官方说明</a>。</p>
<p>接下来让Thunderbird中的“草稿”、“已发送邮件”和“废件箱”均保存在Gmail中，也就是对应保存在Gmail的“Draft”、“Sent”和“Trash”标签下，而不是多出3个“[Gmail]/Draft”、“[Gmail]/Sent”、“[Gmail]/Trash”标签。</p>
<p><strong>草稿-Draft, 已发送邮件-Sent：</strong></p>
<p>在相应的帐号设置中，按下图设置。</p>
<p><img src="http://haliluya.org/gallery/d/3505-1/tbgtd-5.png" alt="" width="500" height="380" /></p>
<p><span id="more-352"></span></p>
<p><strong>废件箱-Trash：</strong></p>
<p>这个复杂一些。进入工具&#8211;首选项&#8211;高级&#8211;配置编辑器，在过滤器中输入<strong>mail.server.server</strong>，在下面显示的字符串中找到Gmail帐号的相关项，比如我的是<strong>mail.server.server3.name</strong>。（见图3）点鼠标右键，新建一个字符串，输入名称<strong>mail.server.server3.trash_folder_name</strong>，值为<strong>[Gmail]/Trash</strong>。重启Thunderbird一下就完了。（见图4）</p>
<p>图1</p>
<p><img src="http://haliluya.org/gallery/d/3501-1/tbgtd-3.png" alt="" width="500" height="214" /></p>
<p>图2</p>
<p><img src="http://haliluya.org/gallery/d/3503-1/tbgtd-4.png" alt="" width="500" height="214" /></p>
<p><strong>注意</strong>：</p>
<p>1. mail.server.server3.name中的数字3对每个用户是不同的，也许是2，也许是1，关键是对应到Gmail帐号就行。</p>
<p>2. 这样设置后，“废件箱”和Gmail里的“Trash”是同步的，其下的邮件30天后会被自动删除。</p>
<p><strong>垃圾邮件-Spam：</strong></p>
<p>垃圾邮件按下图设置</p>
<p><img src="http://haliluya.org/gallery/d/3507-1/tbgtd-6.png" alt="" width="500" height="189" /></p>
<p>via [ <a href="http://lifehacker.com/software/geek-to-live/turn-thunderbird-into-the-ultimate-gmail-imap-client-314574.php"  target="_blank">LifeHack</a> ]</p>
<h3>设置Lighting以访问Google Calendar</h3>
<p>Provider for Google Calendar安装好后，通过下面对Lighting的设置，Thunderbird就可以读写Google Calendar了。</p>
<p>登录到Google Calendar，点击右上角的“Setting”（设置），选中“Calendars”（日历），点击你想同步的日历名称。如图。</p>
<p><img src="http://haliluya.org/gallery/d/3509-1/tbgtd-7.png" alt="" width="500" height="251" /></p>
<p>在当前页面的最下方，点击、复制Pirvate Address条目的下XML Feed地址。</p>
<p><img src="http://haliluya.org/gallery/d/3511-1/tbgtd-8.png" alt="" width="332" height="140" /></p>
<p>回到Thunderbird，点击日历&#8211;新建日历，选中“位于网络”，下一步，选中Google日历，在框内贴上刚才复制的XML Feed地址，然后按提示完成操作。如图。</p>
<p><img src="http://haliluya.org/gallery/d/3515-1/tbgtd-9.png" alt="" width="422" height="177" /></p>
<p>via [ <a href="http://bfish.xaedalus.net/?p=239"  target="_blank">bfish.xaedalus.net</a> ]</p>
<h3>让Thunderbird成为GTD工具</h3>
<p>该设置的都OK了，接下来怎么让Thunderbird作为一个GTD工具呢？其实我也没有太完备的方法，就目前而言，下面的使用方法已经能够满足我的要求了。</p>
<p>现在Thunderbird的主界面已经可以同时显示邮件，日程和任务列表了，算是一目了然吧。</p>
<p>图3</p>
<p><img src="http://haliluya.org/gallery/d/3497-1/tbgtd-2.png" alt="" width="500" height="339" /></p>
<p>日历和任务界面就借用一下官方截图，清楚明了。（点击放大）</p>
<p><a href="http://live.haliluya.org/weblog/wp-content/uploads/2008/04/lightning_calendar_mode_month_view1.png" ><img class="alignnone size-medium wp-image-355" title="lightning_calendar_mode_month_view1" src="http://live.haliluya.org/weblog/wp-content/uploads/2008/04/lightning_calendar_mode_month_view1-300x225.png" alt="" width="300" height="225" /></a></p>
<p><a href="http://live.haliluya.org/weblog/wp-content/uploads/2008/04/lightning_task_mode.png" ><img class="alignnone size-medium wp-image-353" title="lightning_task_mode" src="http://live.haliluya.org/weblog/wp-content/uploads/2008/04/lightning_task_mode-300x225.png" alt="" width="300" height="225" /></a></p>
<p>计划（Project）、备忘录、撰写中的文档（Blog文章）等我都是分别逐一新建为草稿，用邮件标题作为提示。通过前面的设置，草稿箱=Gmail里的Draft，只要有网络（我们还有手机接入），就可以随时访问，又能即时修改。至于Inbox（指GTD系统中的Inbox），我同样是单独建立了一份草稿以记录。但有一点很遗憾，“任务”只能保存在本地，无法“随时随地”访问。想“随时随地”访问，就只能放在草稿中了。</p>
<p>上面就是我目前的方法。</p>
<p>Google最近推出了<a href="http://www.google.com/support/calendar/bin/answer.py?answer=89955"  target="_blank">Google Calendar Sync</a>软件，可以让Outlook和Google Calendar双向同步，这样用Outlook+Gmail IMAP也同样能实现上述的功能。</p>
<p>希望本文为你找到自己的GTD工具提供了一些帮助。</p>
]]></content:encoded>
			<wfw:commentRss>http://live.haliluya.org/weblog/2008/04/10/thunderbird-gmail-gtd/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
