Jim DeVona [http://anoved.net/] ***Snippets:*** Here is a https://gist.github.com/anoved/5015831%|%benchmark procedure%|% I use as a simple alternative to the [bench] package for quick timing comparison tests: ====== # # Parameters: # script, the code to benchmark. Executed in caller's context. # iterations, number of times to execute script. Defaults to 1. # # Returns: # a two-element list reporting the average iteration time to execute script # and the total elapsed time in microseconds. # proc benchmark {script {iterations 1}} { set start [clock microseconds] set average [uplevel 1 [list time $script $iterations]] set end [clock microseconds] set total [expr {$end - $start}] return [list [lindex $average 0] $total] } ====== ***Recent Projects:*** * '''Shapetcl [https://github.com/anoved/Shapetcl#shapetcl]''': A C extension that provides general-purpose read/write access to ESRI shapefiles. API not finalized. * '''arcencode [https://github.com/anoved/arcencode#arcencode]''': A Tcl implementation of the coordinate list compression algorithm used by MapQuest and Google Maps. * '''Tcl Doctools for BBEdit [https://github.com/anoved/Tcl-Doctools-for-BBEdit#readme]''': Syntax highlighting and preview filter for writing [doctools] markup in BBEdit. ***Past Projects:*** * '''LDTrim [http://anoved.net/2008/05/ldtrim/]''': LDraw code formatter/prettifier. * '''LDMerge [http://anoved.net/2007/10/ldmerge.html]''': LDraw part library management tool. * '''PreL3P [http://anoved.net/2007/10/prel3p.html] [http://anoved.net/2007/10/instruction-step-fading-with-prel3p.html]''': LDraw color substitution tool. * '''strpdf [http://anoved.net/2007/11/strpdf.html]''': Annotated PDF overlay generator (using [pdf4tcl]). * '''Pascal's Triangle and Binomial Expansion [http://anoved.net/2008/02/pascal-triangle.html]''': A little mathematical visualization. * '''Starpacker [http://anoved.net/2008/03/starpacker.html]''': Easily turn Starkits into executables for any platform. * '''[tcl_ref] [https://github.com/anoved/zeroclickinfo-fathead/tree/master/tcl_ref]''': Tcl/Tk syntax reference plugin for DuckDuckGo search engine. * …and a few other blog posts. [http://anoved.net/tag/tcl/] <> Person