AutoItSetOption("TCPTimeout", 10000)
[keywords: tcp timeout tcprecv]
2007-11-29
[AutoIT] Network Programming
Posted by
Display Name
-
6:41 PM
0
comments
Labels: Utils
2007-11-22
Examples of Programs in Different Languages
Posted by
Display Name
-
6:53 PM
0
comments
Labels: Misc
2007-11-15
2007-11-12
Wikipedia Proxy
http://wikipedia.jaylee.cn/
Gladder - Firefox plugin used to access misc forbidden sites
Posted by
Display Name
-
9:24 AM
0
comments
Labels: Misc, Network/Security
2007-11-06
How to Add Support for a New Language to Exuberant Ctags
Add Support for New Languages to Ctags
Exuberant Ctags has been designed to make it very easy to add your own custom language parser. As an exercise, let us assume that I want to add support for my new language, Swine, the successor to Perl (i.e. Perl before Swine def my_label
". Let us now examine the various ways to do this.
Operational background
As ctags considers each file name, it tries to determine the language of the file by applying the following three tests in order: if the file extension has been mapped to a language, if the file name matches a shell pattern mapped to a language, and finally if the file is executable and its first line specifies an interpreter using the Unix-style "#!" specification (if supported on the platform). If a language was identified, the file is opened and then the appropriate language parser is called to operate on the currently open file. The parser parses through the file and whenever it finds some interesting token, calls a function to define a tag entry.
Posted by
Display Name
-
3:27 PM
0
comments