This is an archived low-energy page for bots and other anonmyous visitors.
Please sign up if you are a human and want to interact.
 |
| User since: |
Dec 04, 2000 at 20:54 UTC
(25 years ago) |
[Account disabled]
| Last here: |
Jan 05, 2006 at 17:23 UTC
(20 years ago) |
| Experience: |
569
|
| Level: | Monk (7) |
| Writeups: |
none
|
| Location: | n/a |
| User's localtime: |
Sep 15, 2025 at 18:19 UTC
|
| Scratchpad: |
None.
|
| For this user: | Search nodes |
|
for (0..$#tasks) {
$ryddler[$_] = Ryddler::Clone->new( job => $task[$_] ) || die "Try
+ing";
}
Node's I found interesting enough to mark, but still need time to go back and review
Web Wizard
SQL INSERT creator
Binary to Decimal (zdog's way)
SerialPort module
Should One Use CGI.pm to Generate HTML?
(Corion) Getting active (Re: Perl Programs that can retrieve email addresses from web pages)
Re: (Guildenstern) Re: Uncovering hidden Internet Explorer cache
Learning CGI
Re: Converting a C structure to Perl
notes to self...
#!/usr/bin/perl -w
use strict;
package foo;
use vars qw($var);
$var = 'FOO';
print "package foo: $var\n";
package bar;
use vars qw($var);
$var = 'BAR';
print "package bar: $var\n";
package main;
{
no strict 'refs'; # *cough cough*
my $pack = 'foo';
my $var = 'var';
print "(main) package foo: ${$pack . '::' . $var}\n";
$pack = 'bar';
print "(main) package bar: ${$pack . '::' . $var}\n";
}
|