
GNU/Linux
Xeroo
这个作者很懒,什么都没留下…
展开
-
The order of GCC's options DOES matter under windows.
The words followed is from http://mail.gnome.org/archives/gnomemm-list/2005-May/msg00009.html> under Windows the order of compiler and linker flags matters.> So it is important to do give the LDFLAG原创 2006-01-05 09:44:00 · 1043 阅读 · 0 评论 -
apache及其module的调试
gdb httpd用gdb加载httpd进程 (gdb) b break-point设置断点,可以设置函数名、行数等…… (gdb) run -X -d /usr/local/apache执行httpd,这个是关键的,-X参数会让httpd以debug模式运行,debug模式是单进程的,这样才好调试。-d /usr/local/apache是设置运行的目录。原创 2006-04-30 15:03:00 · 2386 阅读 · 0 评论 -
Tramp Emacs & plink under windows
在用ssh1的时候,plink连上去tramp没法编辑,郁闷了一下,不知道为什么,不过看了一下,换pscp就ok了,去putty下一个pscp,呵呵,相应的还有psftp也应该可以的……原创 2006-04-26 10:12:00 · 2094 阅读 · 0 评论 -
Thread-safety and POSIX.1
Thread-safety and POSIX.1Thread-safe Versions of POSIX.1 and C-language FunctionsPOSIX.1 and C-language functions were written to work in an environment of single-threaded processes. Reentrancy wa转载 2006-04-13 15:12:00 · 249 阅读 · 0 评论 -
XML1.0 中文文档(第二版)
Extensible Markup Language (XML) 1.0 (Second Edition)本文档是 W3C 建议 XML 1.0 第二版(2000 年 10 月 6 日)的简体中文翻译版,其中可能有错误和不妥之处。英文版是唯一的正式版,位于:http://www.w3.org/TR/2000/REC-xml-20001006本文档位于:http://lightn转载 2006-04-10 15:45:00 · 13419 阅读 · 0 评论 -
解决linux下rar解压中文文档会出错的脚本
在我的机子上rar解压中文文档总是出错 估计是字符编码的问题因为我后来看到总是rar在建立中文目录的时候犯错所以写了这个脚本 先把目录都建立起来 然后再解压然后把解压过程中建立的错误中文目录删掉 就是酱紫的想想估计应该可能对别人会有用就放上来了 呵呵这个脚本假设你的rar文档里面根目录只有一个两个的话 对于错误目录的删除会只删第一个目录介个懒得改了 呵呵x@XEROO:~$ cat rarx.sh原创 2006-03-25 15:50:00 · 298 阅读 · 0 评论 -
SQLite
About SQLite SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Features in原创 2006-02-07 21:24:00 · 1682 阅读 · 1 评论 -
正则迷雾,各种工具之正则表达式语法比较
在网上看到的,虽然是04年的貌似,也么的elisp里面的,不过grep、sed、awk是很有用的说在各种常用的工具中,正则表达式如此的相似却又不同。下表列出了一些常用的正则表达式,以及其不同之处。项目总多,遗漏必有不少,请各位看官不吝指出。以perl的正则为基准,不同的用法以粉红色标出。(xhchen8018@yahoo.com.cn)转载 2006-02-07 17:27:00 · 430 阅读 · 0 评论 -
Documents on LaTeX.
lshort-en: ftp://ftp.ctex.org/mirrors/CTAN/info/lshort/english/The Not So Short Introduction to LaTeX2elshort-cn: ftp://ftp.ctex.org/pub/tex/CTDP/lshort-cn/一份不太简短的LaTeX2ε介绍LaTeX123: http://edt1023.s原创 2006-02-15 22:51:00 · 1393 阅读 · 0 评论 -
如何让LaTeX找到中文字体
摘自http://blog.linuxeden.com/post/87877/3363ubuntu下面teTeX和cjk-latex装完后LaTeX默认是没法编译中文,因为缺少字体,这里是我把字体搞定的方法,共享之 & Thanks to mylxiaoyi and wangyin.Latex 中文支持CJK的安装与配置作者 mylxiaoyi | 十一月 19, 05 @ 19:3原创 2006-01-16 09:49:00 · 5994 阅读 · 0 评论 -
An introduction to LaTeX2e
Heres an introduction to LaTeX2e, The Not So Short Introduction to LaTeX2e(lshort). I got this document on http://learn.tsinghua.edu.cn:8080/2001315450/tex_frame.html and the following text are from原创 2006-01-13 13:49:00 · 1232 阅读 · 0 评论 -
Ragular expressions.
把这个搬过来的时候真的想汗一个,没想到标题是Ragular expressions居然后面跟了那么多心情文字……Emacs Lisp Reference Manual里面34.2是关于正则表达式的有兴趣可以去看看,地址如下http://www.gnu.org/software/emacs/elisp-manual/html_mono/elisp.html#SEC565今天做了两件事情,一个是e原创 2006-01-05 10:28:00 · 1624 阅读 · 0 评论 -
apache module中取post数据
一共使用三个函数 ap_setup_client_block(r, REQUEST_CHUNKED_DECHUNK)Apache里面说Setup the client to allow Apache to read the request body. 差不多意思就是初始化,第二个参数可以取以下三个值。 REQUEST_NO_BODY意为如果request原创 2006-04-30 15:37:00 · 3860 阅读 · 0 评论