- or download this
- or download this
use strict;
use warnings;
...
$h->{ $vals[0] } = \%data;
}
}
- or download this
open(SHELL,">shell.sh");
print SHELL "cd $dir","\n";
print SHELL "cp $file $configParams{BASEDIR}";
system ("bash shell.sh") ;
close(SHELL);
- or download this
# my original idea was to have a getter/setter for each "extended info
+" item:
...
);
return $self->_format_struct( $tickerid, $struct );
}
- or download this
# Grab info (title, date, reputation, etc) for a user's nodes.
# Uses the user node info XML Ticker (id://32704). If the
...
);
}
- or download this
sub user_nodes {
my( $self, %params ) = @_;
...
}
- or download this
use strict;
use warnings;
...
print Dumper( $data );
}
- or download this
use strict;
use warnings;
...
$day, $month-1, $year-1900 );
}
- or download this
sub private_message {
my( $self, %params ) = @_;
...
return( $data->{message}, $data->{INFO} );
}
- or download this
my $pm_obj = PerlMonks::Mechanized->new();
my $node_data = $pm_obj->node_info( @node_ids );
my $title = $node_data->title( $node_ids[3] );
- or download this
my $pm_obj = PerlMonks::Mechanized->new();
my $node_data = $pm_obj->node_info( @node_ids );
add_node_data( $node_data, \%alldata );
my $title = $alldata{ $node_ids[3] }{title};
- or download this
my %nodedata;
...
my $data = $pm_obj->node_info( @node_ids );
add_node_data( $data, \%nodedata );
- or download this
package PerlMonks::Mechanized::Data;
...
print " The new data will replace the current data\n";
}
- or download this
# Each row must contain the digits 1 through 9 in any order.
# Each column must contain the digits 1 through 9 in any order.
...
return $hints;
}