结合产品型社区和平台型社区所带来的优势
产品型社区就是像 ubuntu.com、opensuse.org 以及我们的 openrays.org 一样以产品为基础建立的开源社区。 平台型社区就是像 sourceforge.com、developer.berlios.de 以及国内的 gforge.osdn.net.cn 一样以平台为基础建立的开源社区。 如果能把这两种社区模式结合在一起,对企业将...
产品型社区就是像 ubuntu.com、opensuse.org 以及我们的 openrays.org 一样以产品为基础建立的开源社区。 平台型社区就是像 sourceforge.com、developer.berlios.de 以及国内的 gforge.osdn.net.cn 一样以平台为基础建立的开源社区。 如果能把这两种社区模式结合在一起,对企业将...
About us The Code::Blocks team http://www.codeblocks.org/about.shtml Project Leader Yiannis Mandravellos (Mandrav) Location: Greece Role: Project Manager Bio: (Under construction) How he started the project: (Under construction) Co-developers Ricardo Garcia (rickg22) Location: Mexico City Role: All-hands person Bio: Born in 1975, programmer since 12 (his first projects were small games for a bulletin board system). In 1993 he entered the Universidad Nacional Autonoma de Mexico, and joined the independent student research group LINDA, where he researched about Artificial Intelligence and data compression. In 2001, he began studying PHP and XML, where he learned the conce of multi-tier programming. How he joined: I was a regular Dev-C++ user. I had used it for some time, and recently had tested its spinoff wx-devc by Guru Kathiresan. Around 2004, I thought that a C++ IDE should be written in C++ (and not in Delphi), so...
真的很怀恋使用 Dev-C++的岁月,我就是从 Dev-C++开始明白原来 C++和 VC++不能划等号。 随着 C++Builder、Delphi、SlickEdit+Cygwin 一路下来,已经 3 年过去了。后来工作环境需要用 Linux 作桌面,虽然 SlickEdit 有 Linux 版,但是很可惜,在 Linux 下不能使用输入法,就这样我...
在 fetchmail 收到邮件后,可以做到自动让 procmail 执行分拣工作。但是对已经接收到本地的邮件,怎样才能手动让 procmail 执行分拣工作呢? 假设我要对已经收到的邮件/sun/mails/company 重新作一次分拣,我可以执行以下命令(请注意备份): mv /sun/mails/company /sun/mails/seed formail -s procmail < /sun/mails/seed 注意是 formail,而不是 fetchmail ^^ 参考 http://info.ccone.at/INFO/Mail-Archives/procmail/Jun-2005/msg00053.html
没有全部搞定,当用 emacs 启动时,我仍然无法调出 fcitx,但是,娃哈哈,用 emacs -nw 启动时,已经可以正常通过 fcitx 输入中文了。如果你和我一样,都是通过 apt-get 安装的 21 版的 emacs,那你还需要安装以下包: apt-get install mule-ucs apt-get install emacs-intl-fonts apt-get install xfonts-intl-chinese* sun$locale LANG=zh_CN.UTF-8 LANGUAGE=zh_CN :zh: en_US:en LC_CTYPE=zh_CN.UTF-8 LC_NUMERIC="zh_CN.UTF-8" LC_TIME="zh_CN.UTF-8" LC_COLLATE="zh_CN.UTF-8" LC_MONETARY="zh_CN.UTF-8" LC_MESSAGES="zh_CN.UTF-8" LC_PAPER="zh_CN.UTF-8" LC_NAME="zh_CN.UTF-8" LC_ADDRESS="zh_CN.UTF-8" LC_TELEPHONE="zh_CN.UTF-8" LC_MEASUREMENT="zh_CN.UTF-8" LC_IDENTIFICATION="zh_CN.UTF-8" LC_ALL= sun$cat ~/.emacs (global-set-key (kbd "C-SPC") 'nil) (require 'un-define) (set-language-environment 'utf-8) (setq locale-coding-system 'utf-8) (set-terminal-coding-system 'utf-8) (set-keyboard-coding-system 'utf-8) (set-selection-coding-system 'utf-8) (prefer-coding-system 'utf-8)