Documents on LaTeX.

February 15th, 2006 | Posted in LaTeX   Add Comment

lshort-en: ftp://ftp.ctex.org/mirrors/CTAN/info/lshort/english/

The Not So Short Introduction to LaTeX2e

lshort-cn: ftp://ftp.ctex.org/pub/tex/CTDP/lshort-cn/
一份不太简短的LaTeX2ε介绍

LaTeX123: http://edt1023.sayya.org/tex/latex123/latex123.pdf
大家来学LaTeX

mycjk: http://edt1023.sayya.org/tex/mycjk/mycjk.pdf
我的CJK

clsguide: http://www.newsmth.net/bbscon.php?board=TeX&id=29583&ap=442
LATEX2ε for class and package writers

我一路看过来的关于LaTeX的电子书,lshort-cn是后补的,昨天在newsmth上置低才看到的……

SQLite

February 7th, 2006 | Posted in GNU/Linux   Add Comment

SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Here are some features of SQLite from sqlite.org.

SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Features include:
Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.
Zero-configuration - no setup or administration needed.
Implements most of SQL92. (Features not supported)
A complete database is stored in a single disk file.
Database files can be freely shared between machines with different byte orders.
Supports databases up to 2 terabytes (241 bytes) in size.
Sizes of strings and BLOBs limited only by available memory.
Small code footprint: less than 250KiB fully configured or less than 150KiB with optional features omitted.
Faster than popular client/server database engines for most common operations.
Simple, easy to use API.
TCL bindings included. Bindings for many other languages available separately.
Well-commented source code with over 95% test coverage.
Self-contained: no external dependencies.
Sources are in the public domain. Use for any purpose.

正则迷雾,各种工具之正则表达式语法比较

February 7th, 2006 | Posted in GNU/Linux   Add Comment

在网上看到的,虽然是04年的貌似,也么的elisp里面的,不过grep、sed、awk是很有用的说。原文为:
在各种常用的工具中,
正则表达式如此的相似却又不同。
下表列出了一些常用的正则表达式,以及其不同之处。
项目总多,遗漏必有不少,请各位看官不吝指出。
以perl的正则为基准,不同的用法以粉红色标出。
(xhchen8018@yahoo.com.cn)

http://blog.csdn.net/xeroo/archive/2006/02/07/593755.aspx