Created
March 7, 2010 06:06
-
-
Save yusukebe/324201 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git shortlog -s -n | perl -MURI::Escape -e 'while (<STDIN>) { $_ =~ /(\d+)\s+([\w|\s]+\w$)/; push @data, $1; push @text, uri_escape($2); } $chd = "chd=t:" . join ",", @data; $chl = "chl=" . join "|", @text; print "http://chart.apis.google.com/chart?cht=p3&chs=800x300&$chd&$chl\n";' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment