This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# ABSTRACT: proof of concept for sending subs to a child process for evaluation | |
use strict; | |
use warnings; | |
use v5.10; | |
use Data::Dumper; | |
use Socket; | |
use Time::HiRes qw(sleep); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use warnings; | |
use strict; | |
use WWW::Mechanize; | |
use HTML::TreeBuilder; | |
my $url = "http://www.google.com"; | |
my $mech = WWW::Mechanize->new(); |