Stands for '''W. Jeffrey Rankin''' [mailto:jrankin@oneil.com] Some sites of interest: * O'Neil & Associates, Inc. [http://www.oneil.com]: This is where I work, using open source tools like Tcl/Tk, perl, and many others. * My personal web site [http://jrankin.ath.cx]: Some of the software I maintain for Solaris and whatever else I'm interested in. ---- Here's a little script that determines the link to the current Astronomy Picture of the Day [http://antwrp.gsfc.nasa.gov/apod/astropix.html]: #!/bin/sh # -*- tcl -*- # The next line is executed by /bin/sh, but not tcl \ exec tclsh "$0" ${1+"$@"} package require http set base_url http://antwrp.gsfc.nasa.gov/apod set site [http::geturl $base_url/astropix.html] set html [http::data $site] regexp -nocase -linestop {(src="(.*)")} $html match src image puts $base_url/$image ---- [Generating Accessible HTML] ---- [Category Person] | [Category Home Page]