The erl program starts an Erlang runtime system. The exact details (for example, whether erl is a script or a program and which other programs it calls) are system-dependent. Windows users probably wants to use the werl program instead, which runs in its own window with scrollbars and supports command-line editing. The erl program on Windows provides no line editing in its shell, and on Windows 95 there is no way to scroll back to text which has scrolled off the screen. The erl program must b阅读全文>
阅读全文>
发表于 @ 2007年06月12日 14:26:00|评论(loading...)|举报|收藏
在每个用户的主目录下,都有一个 vi 的配置文件".vimrc"或".exrc",用户可以编辑它,使这些设置在每次启动 vi 时,都有效。 set nu 显示行号 set nonu 不显示行号 set ic 查找时不考虑大小写 set noic 查找时考虑大小写 阅读全文>
发表于 @ 2007年05月30日 15:51:00|评论(loading...)|举报|收藏
最佳vim技巧阅读全文>
发表于 @ 2007年05月29日 21:33:00|评论(loading...)|举报|收藏
vimrc阅读全文>
发表于 @ 2007年05月29日 20:56:00|评论(loading...)|举报|收藏
faint阅读全文>
发表于 @ 2007年01月30日 14:17:00|评论(loading...)|举报|收藏
(ACE源码片段)阅读全文>
发表于 @ 2006年07月26日 18:06:00|评论(loading...)|举报|收藏
功能还不是很完善,如果你熟悉odbc的话,请与回复你的联系方式,我准备最终将其开源出去. 阅读全文>
发表于 @ 2006年06月28日 18:10:00|评论(loading...)|举报|收藏
顺便看了一下pil中, c函数调用lua以及lua调用c函数的内容.阅读全文>
发表于 @ 2006年06月19日 09:19:00|评论(loading...)|举报|收藏
这几天开了个小差, 把lua的很多扩展库都用了一下, luasocket, luasql, luacom, kepler... 最后终于理解了require的作用了. 其实也就是pil提及到的搜索加载目录那么简单,当然有一个经验就是定义LUA_PATH与package.cpath的值,就像定义include和lib的路径一样, 可以方便地导入到lua环境 :) 阅读全文>
发表于 @ 2006年06月15日 09:17:00|评论(loading...)|举报|收藏
对lua有了个初步的了解, 同事按捺不住在项目上面用了一下c api. 由于大家都不熟lua的 c api, 我也去学习一下. 这样大家可以讨论了. 5.1的 luaopen_io()不能用了, 用了一下直接挂掉. 查了一下官方的文档, 他没有说清楚.只是说不能直接调用. 不明白 而且看了一下, lua_open()宏最好由 luaL_newstate()来代替. 阅读全文>
发表于 @ 2006年06月09日 18:22:00|评论(loading...)|举报|收藏