Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: writing a utility to determine whether I have a working wifi connection

by haukex (Archbishop)
on Jul 30, 2019 at 07:37 UTC ( [id://11103612]=note: print w/replies, xml ) Need Help??


in reply to Re^2: writing a utility to determine whether I have a working wifi connection
in thread writing a utility to determine whether I have a working wifi connection

What is happening with the subs here?

They are used by the code in the sub http_online as $check, where first $_ is set to the content fetched from the URL, and then the sub is called, and its return value used as a boolean. Although the subs you see here could be done by precompiled regexes (qr//), a sub allows for much more flexibility, a simple example being the sub { /Amazon/ and /Cart/ } case.

LWP::Simple. Is this a core module?

No, as you can find out with the corelist command:

$ corelist LWP::Simple ... LWP::Simple was not in CORE (or so I think)

However, the module's distribution, libwww-perl, is quite often used by scripts, so that e.g. Strawberry Perl includes it, and it's fairly common to find it already installed alongside Perl on many *NIX systems.

In this snippet from LWP::Online, how does it import a lexical variable?

Just to nitpick, it's not a lexical variable, it's a package variable. They can be exported/imported just like subs, e.g. Exporter supports this.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11103612]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-24 03:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found