首页 最近更新 网站讯息 页面索引 这是什么?

LinuxDesktop

到目前为止,我较长时间使用过两个Linux distribution,一个是Fedora,另一个是Ubuntu。

内容

  1. Fedora
  2. Ubuntu
  3. General

Fedora

我是从2004年开始用fedora的(那时应该还是fedora core 3),那是我工作后买的第一台电脑,DELL的。后来在单位里也装了fedora。

Ubuntu

在Marvell上班的第一天——2006年11月——我的工作电脑装上了ubuntu。

General

增大mp3音量 $ ffmpeg -i INPUT -y OUTPUT -ab 192000 -vol 0-1000

Fix line wrapping bug in mcabber. For a line mixed of Chinese character and English character, when a Chinese character should be wrapped to next line, sometimes it overwrites the character at the beginning of current line. The following patch fixes the symptom but might not fixes the root cause.

diff -r 733845e460b5 -r 4ab487599029 mcabber/src/hbuf.c
--- a/mcabber/src/hbuf.c        Thu Apr 17 21:44:36 2008 +0200
-- 王亮 b/mcabber/src/hbuf.c        Wed Jun 04 09:31:51 2008 +0800
@@ -70,7 +70,7 @@
     hbuf_b_prev = hbuf_b_curr;
     c = hbuf_b_curr->ptr;
 
-    while (*c && (!width || cur_w <= width)) {
+    while (*c && (!width || cur_w < width)) {
       if (*c == '\n') {
         br = cr = c;
         *c = 0;
@@ -82,7 +82,7 @@
       c = next_char(c);
     }
 
-    if (cr || (*c && cur_w > width)) {
+    if (cr || (*c && cur_w >= width)) {
       if (!br || br == hbuf_b_curr->ptr)
         br = c;
       else