Skip to content

Instantly share code, notes, and snippets.

@olegwtf
Created January 24, 2012 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olegwtf/1667216 to your computer and use it in GitHub Desktop.
Save olegwtf/1667216 to your computer and use it in GitHub Desktop.
Any Warnings?
use strict;
use warnings;
use AnyEvent::Google::PageRank 'rank_get';
my $cv = AE::cv;
rank_get 'http://www.google.ru', sub {
print shift, "\n";
$cv->send;
};
$cv->recv;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment