HTML to Image Module?

2006-10-06 Thread Raphael Brunner
Dear Users does anyone know a perl-Module which can make a image (png/jpg/...) from a website? Thanks a lot for all ideas... Greetings, Raphael -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: check for duplicate files that are truncated

2006-10-06 Thread John W. Krahn
Eric Waguespack wrote: > Hi, Hello, > I am new to the list, so I apologise if I do anything wrong :) > > I made the script below to check files that are duplicates but I only > want to check the first few bytes (perhaps 1-10k, depending on false > positives) > > I would like to convert it to na

check for duplicate files that are truncated

2006-10-06 Thread Eric Waguespack
Hi, I am new to the list, so I apologise if I do anything wrong :) I made the script below to check files that are duplicates but I only want to check the first few bytes (perhaps 1-10k, depending on false positives) I would like to convert it to native perl, can someone give me some pointers?

Re: scalar in array name?

2006-10-06 Thread Dr.Ruud
"Kenton Brede" schreef: > I've done some searching and can't find an answer to this. I'd like > to use a scalar variable in an array name. Something like "@$scalar" > I've tried different permutations like "[EMAIL PROTECTED]", "@"$scalar"" > "@\$scalar" and none of them work. > > What I'm trying

Re: scalar in array name?

2006-10-06 Thread Ricardo SIGNES
* Kenton Brede <[EMAIL PROTECTED]> [2006-10-06T11:38:49] > I've done some searching and can't find an answer to this. I'd like > to use a scalar variable in an array name. Something like "@$scalar" > I've tried different permutations like "[EMAIL PROTECTED]", "@"$scalar"" > "@\$scalar" and none o

scalar in array name?

2006-10-06 Thread Kenton Brede
I've done some searching and can't find an answer to this. I'd like to use a scalar variable in an array name. Something like "@$scalar" I've tried different permutations like "[EMAIL PROTECTED]", "@"$scalar"" "@\$scalar" and none of them work. What I'm trying to do is come up with a way to slu

canonpath

2006-10-06 Thread Derek B. Smith
I dont understand what the point of canonpath is here: It seems to me canonpath only appply so links. ##-- Show me all installed Modules --## use File::Find 'find'; use File::Spec::Functions; print "Your installed modules on $^O are:\n"; print "-" x 38,"\n"; find { wanted => sub { print cano

Re: using backticks

2006-10-06 Thread John W. Krahn
john wright wrote: > Hi All, Hello, > i am getting error "The system cannot find the path specified" while running > below lines code. > > $dirname = "util"; > $path = ` cd $dirname ; pwd` > print ("$path"); > > can anybody help me to get output of pwd in the variable $path. use Cwd; my $dir

Re: using backticks

2006-10-06 Thread Rob Dixon
john wright wrote: > > i am getting error "The system cannot find the path specified" while running > below lines code. > > $dirname = "util"; $path = ` cd $dirname ; pwd` print ("$path"); > > can anybody help me to get output of pwd in the variable $path. Hi John It's best to do things in Perl

using backticks

2006-10-06 Thread john wright
Hi All, i am getting error "The system cannot find the path specified" while running below lines code. $dirname = "util"; $path = ` cd $dirname ; pwd` print ("$path"); can anybody help me to get output of pwd in the variable $path. Thank

Re: CGI bug

2006-10-06 Thread W.P.Nijhof
Rob Dixon wrote: values after the script has been called once you'll have to do it manually: param('hidden_name','new','values','here'); You can also do this: $q->hidden( -name=>'x', -value=>$x, -override=>1 ) WayPay -- To unsubscribe, e-mail: [EMAIL PROTECTED] For