Software, Science, and other thoughts on life, the universe and everything

Last Updated: February 28, 2004 08:19PM.

This is my new public section for my rants and raves about life, science, and computers. See Blogger.com for more Blogger info. My primary interests are alternative energy (wind, solar, wave), alternative operating systems (read: linux), self organizing systems, and general science.


xml rss RSS feed for this page
Validate Feed. #!/usr/bin/perl use XML::XSLT; MAIN: { require "XSLT.pm" || die "Cannot find XSLT.pm: $!"; require "./cgi-lib.pl" || die "Cannot find cgi-lib.pl: $!"; local(*in,$message,$command); &ReadParse(*in); print &PrintHeader; $xmlfile = $in{xmlfile}; $xsltfile = $in{xsltfile}; if($xmlfile eq "") { $xmlfile = $ARGV[0]; } if($xsltfile eq "") { $xsltfile = $ARGV[1]; } my $xslt = XML::XSLT->new ($xsltfile, warnings => 1); $xslt->transform ($xmlfile); print $xslt->toString; $xslt->dispose(); }