<?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>Leaf Duo</title>
	<atom:link href="http://leafduo.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://leafduo.com/blog</link>
	<description>All About My Life and Information Technology</description>
	<pubDate>Mon, 17 Nov 2008 15:14:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>启程—— NOIP 2008</title>
		<link>http://leafduo.com/blog/44/heading-for-noip2008</link>
		<comments>http://leafduo.com/blog/44/heading-for-noip2008#comments</comments>
		<pubDate>Thu, 13 Nov 2008 13:21:44 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=185</guid>
		<description><![CDATA[23：45 的火车，去烟台， NOIP 2008。
最后的一次 NOIP，努力吧！
God bless all...
]]></description>
			<content:encoded><![CDATA[<p>23：45 的火车，去烟台， NOIP 2008。</p>
<p>最后的一次 NOIP，努力吧！</p>
<p>God bless all...</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/44/heading-for-noip2008/feed</wfw:commentRss>
		</item>
		<item>
		<title>联通推销网络卫士</title>
		<link>http://leafduo.com/blog/29/unicom-weishi</link>
		<comments>http://leafduo.com/blog/29/unicom-weishi#comments</comments>
		<pubDate>Sun, 09 Nov 2008 14:11:29 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=184</guid>
		<description><![CDATA[联通又来了，推销网络卫士。
我打开一个 CSDN 的 blog，出来的却是下面的广告，说访问该网站可能损害您的计算机，这不胡扯吗？纯粹是随机出现的推销网络卫士的广告，还好能取消，于是我马上取消了。

我一不怕病毒，二不怕木马，钓鱼网站还有 Google、Firefox 和 StopBadware.org，推销这个干什么？
]]></description>
			<content:encoded><![CDATA[<p>联通又来了，推销网络卫士。</p>
<p>我打开一个 CSDN 的 blog，出来的却是下面的广告，说访问该网站可能损害您的计算机，这不胡扯吗？纯粹是随机出现的推销网络卫士的广告，还好能取消，于是我马上取消了。</p>
<p><a href="http://picasaweb.google.com/lh/photo/NcGpxiqnJTeOHfmUl-F_yw"><img src="http://lh6.ggpht.com/_7Y_7M0vQVWs/SRbt38IMPZI/AAAAAAAAA_E/tIui_ocITLI/s400/Screenshot.png" /></a></p>
<p>我一不怕病毒，二不怕木马，钓鱼网站还有 Google、Firefox 和 StopBadware.org，推销这个干什么？</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/29/unicom-weishi/feed</wfw:commentRss>
		</item>
		<item>
		<title>[OI][Vijos 1107]环游大同 80 天</title>
		<link>http://leafduo.com/blog/23/oi-vijos-1107</link>
		<comments>http://leafduo.com/blog/23/oi-vijos-1107#comments</comments>
		<pubDate>Sun, 26 Oct 2008 10:51:23 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

		<category><![CDATA[C++]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=180</guid>
		<description><![CDATA[话说这题是一个搜索题。
我采用的是两次 DFS 的方法，也就是任意取一个点开始 DFS，找到这次 DFS 时深度最深的点（也就是从所选点开始最长路径的终点），然后从这一点（可以证明，这一点是最长路径的端点）开始再进行 DFS，这次 DFS 的深度就是要求的路径长度。
算法就是这样了，不过这个算法的正确性我一开始也不太确定，下面来证明一下：
大家看图：

设最长路径为 AB ，一开始任选的点为 P。取路径 PB 上的一点 Q，使得 AQ 与 PQ 只有一个公共点 Q（也就是使得从 A 走到 Q 再走到 B 不会走回头路）。设 AQ=a，QB=b，QP=s，不妨设 a&#60;b。
要证明这个算法的正确性，也就是要证明从 P 开始的最长路径的终点一定是 A 或 B。假设从 P 开始的最长路径的终点是 C ，设 CP=c。
由假设知， c&#62;s+b。由于从从 P 开始的最长路径的终点是 C，所以第二次 DFS 将从 C 开始，所得最长路径为 CB=c+s+b&#62;s+b+s+b，又因为 a&#60;b，故CB&#62;s+b+s+b&#62;s+a+s+b&#62;a+b=AB，这与 AB 是最长路径矛盾，故假设不成立，命题得证。
时间复杂度 O(CR)，空间复杂度 O(CR)。
代码还是非常 ugly，偷了很多懒，改一下的话应该能更快些。
P.S. 停止切题，准备期中考试。（其实这个星期就没做题）
]]></description>
			<content:encoded><![CDATA[<p>话说<a href="http://www.vijos.cn/Problem_Show.asp?id=1107">这题</a>是一个搜索题。</p>
<p>我采用的是两次 DFS 的方法，也就是任意取一个点开始 DFS，找到这次 DFS 时深度最深的点（也就是从所选点开始最长路径的终点），然后从这一点（可以证明，这一点是最长路径的端点）开始再进行 DFS，这次 DFS 的深度就是要求的路径长度。</p>
<p>算法就是这样了，不过这个算法的正确性我一开始也不太确定，下面来证明一下：</p>
<p>大家看图：</p>
<p><a href="http://picasaweb.google.com/lh/photo/NY1Jnu3cWVKA0BvUyw-Y9w"><img src="http://lh6.ggpht.com/LeafDuo/SQCcU72qGHI/AAAAAAAAA-Q/3RzwOtKTupU/s400/1107.png" /></a></p>
<p>设最长路径为 AB ，一开始任选的点为 P。取路径 PB 上的一点 Q，使得 AQ 与 PQ 只有一个公共点 Q（也就是使得从 A 走到 Q 再走到 B 不会走回头路）。设 AQ=a，QB=b，QP=s，不妨设 a&lt;b。</p>
<p>要证明这个算法的正确性，也就是要证明从 P 开始的最长路径的终点一定是 A 或 B。假设从 P 开始的最长路径的终点是 C ，设 CP=c。</p>
<p>由假设知， c&gt;s+b。由于从从 P 开始的最长路径的终点是 C，所以第二次 DFS 将从 C 开始，所得最长路径为 CB=c+s+b&gt;s+b+s+b，又因为 a&lt;b，故CB&gt;s+b+s+b&gt;s+a+s+b&gt;a+b=AB，这与 AB 是最长路径矛盾，故假设不成立，命题得证。</p>
<p>时间复杂度 O(CR)，空间复杂度 O(CR)。</p>
<p><a href="http://github.com/leafduo/vijos/tree/master/1107/1107.cpp">代码</a>还是非常 ugly，偷了很多懒，改一下的话应该能更快些。</p>
<p>P.S. 停止切题，准备期中考试。（其实这个星期就没做题）</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/23/oi-vijos-1107/feed</wfw:commentRss>
		</item>
		<item>
		<title>网通走了，来了个流氓</title>
		<link>http://leafduo.com/blog/35/china-unicom</link>
		<comments>http://leafduo.com/blog/35/china-unicom#comments</comments>
		<pubDate>Sun, 26 Oct 2008 10:16:35 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=183</guid>
		<description><![CDATA[网通静静地走了，来了个叫联通的。
上图：

代码是这个样子的：

&#60;html&#62;&#60;head&#62;&#60;!--title&#62;... 信息推送，请等候 8 秒，或按刷新键继续 ...&#60;/title--&#62;&#60;/head&#62;&#60;script language=JScript&#62;&#60;!-- function killErrors(){return true;} window.onerror = killErrors; --&#62;&#60;/script&#62;&#60;frameset rows=*&#62;&#60;frame src=http://ent.sdinfo.net/ent/08zhuanti/081016jingjujie/index.shtml noresize&#62;&#60;/frameset&#62;&#60;/html&#62;

嵌了 http://ent.sdinfo.net/ent/08zhuanti/081016jingjujie/index.shtml 这个网页，内容可以自己去看，最下面明确写着“中国联合网络通信有限公司山东省分公司 版权所有“。（旁边还有网 警的链接，不知道这个能举报不？）
每次开机第一个页面都是这个，你说烦不烦？
怀念网通。
]]></description>
			<content:encoded><![CDATA[<p>网通静静地走了，来了个叫联通的。</p>
<p>上图：</p>
<p><a href="http://picasaweb.google.com/lh/photo/kWjRGpyI6EaJF_q6Of76hw"><img src="http://lh3.ggpht.com/LeafDuo/SQRBSVkZr8I/AAAAAAAAA-c/zNXHqg-z1dg/s400/Screenshot.png" /></a></p>
<p>代码是这个样子的：</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--title&gt;... 信息推送，请等候 8 秒，或按刷新键继续 ...&lt;/title--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">head</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span>JScript&gt;</span><span style="color: #808080; font-style: italic;">&lt;!-- function killErrors(){return true;} window.onerror = killErrors; --&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">frameset</span> <span style="color: #000066;">rows</span><span style="color: #66cc66;">=</span>*&gt;&lt;<span style="color: #000000; font-weight: bold;">frame</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span>http:<span style="color: #66cc66;">//</span>ent.sdinfo.net<span style="color: #66cc66;">/</span>ent<span style="color: #66cc66;">/</span>08zhuanti<span style="color: #66cc66;">/</span>081016jingjujie<span style="color: #66cc66;">/</span>index.shtml noresize&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">frameset</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></pre></div></div>

<p>嵌了 http://ent.sdinfo.net/ent/08zhuanti/081016jingjujie/index.shtml 这个网页，内容可以自己去看，最下面明确写着“中国联合网络通信有限公司山东省分公司 版权所有“。（旁边还有网 警的链接，不知道这个能举报不？）</p>
<p>每次开机第一个页面都是这个，你说烦不烦？</p>
<p>怀念网通。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/35/china-unicom/feed</wfw:commentRss>
		</item>
		<item>
		<title>[OI][Vijos 1214]伤心的AsukaNoKaze</title>
		<link>http://leafduo.com/blog/48/oi-vijos-1214</link>
		<comments>http://leafduo.com/blog/48/oi-vijos-1214#comments</comments>
		<pubDate>Sun, 19 Oct 2008 14:17:48 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

		<category><![CDATA[C++]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=178</guid>
		<description><![CDATA[这题算是个数论题。
其实也没用到什么数论结论，首先手算找找规律。发现，对于  有  为常数，于是这一区间内的数就可以只算一次，然后将结果乘以区间内整数的个数就行了。但当时，每个区间的长度，这样就得不偿失了，所以当时每个区间处理一次，当时，进行朴素的计算。
div 运算就这样解决了，剩下的取余可以由整除的结果生成，对于，有，每个区间内，为定值，所以令，则对于区间，有。同样地，当时，进行朴素的计算。
时间复杂度 ，空间复杂度 O(1)。
算法就是这样了，刚开始写的时候 TLE 了，原因是作为循环条件的 sqrt(n) 没有提前计算出来，于是导致了很多不必要的运算，多么低级的错误……
C++ 代码在这里。
P.S. 突然想做编号是大家生日的题目，这题编号是我一个朋友的生日，自己的生日编号的题目的状态是暂不提供……
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vijos.cn/Problem_Show.asp?id=1214">这题</a>算是个数论题。</p>
<p>其实也没用到什么数论结论，首先手算找找规律。发现，对于 <img src='/blog/latexrender/pictures/3b76308ef2690611761fd469699d22f5.gif' title='\forall x\in (\frac{n}{i+1},\frac{n}{i+1}],x\in {\mathbb Z}' alt='\forall x\in (\frac{n}{i+1},\frac{n}{i+1}],x\in {\mathbb Z}' align=absmiddle> 有 <img src='/blog/latexrender/pictures/34d85500c72017470922731f33d8e5ff.gif' title='n ~{\mathtt div}~ x' alt='n ~{\mathtt div}~ x' align=absmiddle> 为常数<img src='/blog/latexrender/pictures/6f409906c2a29da07030a8cb6b0b76e0.gif' title='i - 1' alt='i - 1' align=absmiddle>，于是这一区间内的数就可以只算一次，然后将结果乘以区间内整数的个数就行了。但当<img src='/blog/latexrender/pictures/aa556cb2928afb1bdcac675a783a57b0.gif' title='i&gt;\sqrt{n}' alt='i&gt;\sqrt{n}' align=absmiddle>时，每个区间的长度<img src='/blog/latexrender/pictures/68da22ee5c5301fdc762827f39c12dca.gif' title='\frac{n}{i}-\frac{n}{i-1}&lt;1' alt='\frac{n}{i}-\frac{n}{i-1}&lt;1' align=absmiddle>，这样就得不偿失了，所以当<img src='/blog/latexrender/pictures/aba213c71ceedfddc89d625511cd340e.gif' title='i&lt;=\sqrt{n}' alt='i&lt;=\sqrt{n}' align=absmiddle>时每个区间处理一次，当<img src='/blog/latexrender/pictures/aa556cb2928afb1bdcac675a783a57b0.gif' title='i&gt;\sqrt{n}' alt='i&gt;\sqrt{n}' align=absmiddle>时，进行朴素的计算。</p>
<p>div 运算就这样解决了，剩下的取余可以由整除的结果生成，对于<img src='/blog/latexrender/pictures/8f3d8d4ae08df382e9e025412fce837a.gif' title='\forall x\in {\mathbb Z}' alt='\forall x\in {\mathbb Z}' align=absmiddle>，有<img src='/blog/latexrender/pictures/b332570aef5d3fe5ab3b2b4c3ba0677f.gif' title='n ~{\mathtt mod}~ i = n - i(n ~{\mathtt div}~ i)' alt='n ~{\mathtt mod}~ i = n - i(n ~{\mathtt div}~ i)' align=absmiddle>，每个区间内，<img src='/blog/latexrender/pictures/0ff9ad55c4c61accf172b5a1d1e6a6b1.gif' title='n ~{\mathtt div}~ i' alt='n ~{\mathtt div}~ i' align=absmiddle>为定值，所以令<img src='/blog/latexrender/pictures/5a55b8b9c7e82706c93b3042cacc0da9.gif' title='first=\frac{n}{i+1},last=\frac{n}{i},k=n ~{\mathtt div}~ i=i-1' alt='first=\frac{n}{i+1},last=\frac{n}{i},k=n ~{\mathtt div}~ i=i-1' align=absmiddle>，则对于区间<img src='/blog/latexrender/pictures/62645c69df507cb4d61eb94266172dd0.gif' title='(first,last]' alt='(first,last]' align=absmiddle>，有<img src='/blog/latexrender/pictures/6a7324222d340032ea2c90c6339dd0e8.gif' title='\sum\limits_{i=first}^{last}{n ~{\mathtt mod}~ i}' alt='\sum\limits_{i=first}^{last}{n ~{\mathtt mod}~ i}' align=absmiddle><img src='/blog/latexrender/pictures/186f5ead844c0e8835559dd7cd95e2d6.gif' title='=\sum\limits_{i=first}^{last}{n- i(n ~{\mathtt div}~ i)}' alt='=\sum\limits_{i=first}^{last}{n- i(n ~{\mathtt div}~ i)}' align=absmiddle><img src='/blog/latexrender/pictures/74a7ecf7e8c30d18f7ca79a9bd023835.gif' title='=\sum\limits_{i=first}^{last}{n-i\cdot{}k}' alt='=\sum\limits_{i=first}^{last}{n-i\cdot{}k}' align=absmiddle><img src='/blog/latexrender/pictures/f6d2c42a79d09756498fb784654ec956.gif' title='=n\cdot{}(last-first)-k\sum\limits_{i=first}^{last}{i}' alt='=n\cdot{}(last-first)-k\sum\limits_{i=first}^{last}{i}' align=absmiddle><img src='/blog/latexrender/pictures/e079f33030c5c3b9b50efd706edf9b0d.gif' title='=n\cdot{}(last-first)-k\frac{\cdot{}(first+1+last)(last-first)}{2}' alt='=n\cdot{}(last-first)-k\frac{\cdot{}(first+1+last)(last-first)}{2}' align=absmiddle><img src='/blog/latexrender/pictures/c5e57a9451f73ce608036a58528889f4.gif' title='=n\cdot{}(last-first)-\frac{(first+1+last)(last-first)(i-1)}{2}' alt='=n\cdot{}(last-first)-\frac{(first+1+last)(last-first)(i-1)}{2}' align=absmiddle>。同样地，当<img src='/blog/latexrender/pictures/aa556cb2928afb1bdcac675a783a57b0.gif' title='i&gt;\sqrt{n}' alt='i&gt;\sqrt{n}' align=absmiddle>时，进行朴素的计算。</p>
<p>时间复杂度 <img src='/blog/latexrender/pictures/f0cec2c61cfb093e31e962bc7de4dd55.gif' title='O(\sqrt{n})' alt='O(\sqrt{n})' align=absmiddle>，空间复杂度 O(1)。</p>
<p>算法就是这样了，刚开始写的时候 TLE 了，原因是作为循环条件的 sqrt(n) 没有提前计算出来，于是导致了很多不必要的运算，多么低级的错误……</p>
<p>C++ 代码在<a href="http://github.com/leafduo/vijos/tree/master/1214/1214.cpp">这里</a>。</p>
<p>P.S. 突然想做编号是大家生日的题目，这题编号是我一个朋友的生日，自己的生日编号的题目的状态是暂不提供……</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/48/oi-vijos-1214/feed</wfw:commentRss>
		</item>
		<item>
		<title>[OI][Vijos 1059]积木城堡</title>
		<link>http://leafduo.com/blog/46/oi-vijos-1059</link>
		<comments>http://leafduo.com/blog/46/oi-vijos-1059#comments</comments>
		<pubDate>Thu, 16 Oct 2008 14:03:46 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

		<category><![CDATA[C++]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=177</guid>
		<description><![CDATA[一年没写代码了，这周又开始拿起我那二把刀，开始切题了……
看到我们的小妹妹写了积木城堡这个题，于是我也从这题开始了……
简单的 0/1 背包，渐进时间复杂度（大概）是 O(N*n*n)，渐进空间复杂度（大概）是 O(N*n*n)，其中 N 为城堡数量， n 为组成每个城堡的积木数。
这题有着 Vijos 的一贯传统，就是题目描述令人 confused，就这题来说，从中间抽取积木还能使城堡不倒，不得不说是有一定功力，抽出的积木就扔在一边，不能不说是浪费。其实这都可以在题目中说清楚的。
开始做，一开始用了 bitset （在 NOIP 中允许使用），结果 TLE ；后来优化了读入，还是 TLE，后来砍掉了 bitset ，用 boolean array，提交无数次后（Vijos 最近服务器有问题，运行程序忽快忽慢，随机 TLE 的现象时有发生），终于 AC 了。
代码可以看这里，其他 vijos 的代码也在那里。
事实证明， bitset 的效率并不高，竞赛的时候应远离 bitset …… （这也可能跟 Vijos 所用编译器的实现有关）
]]></description>
			<content:encoded><![CDATA[<p>一年没写代码了，这周又开始拿起我那二把刀，开始切题了……</p>
<p>看到我们的<a href="http://hi.baidu.com/xiangruyimo/blog/item/e14940345b96e648251f149d.html">小妹妹</a>写了<a href="http://www.vijos.cn/Problem_Show.asp?id=1059">积木城堡</a>这个题，于是我也从这题开始了……</p>
<p>简单的 0/1 背包，渐进时间复杂度（大概）是 O(N*n*n)，渐进空间复杂度（大概）是 O(N*n*n)，其中 N 为城堡数量， n 为组成每个城堡的积木数。</p>
<p>这题有着 Vijos 的一贯传统，就是题目描述令人 confused，就这题来说，从中间抽取积木还能使城堡不倒，不得不说是有一定功力，抽出的积木就扔在一边，不能不说是浪费。其实这都可以在题目中说清楚的。</p>
<p>开始做，一开始用了 bitset （在 NOIP 中允许使用），结果 TLE ；后来优化了读入，还是 TLE，后来砍掉了 bitset ，用 boolean array，提交无数次后（Vijos 最近服务器有问题，运行程序忽快忽慢，随机 TLE 的现象时有发生），终于 AC 了。</p>
<p>代码可以看<a href="http://github.com/leafduo/vijos/tree/master/1059/1059.cpp">这里</a>，其他 vijos 的代码也在那里。</p>
<p>事实证明， bitset 的效率并不高，竞赛的时候应远离 bitset …… （这也可能跟 Vijos 所用编译器的实现有关）</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/46/oi-vijos-1059/feed</wfw:commentRss>
		</item>
		<item>
		<title>记得加载模块</title>
		<link>http://leafduo.com/blog/08/remember-to-load-modules</link>
		<comments>http://leafduo.com/blog/08/remember-to-load-modules#comments</comments>
		<pubDate>Wed, 08 Oct 2008 15:44:08 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=176</guid>
		<description><![CDATA[为了启动的时候能更快一点，我把要加载的模块直接写进了 /etc/rc.conf （方法看这里），启动确实快了。不过有的时候还是有些郁闷……
很少用 USB flash drive，偶尔用，郁闷了，怎么看也没这个设备，只有两块硬盘，很久之后发现没加载模块，于是加载之：

1
modprobe usb-storage

又过了很长时间，用到打印机。很少打印东西，而且这个打印机比较难搞，所以导致我每次用打印机都心惊肉跳……这回直接找不到打印机了，良久之后，发现应该加载一个模块……

1
modprobe usblp

唉……
注意下，如果你用 2.4 内核的话，应该加载 printer 这个模块，详细的可以看 ArchWiki 的说明。
启动是快了，可是要记得加载模块啊……
提醒下自己，下次别忘了。
]]></description>
			<content:encoded><![CDATA[<p>为了启动的时候能更快一点，我把要加载的模块直接写进了 /etc/rc.conf （方法看<a href="http://liangzhdp.blogspot.com/2008/04/modules-udev.html">这里</a>），启动确实快了。不过有的时候还是有些郁闷……</p>
<p>很少用 USB flash drive，偶尔用，郁闷了，怎么看也没这个设备，只有两块硬盘，很久之后发现没加载模块，于是加载之：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash bash" style="font-family:monospace;">modprobe usb-storage</pre></td></tr></table></div>

<p>又过了很长时间，用到打印机。很少打印东西，而且这个打印机比较难搞，所以导致我每次用打印机都心惊肉跳……这回直接找不到打印机了，良久之后，发现应该加载一个模块……</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash bash" style="font-family:monospace;">modprobe usblp</pre></td></tr></table></div>

<p>唉……</p>
<p>注意下，如果你用 2.4 内核的话，应该加载 printer 这个模块，详细的可以看 <a href="http://wiki.archlinux.org/index.php/Cups#Kernel_Modules">ArchWiki 的说明</a>。</p>
<p>启动是快了，可是要记得加载模块啊……</p>
<p>提醒下自己，下次别忘了。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/08/remember-to-load-modules/feed</wfw:commentRss>
		</item>
		<item>
		<title>试用 ibus</title>
		<link>http://leafduo.com/blog/56/test-ibus</link>
		<comments>http://leafduo.com/blog/56/test-ibus#comments</comments>
		<pubDate>Sun, 31 Aug 2008 03:56:56 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=175</guid>
		<description><![CDATA[关于 ibus 的新闻已经不少了，鉴于我也忍不了 SCIM 和 fcitx 了，所以准备投靠 ibus 。这次是在 Archlinux 上安装的，先写 PKGBUILD  ，装好之后没有引擎……晕菜……
然后扔掉包直接装， OK 了，最后改了一下 PKGBUILD ，也 OK 了。
PKGBUILD  仅仅是到了能用的程度。
用了一下，感觉起码比 SCIM 和 fcitx 都要漂亮，至于 bug ，我就打了这么几个字，还没找出什么来，看起来不错。
这个是 ibus-git 的 PKGBUILD

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Contributor: leafduo&#60;leafduo@gmail.com&#62;
&#160;
pkgname=ibus-git
pkgver=git
pkgrel=1
pkgdesc=&#34;a next generation input framework.&#34;
arch=&#40;'i686' 'x86_64'&#41;
license=&#40;'GPL'&#41;
depends=&#40;'python' 'dbus-python&#62;=0.83.0' 'automake' 'autoconf'&#41;
makedepends=&#40;'git'&#41;
url=&#34;http://code.google.com/p/ibus/&#34;
source=&#40;&#41;
md5sum=&#40;&#41;
install=ibus.install
&#160;
build&#40;&#41; &#123;
    cd $startdir/src
    git clone git://github.com/phuang/ibus.git ibus
   [...]]]></description>
			<content:encoded><![CDATA[<p>关于 <a href="http://code.google.com/p/ibus/">ibus</a> 的新闻已经不少了，鉴于我也忍不了 SCIM 和 fcitx 了，所以准备投靠 ibus 。这次是在 Archlinux 上安装的，先写 PKGBUILD  ，装好之后没有引擎……晕菜……</p>
<p>然后扔掉包直接装， OK 了，最后改了一下 PKGBUILD ，也 OK 了。</p>
<p>PKGBUILD  仅仅是到了能用的程度。</p>
<p>用了一下，感觉起码比 SCIM 和 fcitx 都要漂亮，至于 bug ，我就打了这么几个字，还没找出什么来，看起来不错。</p>
<p>这个是 ibus-git 的 PKGBUILD</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="bash bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Contributor: leafduo&lt;leafduo@gmail.com&gt;</span>
&nbsp;
<span style="color: #007800;">pkgname</span>=ibus-git
<span style="color: #007800;">pkgver</span>=git
<span style="color: #007800;">pkgrel</span>=<span style="color: #000000;">1</span>
<span style="color: #007800;">pkgdesc</span>=<span style="color: #ff0000;">&quot;a next generation input framework.&quot;</span>
<span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">arch</span></span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'i686'</span> <span style="color: #ff0000;">'x86_64'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">license</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'GPL'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">depends</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'python'</span> <span style="color: #ff0000;">'dbus-python&gt;=0.83.0'</span> <span style="color: #ff0000;">'automake'</span> <span style="color: #ff0000;">'autoconf'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">makedepends</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'git'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">url</span>=<span style="color: #ff0000;">&quot;http://code.google.com/p/ibus/&quot;</span>
<span style="color: #007800;"><span style="color: #7a0874; font-weight: bold;">source</span></span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">md5sum</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">install</span></span>=ibus.install
&nbsp;
build<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$startdir</span><span style="color: #000000; font-weight: bold;">/</span>src
    git clone git:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>phuang<span style="color: #000000; font-weight: bold;">/</span>ibus.git ibus
    <span style="color: #7a0874; font-weight: bold;">cd</span> ibus
    .<span style="color: #000000; font-weight: bold;">/</span>autogen.sh --<span style="color: #007800;">prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr
    <span style="color: #c20cb9; font-weight: bold;">make</span> || <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
    <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #007800;">DESTDIR</span>=<span style="color: #007800;">$pkgdir</span> <span style="color: #c20cb9; font-weight: bold;">install</span> || <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<p>对应的 ibus.install</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="bash bash" style="font-family:monospace;">post_install<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gtk-query-immodules-<span style="color: #000000;">2.0</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>gtk-<span style="color: #000000;">2.0</span><span style="color: #000000; font-weight: bold;">/</span>gtk.immodules
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
post_upgrade<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gtk-query-immodules-<span style="color: #000000;">2.0</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>gtk-<span style="color: #000000;">2.0</span><span style="color: #000000; font-weight: bold;">/</span>gtk.immodules
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
post_remove<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gtk-query-immodules-<span style="color: #000000;">2.0</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>gtk-<span style="color: #000000;">2.0</span><span style="color: #000000; font-weight: bold;">/</span>gtk.immodules
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<p>ibus-pinyin-git 的 PKGBUILD</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="bash bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Contributor: leafduo&lt;leafduo@gmail.com&gt;</span>
&nbsp;
<span style="color: #007800;">pkgname</span>=ibus-pinyin-git
<span style="color: #007800;">pkgver</span>=git
<span style="color: #007800;">pkgrel</span>=<span style="color: #000000;">1</span>
<span style="color: #007800;">pkgdesc</span>=<span style="color: #ff0000;">&quot;pinyin input method for ibus&quot;</span>
<span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">arch</span></span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'i686'</span> <span style="color: #ff0000;">'x86_64'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">license</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'GPL'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">depends</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'python'</span> <span style="color: #ff0000;">'dbus-python&gt;=0.83.0'</span> <span style="color: #ff0000;">'automake'</span> <span style="color: #ff0000;">'autoconf'</span> <span style="color: #ff0000;">'ibus-git'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">makedepends</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'git'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">url</span>=<span style="color: #ff0000;">&quot;http://code.google.com/p/ibus/&quot;</span>
<span style="color: #007800;"><span style="color: #7a0874; font-weight: bold;">source</span></span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">md5sum</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
build<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$startdir</span><span style="color: #000000; font-weight: bold;">/</span>src
    git clone git:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>phuang<span style="color: #000000; font-weight: bold;">/</span>ibus-pinyin.git ibus-pinyin
    <span style="color: #7a0874; font-weight: bold;">cd</span> ibus-pinyin
    .<span style="color: #000000; font-weight: bold;">/</span>autogen.sh --<span style="color: #007800;">prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr
    <span style="color: #c20cb9; font-weight: bold;">make</span> || <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
    <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #007800;">DESTDIR</span>=<span style="color: #007800;">$pkgdir</span> <span style="color: #c20cb9; font-weight: bold;">install</span> || <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<p>当然，你可以在<a href="http://code.google.com/p/mypkgbuild/">这里</a>找到我所有的 PKGBUILD。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/56/test-ibus/feed</wfw:commentRss>
		</item>
		<item>
		<title>学习 LaTeX &#038; 二项式定理的证明</title>
		<link>http://leafduo.com/blog/51/learning-latex</link>
		<comments>http://leafduo.com/blog/51/learning-latex#comments</comments>
		<pubDate>Tue, 19 Aug 2008 15:05:51 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=174</guid>
		<description><![CDATA[小小学习了一下 LaTeX ，于是找个东西小试牛刀，来证明一下二项式定理吧，用数学归纳法证明的。
具体的大家看下面的附件吧：
二项式定理的证明
TeX 源文件
同样，还是请大家提提意见，拍拍砖，非常感谢。
P.S. 这里有我收集的一些关于 LaTeX 的资料。
]]></description>
			<content:encoded><![CDATA[<p>小小学习了一下 <a href="http://www.google.com/search?q=LaTeX">LaTeX</a> ，于是找个东西小试牛刀，来证明一下二项式定理吧，用数学归纳法证明的。</p>
<p>具体的大家看下面的附件吧：</p>
<p><a href='http://leafduo.com/blog/wp-content/uploads/2008/08/binomial_theorem.pdf'>二项式定理的证明</a></p>
<p><a href="http://leafduo.com/blog/wp-content/uploads/2008/08/binomial_theorem.tex">TeX 源文件</a></p>
<p>同样，还是请大家提提意见，拍拍砖，非常感谢。</p>
<p>P.S. <a href="http://delicious.com/LeafDuo/LaTeX">这里</a>有我收集的一些关于 LaTeX 的资料。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/51/learning-latex/feed</wfw:commentRss>
		</item>
		<item>
		<title>往北边跑了一趟</title>
		<link>http://leafduo.com/blog/54/travel-to-beijing-and-chengde</link>
		<comments>http://leafduo.com/blog/54/travel-to-beijing-and-chengde#comments</comments>
		<pubDate>Sun, 17 Aug 2008 15:05:54 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[life]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=170</guid>
		<description><![CDATA[家长放假，非得出去玩，于是去了……
7号下午到的北京，三个多小时的动车还不错，不过北京南站实在是太绕了，在里面怎么也出不来啊……北京南站其实还没修好，好多东西还没有……
晚上跑王府井去了，其实也不过是那样，去一次并没有什么，也就是些卖东西的，不过要是住在那边的话还是比较方便。卖什么的都有，书、食品、茶叶、手表 etc. 那个外文书店的中文也不知道是谁写的，让我看成“外交书店”……看到下面的英文才知道，哦，原来是外文书店……那天晚上中国队踢球，踢的怎么样就不说了，不过球迷还真是热情，大屏幕下面围了一堆，每个大屏幕下面还有警车，呵呵。乱七八糟地买了点东西，然后撤退了。
第二天坐火车去承德，这车可真够慢的，花的时间比从济南到北京还长，还过一堆隧道……清朝那些人也不嫌累……
其实那里也热，不过比北京要好些。承德的出租貌似都很少开空调。街面上有点乱，不过宾馆饭店之类的还挺好。
下午去避暑山庄，皇帝办公和住的地方跟故宫差不了多少，布局基本上是一样的，当然面积貌似要小些。这里有承认《中俄瑷珲条约》、签订《北京条约》的地方……
后面山区里还有大片的林子，不容易啊。里面还有鹿，据说是野鹿，还不少呢。之后去划船，然后就走了。
清朝的皇帝真能享受，挑这么个有山有水的地方，奢侈啊……
吃饭，看奥运会开幕式，我觉得演出还不错，不过点火没什么意思，要是原先设计的凤凰点火的话，我觉得还不错。这次开幕式的技术实在是 awesome ，大家可以了解一下。
另外，我们可爱的 Windows 又不负众望地蓝屏了（李宁手持火炬飞越蓝屏！），真的是非常成功。这次用的操作系统是 Windows XP embedded ，硬件支持是联想，是谁的问题啊？
承德这地方，避暑山庄比市区大得多……所以，第三天也就没什么地方了，也就是有个外八庙。
对宗教没什么兴趣，就是去看看。先去的普宁寺（大佛寺），那个佛据说是同类中最大的。然后去普陀宗乘之庙（布达拉宫），就是台阶多，累人。
下午坐火车走人，在北京转车回济南，到济南快十一点了……
下次去的时候看看 Apple Store &#038; BUAA 。
最后，上照片：

]]></description>
			<content:encoded><![CDATA[<p>家长放假，非得出去玩，于是去了……</p>
<p>7号下午到的北京，三个多小时的动车还不错，不过北京南站实在是太绕了，在里面怎么也出不来啊……北京南站其实还没修好，好多东西还没有……</p>
<p>晚上跑王府井去了，其实也不过是那样，去一次并没有什么，也就是些卖东西的，不过要是住在那边的话还是比较方便。卖什么的都有，书、食品、茶叶、手表 etc. 那个外文书店的中文也不知道是谁写的，让我看成“外交书店”……看到下面的英文才知道，哦，原来是外文书店……那天晚上中国队踢球，踢的怎么样就不说了，不过球迷还真是热情，大屏幕下面围了一堆，每个大屏幕下面还有警车，呵呵。乱七八糟地买了点东西，然后撤退了。</p>
<p>第二天坐火车去承德，这车可真够慢的，花的时间比从济南到北京还长，还过一堆隧道……清朝那些人也不嫌累……</p>
<p>其实那里也热，不过比北京要好些。承德的出租貌似都很少开空调。街面上有点乱，不过宾馆饭店之类的还挺好。</p>
<p>下午去避暑山庄，皇帝办公和住的地方跟故宫差不了多少，布局基本上是一样的，当然面积貌似要小些。这里有承认《中俄瑷珲条约》、签订《北京条约》的地方……</p>
<p>后面山区里还有大片的林子，不容易啊。里面还有鹿，据说是野鹿，还不少呢。之后去划船，然后就走了。</p>
<p>清朝的皇帝真能享受，挑这么个有山有水的地方，奢侈啊……</p>
<p>吃饭，看奥运会开幕式，我觉得演出还不错，不过点火没什么意思，要是原先设计的凤凰点火的话，我觉得还不错。这次开幕式的技术实在是 awesome ，大家可以<a href="http://songshuhui.net/archives/867.html">了解一下</a>。</p>
<p>另外，<a href="http://gizmodo.com/5035456/blue-screen-of-death-strikes-birds-nest-during-opening-ceremonies-torch-lighting">我们可爱的 Windows 又不负众望地蓝屏了</a>（<a href="http://cache.gizmodo.com/assets/images/gizmodo/2008/08/bsod_nest_main2.jpg">李宁手持火炬飞越蓝屏！</a>），真的是非常成功。这次用的操作系统是 Windows XP embedded ，硬件支持是联想，是谁的问题啊？</p>
<p>承德这地方，避暑山庄比市区大得多……所以，第三天也就没什么地方了，也就是有个<a href="http://www.google.com/search?q=%E5%A4%96%E5%85%AB%E5%BA%99">外八庙</a>。</p>
<p>对宗教没什么兴趣，就是去看看。先去的普宁寺（大佛寺），那个佛据说是同类中最大的。然后去普陀宗乘之庙（布达拉宫），就是台阶多，累人。</p>
<p>下午坐火车走人，在北京转车回济南，到济南快十一点了……</p>
<p>下次去的时候看看 Apple Store &#038; BUAA 。</p>
<p>最后，上照片：</p>
<p><embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="600" height="400" flashvars="host=picasaweb.google.com&#038;noautoplay=1&#038;RGB=0x000000&#038;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FLeafDuo%2Falbumid%2F5235494007296388657%3Fkind%3Dphoto%26alt%3Drss" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/54/travel-to-beijing-and-chengde/feed</wfw:commentRss>
		</item>
		<item>
		<title>羽毛球边线、发球区</title>
		<link>http://leafduo.com/blog/40/boundary-service-court-of-badminton</link>
		<comments>http://leafduo.com/blog/40/boundary-service-court-of-badminton#comments</comments>
		<pubDate>Wed, 13 Aug 2008 05:57:40 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[game]]></category>

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=171</guid>
		<description><![CDATA[打羽毛球时间也不短了，很多人告诉我这个问题，很多人的说法也不一样，这不让人郁闷吗？
最郁闷的是，羽毛球规则里貌似没有……这是为什么啊？要不就是我没找到？
在网上查，也有不同的意见，终于，我觉得这种比较靠谱。哪种呢？还是给链接吧：

http://bbs.shanghaitimes.com.cn/viewthread.php?tid=33908

http://zhidao.baidu.com/question/52341111.html

http://www.fgly.cn/bbs/viewthread.php?tid=42363
如果错了，还请会打的同学指教，谢谢。
]]></description>
			<content:encoded><![CDATA[<p>打羽毛球时间也不短了，很多人告诉我这个问题，很多人的说法也不一样，这不让人郁闷吗？</p>
<p>最郁闷的是，羽毛球规则里貌似没有……这是为什么啊？要不就是我没找到？</p>
<p>在网上查，也有不同的意见，终于，我觉得这种比较靠谱。哪种呢？还是给链接吧：</p>
<p><a href=" http://bbs.shanghaitimes.com.cn/viewthread.php?tid=33908"><br />
http://bbs.shanghaitimes.com.cn/viewthread.php?tid=33908</a></p>
<p><a href=" http://zhidao.baidu.com/question/52341111.html"><br />
http://zhidao.baidu.com/question/52341111.html</a></p>
<p><a href=" http://www.fgly.cn/bbs/viewthread.php?tid=42363"><br />
http://www.fgly.cn/bbs/viewthread.php?tid=42363</a></p>
<p>如果错了，还请会打的同学指教，谢谢。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/40/boundary-service-court-of-badminton/feed</wfw:commentRss>
		</item>
		<item>
		<title>离开 Diigo ，重回 delicious</title>
		<link>http://leafduo.com/blog/47/back-to-delicious</link>
		<comments>http://leafduo.com/blog/47/back-to-delicious#comments</comments>
		<pubDate>Sat, 02 Aug 2008 08:02:47 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=169</guid>
		<description><![CDATA[前段时间用了 Diigo ，现在我又回到了 delicious 。
我觉得 Diigo 还有很多发展余地，现在还不太成熟。

tag 的时候没有补齐，不太习惯；
其他一些操作上的不便，也可以说是习惯吧
用户比较少；
由于用户少，推荐 tag 也就不是很好；
也由于用户少， Highlight 也就少，使它的优点不能突出；
有的页面 Highlight 不少，但是变成了聊天，跟页面的内容关系不大；
时常被 GFW；
etc

我觉得有技术上的问题也有推广上的问题， delicious 500万用户也不是闹的。
随着 delicious 改版，我也回到了 delicious ，希望它依旧美味。
不过我还是喜欢原来的 del.icio.us ，而不是现在的域名 delicious.com。
]]></description>
			<content:encoded><![CDATA[<p>前段时间用了 <a href="http://www.diigo.com/">Diigo</a> ，现在我又回到了 delicious 。</p>
<p>我觉得 <a href="http://www.diigo.com/">Diigo</a> 还有很多发展余地，现在还不太成熟。</p>
<ol>
<li>tag 的时候没有补齐，不太习惯；</li>
<li>其他一些操作上的不便，也可以说是习惯吧</li>
<li>用户比较少；</li>
<li>由于用户少，推荐 tag 也就不是很好；</li>
<li>也由于用户少， Highlight 也就少，使它的优点不能突出；</li>
<li>有的页面 Highlight 不少，但是变成了聊天，跟页面的内容关系不大；</li>
<li>时常被 GFW；</li>
<li>etc</li>
</ol>
<p>我觉得有技术上的问题也有推广上的问题， delicious 500万用户也不是闹的。</p>
<p>随着 <a href="http://delicious.com/">delicious</a> 改版，我也回到了 <a href="http://delicious.com/">delicious</a> ，希望它依旧美味。</p>
<p>不过我还是喜欢原来的 <a href="http://del.icio.us/">del.icio.us</a> ，而不是现在的域名 <a href="http://delicious.com/">delicious.com</a>。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/47/back-to-delicious/feed</wfw:commentRss>
		</item>
		<item>
		<title>专心看图</title>
		<link>http://leafduo.com/blog/39/pic</link>
		<comments>http://leafduo.com/blog/39/pic#comments</comments>
		<pubDate>Sat, 02 Aug 2008 07:07:39 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=168</guid>
		<description><![CDATA[
我很费解
我用的是 firefox ，怎么就出来 “Internet Explorer 无法显示该网页 “？
我真得很费解……
查几个 IP：

218.57.242.45 济南网通（估计是 IDC）
60.216.198.180 我的 IP （动态的，大家别乱想了）
163.16.211.23 要访问网站的服务器的 IP
不过我要访问的这个站挂代理也打不开，估计是网站挂了 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.com/LeafDuo/Blog/photo#5229811166332187218"><img src="http://lh6.ggpht.com/LeafDuo/SJQFjAuZ8lI/AAAAAAAAAk8/bOvCz_6orMo/s800/Screenshot.png" alt="Firefox or IE?" /></a></p>
<p>我很费解</p>
<p>我用的是 firefox ，怎么就出来 “Internet Explorer 无法显示该网页 “？</p>
<p>我真得很费解……</p>
<p>查几个 IP：</p>
<blockquote><p>
218.57.242.45 济南网通（估计是 IDC）</p>
<p>60.216.198.180 我的 IP （动态的，大家别乱想了）</p>
<p>163.16.211.23 要访问网站的服务器的 IP</p></blockquote>
<p>不过我要访问的这个站挂代理也打不开，估计是网站挂了 <img src='http://leafduo.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/39/pic/feed</wfw:commentRss>
		</item>
		<item>
		<title>换 theme 了</title>
		<link>http://leafduo.com/blog/26/theme-changed</link>
		<comments>http://leafduo.com/blog/26/theme-changed#comments</comments>
		<pubDate>Fri, 01 Aug 2008 15:27:26 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[blogging]]></category>

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=167</guid>
		<description><![CDATA[换了一个款比较素的 theme ，其实可以算的上十分素了，只有黑白灰。不过我感觉效果还是非常好的。
theme 是在 plaintxt.org 下载的。 License ， readme.html 说是 GPL ， license.txt 说是 LGPL ，不是我的错……
欢迎大家拍砖。
发现任何问题请在下面留言，比如说错位之类的，请附上您使用的浏览器和操作系统的版本，还有您显示器的分辨率，非常感谢！
另：从现在开始评论审核已经开始，请积极评论，并耐心等待评论通过审核，请勿重复评论，谢谢。
]]></description>
			<content:encoded><![CDATA[<p>换了一个款比较素的 theme ，其实可以算的上十分素了，只有黑白灰。不过我感觉效果还是非常好的。</p>
<p><a href="http://www.plaintxt.org/themes/blogtxt/">theme</a> 是在 <a href="http://www.plaintxt.org/">plaintxt.org</a> 下载的。 License ， <a href="http://www.plaintxt.org/wp-content/uploads/blogtxt_readme.html">readme.html</a> 说是 GPL ， license.txt 说是 LGPL ，不是我的错……</p>
<p>欢迎大家拍砖。</p>
<p><strong>发现任何问题请在下面留言</strong>，比如说错位之类的，请附上<strong>您使用的浏览器和操作系统的版本</strong>，还有您<strong>显示器的分辨率</strong>，非常感谢！</p>
<p>另：从现在开始评论审核已经开始，请积极评论，并耐心等待评论通过审核，请勿重复评论，谢谢。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/26/theme-changed/feed</wfw:commentRss>
		</item>
		<item>
		<title>Invisible Ai</title>
		<link>http://leafduo.com/blog/35/invisible-ai</link>
		<comments>http://leafduo.com/blog/35/invisible-ai#comments</comments>
		<pubDate>Fri, 25 Jul 2008 16:49:35 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[life]]></category>

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

		<category><![CDATA[Ai Haibara]]></category>

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=147</guid>
		<description><![CDATA[
http://www.youtube.com/watch?v=dWDeh-rK0qY
前一段时间看到的这个视频吧，这首歌叫 Invisible ，听起来不错，用在这里也比较合适的（歌词上只有一点不太合适），呵呵。
YouTube 上我给了 5 颗星，大家看看吧。
其实小哀非常かわいい，另一种可爱吧，呵呵。
（不过最终柯南还是要跟 Ran 在一起吧。作者回复评论也说："Eh he's most likely going to (end up with Ran). It would shock EVERYONE if he didn't lol"）
我发现我越来越喜欢哀了，呵呵。
祝 Ai 找到自己的幸福。
引一句歌词吧：
And you just see right through me but if you only knew me
We could be a beautiful, miracle, unbelievable
Instead of just invisible
（建议大家到原链接看看评论，也不错。）
最后是歌词全文：
She can't see the way your eyes
Light up [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/dWDeh-rK0qY&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/dWDeh-rK0qY&amp;hl=en"></embed></object></p>
<p><a href="http://www.youtube.com/watch?v=dWDeh-rK0qY">http://www.youtube.com/watch?v=dWDeh-rK0qY</a></p>
<p>前一段时间看到的这个视频吧，这首歌叫 <em>Invisible </em>，听起来不错，用在这里也比较合适的（歌词上只有一点不太合适），呵呵。</p>
<p>YouTube 上我给了 5 颗星，大家看看吧。</p>
<p>其实小哀非常かわいい，另一种可爱吧，呵呵。</p>
<p>（不过最终柯南还是要跟 Ran 在一起吧。作者回复评论也说："Eh he's most likely going to (end up with Ran). It would shock EVERYONE if he didn't lol"）</p>
<p>我发现我越来越喜欢哀了，呵呵。</p>
<p><strong>祝 Ai 找到自己的幸福。</strong></p>
<p>引一句歌词吧：</p>
<blockquote><p>And you just see right through me but if you only knew me<br />
We could be a beautiful, miracle, unbelievable<br />
Instead of just invisible</p></blockquote>
<p>（建议大家到<a href="http://www.youtube.com/watch?v=dWDeh-rK0qY">原链接</a>看看评论，也不错。）</p>
<p>最后是歌词全文：</p>
<pre>She can't see the way your eyes
Light up when you smile
She'll never notice how you stop and stare
Whenever she walks by
And you can't see me wantin' you the way you want her
But you are everything to me

[Chorus:]
And I just wanna show you
She don't even know you
She's never gonna love you like I want to
And you just see right through me but if you only knew me
We could be a beautiful, miracle, unbelievable
Instead of just invisible

There's a fire inside of you
That can't help but shine through
She's never gonna see the light
No matter what you do
And all I think about is how to make you think of me
And everything that we could be

[Chorus:]
And I just wanna show you
She don't even know you
She's never gonna love you like I want to
And you just see right through me but if you only knew me
We could be a beautiful, miracle, unbelievable
Instead of just invisible

Like shadows in a faded light
Oh we're invisible
I just wanna open your eyes
And make you realize

[Chorus:]
I just wanna show you
She don't even know you
Baby let me love you let me want you
You just see right through me
But if you only knew me
We could be a beautiful, miracle, unbelievable
Instead of just invisible

(Oh ho...yea)

She can't see the way your eyes
Light up when you smile</pre>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/35/invisible-ai/feed</wfw:commentRss>
		</item>
		<item>
		<title>为什么牛顿第一定律不是第二定律的特例</title>
		<link>http://leafduo.com/blog/03/why-newtons-first-law-is-not-a-special-case-of-the-second-law</link>
		<comments>http://leafduo.com/blog/03/why-newtons-first-law-is-not-a-special-case-of-the-second-law#comments</comments>
		<pubDate>Sun, 20 Jul 2008 16:38:03 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[science]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=162</guid>
		<description><![CDATA[做物理作业，看到这样一句话，说：牛顿第一定律是独立的一条定律，绝不能简单地看成牛顿第二定律的特例。于是，我就不理解了，再于是， Google 之，找到一些，但是不太清楚， 于是 Wikipedia ，在英文版找到了答案： http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#Newton.27s_first_law:_law_of_inertia
Every body perseveres in its state of being at rest or of moving uniformly straight forward, except insofar as it is compelled to change its state by force impressed.[8]
This law is also called the law of inertia.
This is often paraphrased as "zero net force implies zero acceleration", but this [...]]]></description>
			<content:encoded><![CDATA[<p>做物理作业，看到这样一句话，说：牛顿第一定律是独立的一条定律，绝不能简单地看成牛顿第二定律的特例。于是，我就不理解了，再于是， Google 之，找到一些，但是不太清楚， 于是 Wikipedia ，在英文版找到了答案： <a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#Newton.27s_first_law:_law_of_inertia">http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#Newton.27s_first_law:_law_of_inertia</a></p>
<blockquote><p><strong>Every body perseveres in its state of being at rest or of moving uniformly straight forward, except insofar as it is compelled to change its state by force impressed.</strong><sup id="cite_ref-7" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-7">[8]</a></sup></p>
<p>This law is also called the <strong>law of <a title="Inertia" href="http://en.wikipedia.org/wiki/Inertia">inertia</a></strong>.</p>
<p>This is often paraphrased as "zero net force implies zero acceleration", but this is an over-simplification. As formulated by Newton, the first law is more than a special case of the second law. Newton arranged his laws in hierarchical order for good reason (for example, see Gailili &amp; Tseitlin<sup id="cite_ref-8" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-8">[9]</a></sup>, or Woodhouse<sup id="cite_ref-Woodhouse_9-0" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-Woodhouse-9">[10]</a></sup>). The significance of the first law is to establish <a class="mw-redirect" title="Frames of reference" href="http://en.wikipedia.org/wiki/Frames_of_reference">frames of reference</a> for which the other laws are applicable, such frames being called <a class="mw-redirect" title="Inertial frames" href="http://en.wikipedia.org/wiki/Inertial_frames">inertial frames</a>.</p>
<p>To understand why the laws are restricted to inertial frames, consider a ball at rest within an accelerating body: an airplane on a runway will suffice for this example. From the perspective of anyone within the airplane (that is, from the airplane's <em>frame of reference</em> when put in technical terms) the ball will appear to move backwards as the plane accelerates forwards (the same feeling as being pushed back into your seat as the plane accelerates). This motion appears to contradict Newton's second law as, from the point of view of the passengers, there appears to be no force acting on the ball that would cause it to move. The reason why there is in fact no contradiction to the second law is because Newton's <em>second</em> law (without modification) is not applicable in this situation: Newton's <em>first</em> law does not apply because the stationary ball <em>does not</em> remain stationary. Thus, it is important to establish whether the various laws are applicable or not, inasmuch as they are not applicable in all situations.<sup id="cite_ref-10" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-10">[11]</a></sup> To summarize:<sup id="cite_ref-Woodhouse_9-1" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-Woodhouse-9">[10]</a></sup></p>
<dl></dl>
<dd><strong>There is a class of frames of reference (called <em>inertial frames</em>) relative to which the motion of a particle not subject to forces is a straight line.</strong></dd>
<dd> </dd>
</blockquote>
<p>来翻译一下吧，就当是练习英语了，我想我不翻译大家也能看得懂吧：<strong></strong></p>
<blockquote><p><strong>一切物体总保持匀速直线运动状态或静止状态，直到有外力迫使它改变这种状态为止。</strong></p>
<p>牛顿第一定律也叫做惯性定律。</p>
<p>牛顿第一定律经常解释为“外力为零加速度就为零”，但是这其实被过度简化了。按照牛顿所阐述的，牛顿第一定律不只是牛顿第二定律的特例。牛顿这样分层次安排定律有着很好的理由（比如说，Gailili &amp; Tseitlin<sup id="cite_ref-8" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-8">[9]</a></sup>和Woodhouse<sup id="cite_ref-Woodhouse_9-0" class="reference"><a href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion#cite_note-Woodhouse-9">[10]</a></sup>）。第一定律的重要性在于它建立了一种其他定律可以应用的参考系，这种参考系叫做惯性系。</p>
<p>想要理解为什么牛顿运动定律只能应用于惯性系，我们考虑一个在加速运动的物体中的静止小球，比如跑道上的飞机。从飞机内的人的视角看（用物理语言说就是把飞机作为参考系），由于飞机正在向前加速，小球似乎要向后运动（就像飞机加速的时候你被向后推的感觉一样）。这种运动好像跟牛第二定律冲突。因为，从地面上人的视角看，好像没有力作用在小球上使它运动。事实上，这并不与牛顿第二定律冲突。其原因是牛顿第二定律（未添加惯性力）在这种情况下不适用。因为原先静止的球现在不保持静止了，所以牛顿第一定律也不适用。由于这些定律并不是总适用，因此有必要确定这些定律是否使用。简单来说：</p>
<p><strong>有这样一种参考系，叫做惯性系。相对于它来观察，不受外力作用的物体的运动为直线运动。</strong></p></blockquote>
<p>翻译貌似还是不好，唉……英语就这水平了……</p>
<p>谁有什么好的建议，欢迎拍砖。</p>
<p>Copyright (c) 2008 leafduo.com. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "<a href="http://leafduo.com/blog/about/gnu-free-documentation-license">GNU Free Documentation License</a>".</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/03/why-newtons-first-law-is-not-a-special-case-of-the-second-law/feed</wfw:commentRss>
		</item>
		<item>
		<title>VMware 下安装 Gentoo 的唯一注意事项</title>
		<link>http://leafduo.com/blog/54/gentoo-installation-tip-under-vmware</link>
		<comments>http://leafduo.com/blog/54/gentoo-installation-tip-under-vmware#comments</comments>
		<pubDate>Thu, 17 Jul 2008 14:32:54 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=160</guid>
		<description><![CDATA[好吧，安装 Gentoo 其实挺复杂，不过按手册来就是了。
但是我在 VMware 下安装 Gentoo 却怎么安都连不上网……我郁闷啊……
后来得知，VMware 虚拟的是一块 AMD 网卡，而默认 menuconfig 是不选它的，所以就连不上网了……
所以请在 make menuconfig 的时候选上以下几项：
Device Drivers -&#62; Network device support -&#62; Ethernet (10 or 100Mbit) -&#62; EISA, VLB, PCI and on board controllers 还有它下属的 AMD PCnet32 PCI support 和 Use RX polling (NAPI)
之后编译内核，就 OK 了。
（我被它折腾了很长时间！我郁闷啊！）
]]></description>
			<content:encoded><![CDATA[<p>好吧，安装 Gentoo 其实挺复杂，不过按手册来就是了。</p>
<p>但是我在 VMware 下安装 Gentoo 却怎么安都连不上网……我郁闷啊……</p>
<p>后来得知，VMware 虚拟的是一块 AMD 网卡，而默认 menuconfig 是不选它的，所以就连不上网了……</p>
<p>所以请在 make menuconfig 的时候选上以下几项：</p>
<p><span style="font-size: small;">Device Drivers -&gt; </span><span style="font-size: small;">Network device support -&gt; </span><span style="font-size: small;">Ethernet (10 or 100Mbit) -&gt; EISA, VLB, PCI and on board controllers 还有它下属的 AMD PCnet32 PCI support 和 Use RX polling (NAPI)</span></p>
<p>之后编译内核，就 OK 了。</p>
<p>（我被它折腾了很长时间！我郁闷啊！）</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/54/gentoo-installation-tip-under-vmware/feed</wfw:commentRss>
		</item>
		<item>
		<title>我的字体设置</title>
		<link>http://leafduo.com/blog/00/my-font-config</link>
		<comments>http://leafduo.com/blog/00/my-font-config#comments</comments>
		<pubDate>Thu, 17 Jul 2008 10:22:00 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=159</guid>
		<description><![CDATA[很久以前把中文字体搞定以后，就再没有搞过字体的问题，前几天看到别人的截图，字体很漂亮，倍感嫉妒……一问之后，用的是 wqy-zenhei ，于是更加郁闷了，明明是一样的字体，我的就不好看……
于是，简单的读了一下 fontconfig 的手册，改了一个 .fonts.conf ，基于 wqy-zenhei 自带的 config 。没有很仔细地读手册，所以不知道这样的 .fonts.conf 有没有什么错误，不过效果还是不错的，于是贴一下：
先贴效果图：
写这篇 post 的时候打开的网页，这张主要是中文（其实这张加粗的太多了，不太好看）：

这张主要是英文，英文字体是 DejaVu ：

最后贴 .fonts.conf ：

&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62;
&#60;!DOCTYPE fontconfig SYSTEM &#34;fonts.dtd&#34;&#62;
&#160;
&#60;fontconfig&#62;
&#160;
    &#60;!-- modified by leafduo@gmail.com --&#62;
    &#60;match target=&#34;font&#34;&#62;
        &#60;test qual=&#34;any&#34; name=&#34;family&#34;&#62;
         [...]]]></description>
			<content:encoded><![CDATA[<p>很久以前把中文字体搞定以后，就再没有搞过字体的问题，前几天看到别人的截图，字体很漂亮，倍感嫉妒……一问之后，用的是 <a href="http://wenq.org/?ZenHei">wqy-zenhei</a> ，于是更加郁闷了，明明是一样的字体，我的就不好看……</p>
<p>于是，简单的读了一下 <a href="http://fontconfig.org/wiki/">fontconfig</a> 的<a href="http://fontconfig.org/fontconfig-user.html">手册</a>，改了一个 .fonts.conf ，基于 wqy-zenhei 自带的 config 。没有很仔细地读手册，所以不知道这样的 .fonts.conf 有没有什么错误，不过效果还是不错的，于是贴一下：</p>
<p>先贴效果图：</p>
<p>写这篇 post 的时候打开的网页，这张主要是中文（其实这张加粗的太多了，不太好看）：</p>
<p><a href="http://picasaweb.google.com/LeafDuo/Blog/photo#5223923636252101858"><img src="http://lh4.ggpht.com/LeafDuo/SH8a3qCSzOI/AAAAAAAAAkM/7eRF3wBMUpM/s800/wqy-zenhei.png" width="590" alt="wqy-zenhei" /></a></p>
<p>这张主要是英文，英文字体是 DejaVu ：</p>
<p><a href="http://picasaweb.google.com/LeafDuo/Blog/photo#5223923645799571138"><img src="http://lh5.ggpht.com/LeafDuo/SH8a4NmlnsI/AAAAAAAAAkU/TrZx_4wPZ3Q/s800/DejaVu.png" width="590" alt="DejaVu" /></a></p>
<p>最后贴 .fonts.conf ：</p>

<div class="wp_syntax"><div class="code"><pre class="xml xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #00bbdd;">&lt;!DOCTYPE fontconfig SYSTEM &quot;fonts.dtd&quot;&gt;</span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;fontconfig<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #808080; font-style: italic;">&lt;!-- modified by leafduo@gmail.com --&gt;</span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>WenQuanYi Zen Hei<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>文泉驿正黑<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>文泉驛正黑<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> 
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;globaladvance&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;spacing&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;int<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/int<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;hinting&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;hintstyle&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>hintnone<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;autohint&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;rh_prefer_bitmaps&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;rgba&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>none<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;embeddedbitmap&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;autohint&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;hintstyle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>hintfull<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>WenQuanYi Zen Hei<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>sans-serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>WenQuanYi Zen Hei<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>monospace<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>WenQuanYi Zen Hei<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/fontconfig<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>嗯，我觉得不错。</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/00/my-font-config/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 2.6</title>
		<link>http://leafduo.com/blog/40/wordpress-26</link>
		<comments>http://leafduo.com/blog/40/wordpress-26#comments</comments>
		<pubDate>Tue, 15 Jul 2008 09:02:40 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[Information Technology]]></category>

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

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=150</guid>
		<description><![CDATA[WordPress 2.6 今天发布了。详情可以看官方发布页，也可以看下面的链接：
http://www.underone.com/2008/07/15/wordpress-26-tyner/
http://jiangzhanyong.com/2008/07/wordpress-26-chinese-version-release-878.html
官方有个视频，本来想贴，但是我发现很慢，所以大家还是到官方发布页去看吧。
另外，庆祝一下 10 个分类， 100 个 tags。

]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.6 今天发布了。详情可以看<a href="http://wordpress.org/development/2008/07/wordpress-26-tyner/">官方发布页</a>，也可以看下面的链接：</p>
<p><a href="http://www.underone.com/2008/07/15/wordpress-26-tyner/">http://www.underone.com/2008/07/15/wordpress-26-tyner/</a></p>
<p><a href="http://jiangzhanyong.com/2008/07/wordpress-26-chinese-version-release-878.html">http://jiangzhanyong.com/2008/07/wordpress-26-chinese-version-release-878.html</a></p>
<p>官方有个视频，本来想贴，但是我发现很慢，所以大家还是到<a href="http://wordpress.org/development/2008/07/wordpress-26-tyner/">官方发布页</a>去看吧。</p>
<p>另外，庆祝一下 10 个分类， 100 个 tags。</p>
<p><a href="http://picasaweb.google.com/LeafDuo/Blog/photo#5223158895369260338"><img src="http://lh4.ggpht.com/LeafDuo/SHxjV4PoDTI/AAAAAAAAAjQ/1S5shkcwGLw/s800/wp_status.png" alt="WordPress status" width="590" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/40/wordpress-26/feed</wfw:commentRss>
		</item>
		<item>
		<title>通知</title>
		<link>http://leafduo.com/blog/14/announcement</link>
		<comments>http://leafduo.com/blog/14/announcement#comments</comments>
		<pubDate>Sun, 13 Jul 2008 03:57:14 +0000</pubDate>
		<dc:creator>Leaf Duo</dc:creator>
		
		<category><![CDATA[blogging]]></category>

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

		<guid isPermaLink="false">http://leafduo.com/blog/?p=149</guid>
		<description><![CDATA[为了更好地建设社会主义和谐社会，这里的后台将在适当的时候勾选 An administrator must always approve the comment ，之后将在适当的时候取消勾选。
这是为我和大家的安全着想，由此造成的不便，希望大家谅解。
虽然这只是一个小地方，但还是谨慎些为好。
我不能保证什么时候来审批大家的 comments ，所以 comments 的出现会有时间不确定的延迟。
特别提示：请勿重复留言。
God bless all.
]]></description>
			<content:encoded><![CDATA[<p>为了更好地建设社会主义和谐社会，这里的后台将在适当的时候勾选 <strong>An administrator must always approve the comment</strong> ，之后将在适当的时候取消勾选。</p>
<p>这是为我和大家的安全着想，由此造成的不便，希望大家谅解。</p>
<p>虽然这只是一个小地方，但还是谨慎些为好。</p>
<p>我不能保证什么时候来审批大家的 comments ，所以 comments 的出现会有时间不确定的延迟。</p>
<p><strong>特别提示：请勿重复留言。</strong></p>
<p>God bless all.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafduo.com/blog/14/announcement/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
