Skip to content

Instantly share code, notes, and snippets.

View eserte's full-sized avatar

Slaven Rezić eserte

  • N 52.507377 E 13.460589
View GitHub Profile
@dpetrov
dpetrov / cpan_favorites.pl
Created November 7, 2012 08:24
Install all favorited distributions
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use Mojo::UserAgent;
my $url = shift @ARGV or die "Usage: $0 metacpan_author_url";
my $ua = Mojo::UserAgent->new;
my $dom = $ua->get($url)->res->dom;