Useful Tools
文章平均质量分 73
chaosinux
这个作者很懒,什么都没留下…
展开
-
Lighttpd - HTTPStates
第一次接触graphviz,看起来挺简单方便的,以后画状态图之类的可以考虑一下。把下面代码保存为HTTPStates.dot#!graphvizdigraph state { edge [color=green]; connect -> reqstart -> read -> reqend -> handlereq -> respstart -> write转载 2012-08-08 17:17:31 · 582 阅读 · 0 评论 -
Valgrind
The Valgrind tool suite provides a number of debugging and profiling tools that help you make your programs faster and more correct. The most popular of these tools is called Memcheck. It can detect转载 2012-08-10 16:05:00 · 514 阅读 · 0 评论 -
Lemon Parser Generator
lighttpd的配置文件需要用到lemon来分析,lemon是一个LALR(1)的语法分析生成器。本来以为要用到LALR(1)的知识,刚好上个学期学了编译原理这门课,但是由于课时不够,Bottom-Up Parsing只讲了LR(0)和SLR(1),LR(1)和LALR(1)没讲到,所以在尝试使用lemon之前特意花了一个小时去看了LR(1)和LALR(1)的知识。好在基础的知识原创 2012-08-12 15:20:33 · 4054 阅读 · 0 评论