Skip to content

Instantly share code, notes, and snippets.

@semifor
Created September 25, 2009 15:46
Show Gist options
  • Save semifor/193644 to your computer and use it in GitHub Desktop.
Save semifor/193644 to your computer and use it in GitHub Desktop.
my @friends;
for ( my $page = 1; 1; ++$page ) {
my $r = $nt->friends({ srceen_name => $screen_name, page => $page });
last unless @$r;
push @friends, @$r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment