Act, robot!
--#--
My robot now has just about all he needs to get the job done.
Well, except for the command to act. Let's add that now.
$request->header('Accept' => 'text/html');
$response = $ua->request($request);
if (!$response->is_success) {
print "Uh-oh! Came up empty\n";
}
else {
print $response->content, "\n";
}
This is already a handy little robot. You can invoke him from the
command line each time you log in, simply by typing "tsx" or whatever
at the shell prompt.
But wouldn't it be so much cooler to have run out like a trained dog and
update your listing whenever you log onto the network? Of course it
would.