Projects | |
| March 13, 2010 11:03:30 |
|
pgaccess
This is a GUI frontend to PostgreSQL.
It is written in Tcl/Tk. I am one of
the developers, that took over the development from the original author
Teo.
Asterisk client
This is a VoIP client to the VoIP system, Asterisk. The binding was written by Reinhard Max, but I just put a different GUI interface to it
Itcl
I wrote a new command for Itcl, which is an object oriented extension
to Tcl. The command I wrote is called itcl::is, which just checks if
the target is an object or class. It is invoked like this:
itcl::is class target
itcl::is object target
mail client
This is just a start at a mail client similar to Outlook and Evolution, but will be cross platform.
record.tcl
This is a Tcl only script that is part of the standard tcllib. It creates a container
structure, similiar to a C struct:
record myrec {
one
two
other
}
myrec myinst
myinst -configure one 1
myinst.two = 2