再看KDE 4.0 RC2 (zz)

FROM: http://mail.kde.org/pipermail/kde-china/2007-December/001111.html 虽然 KDE 官方网站上打出了倒计时横幅:XX days left until the dreams become reality,但以常规桌面用户的视角出发,在 KDE 4 发布后的一段时间内,KDE 3.5 仍然会是 *NIX 平台上最完备、精致、可靠、实用的桌面环境,不建议各位拿它替换 KDE3,也不建议作主要的日常使用平台(开发人员?早就该工作在 KDE4 下了)。 KDE 4.0 的...

2007-12-16 · wuan

用 vim 编程时自动扩展小括号和大括号的方法

我想实现在编辑 C 代码时,输入 ife<空格> 之后,代码自动扩展为: if (<光标>) { } else () { } 于是我设置了: inoremap ife<SPACE> if<SPACE>()<SPACE>{<ENTER>}<SPACE>else<SPACE>{<ENTER>}<ESC>2k4li 然而当我正常输入一个字符串时,例如 my life with ,代码会自动扩展为: my lwith if () { } else { } 这个结果并非是我所希望看到的。如果我使用 inoreabb 来设置的话: inoreabb ife if<SPACE>()<SPACE>{<ENTER>}<SPACE>else<SPACE>{<ENTER>}<ESC>2k4li 虽然不会...

2007-12-09 · wuan

如何让 mutt 的外发邮件保留在当前邮箱

How to save copies of outgoing/sent eMails to the current folder 一般来说,通过 muttrc 配置文件的 record 变量定义外发邮件的存储位置。如可以通过 set record="=sent" # 简单的存放在sent信箱 set record="=sent-`date +%Y-%m`" # 实现按月存放 但是我想实现的确是把外发的信件存放在浏览/编辑信件时的当前信箱,因为这样一来 ,当以后收到对方的回复时,我可以很清楚的知道话题间的关联,就像邮件...

2007-09-16 · wuan

对台武力进攻的前兆有这么几条

一、成立对台作战联合指挥司令部。现在七大军区条块分割,没有联合指挥这一说。 二、组建联合舰队,从东海、北海、南海舰队抽调舰只。登陆作战需要护航舰队,船少了不行。 三、组建空军突击集群。现在的空军飞机都分散在各地,没有集中进攻的迹象。 四、对台前沿突然更换密电码,电台活动突然密集或者突然...

2007-09-15 · wuan

mailbox vs maildir

FROM: http://vampiroz.org/2007/05/mutt-mailbox-vs-maildir.html Are you using Mutt and wondering whether it’s better to use mbox (mailbox) or maildir for mail storage?. I hope this post will help you decide. p. Here I publish a simple benchmark results of the time it takes mutt to read/open a folder with 28.000 emails. First, some notes about the tests: software: mutt 1.5.13 compiled with +USE_HCACHE running on a Debian 4.0 server (2.6.18 kernel) hardware: 3.2 Ghz Pentium 4 with 2Gb of RAM all this values are averages all these tests are taken with disk buffers active on RAM all numbers are averages times Using mbox real 0m1.920s user 0m1.808s sys 0m0.112s Using maildir without header_cache real 0m2.599s user 0m2.092s sys 0m0.508s Using maildir with header_cache real 0m0.884s user 0m0.732s sys 0m0.152s Conclusion Based on these results, it seems the better choice is to use...

2007-09-14 · wuan