From 6e732b22091c8f4e029af1ada0290808e164036f Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Sun, 18 Aug 2019 23:07:54 -0500 Subject: perl6 solution for task 1 --- challenge-022/randy-lauen/perl6/ch-1.p6 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 challenge-022/randy-lauen/perl6/ch-1.p6 diff --git a/challenge-022/randy-lauen/perl6/ch-1.p6 b/challenge-022/randy-lauen/perl6/ch-1.p6 new file mode 100644 index 0000000000..a16df8844c --- /dev/null +++ b/challenge-022/randy-lauen/perl6/ch-1.p6 @@ -0,0 +1,5 @@ +#!/usr/bin/env perl6 + +# Task: Write a script to print first 10 Sexy Prime Pairs. Sexy primes are prime numbers that differ from each other by 6. + +say (1 .. Inf).map( { $_, $_+6 } ).flat.grep( { $^a.is-prime && $^b.is-prime } ).head(10).join("\n"); -- cgit From 6d6e3664d0a2d3d3f382ace5bb94a16ac4276c89 Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Mon, 19 Aug 2019 11:49:07 -0500 Subject: perl5 solution for task 1 --- challenge-022/randy-lauen/perl5/ch-1.pl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 challenge-022/randy-lauen/perl5/ch-1.pl diff --git a/challenge-022/randy-lauen/perl5/ch-1.pl b/challenge-022/randy-lauen/perl5/ch-1.pl new file mode 100644 index 0000000000..9bfc8234a6 --- /dev/null +++ b/challenge-022/randy-lauen/perl5/ch-1.pl @@ -0,0 +1,18 @@ +#!/usr/bin/env perl + +use v5.26; +use strict; +use warnings; + +use Math::Prime::Util qw( prime_iterator is_prime ); + +my @matches; +my $it = prime_iterator(); + +while ( @matches < 10 ) { + my $prime = $it->(); + my $plus_six = $prime + 6; + push @matches, "$prime, $plus_six" if is_prime( $plus_six ); +} + +say join( "\n", @matches ); -- cgit From 5b0cf6989aece0ec2da49d6d2e4c2d4d04ba9850 Mon Sep 17 00:00:00 2001 From: Adam Russell Date: Wed, 21 Aug 2019 14:02:41 -0400 Subject: initial commit --- challenge-022/adam-russell/blog.txt | 0 challenge-022/adam-russell/perl5/ch-1.pl | 0 challenge-022/adam-russell/perl5/ch-2.pl | 0 challenge-022/adam-russell/perl6/ch-1.p6 | 0 challenge-022/adam-russell/perl6/ch-2.p6 | 0 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 challenge-022/adam-russell/blog.txt create mode 100644 challenge-022/adam-russell/perl5/ch-1.pl create mode 100644 challenge-022/adam-russell/perl5/ch-2.pl create mode 100644 challenge-022/adam-russell/perl6/ch-1.p6 create mode 100644 challenge-022/adam-russell/perl6/ch-2.p6 diff --git a/challenge-022/adam-russell/blog.txt b/challenge-022/adam-russell/blog.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/challenge-022/adam-russell/perl5/ch-1.pl b/challenge-022/adam-russell/perl5/ch-1.pl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/challenge-022/adam-russell/perl5/ch-2.pl b/challenge-022/adam-russell/perl5/ch-2.pl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/challenge-022/adam-russell/perl6/ch-1.p6 b/challenge-022/adam-russell/perl6/ch-1.p6 new file mode 100644 index 0000000000..e69de29bb2 diff --git a/challenge-022/adam-russell/perl6/ch-2.p6 b/challenge-022/adam-russell/perl6/ch-2.p6 new file mode 100644 index 0000000000..e69de29bb2 -- cgit From 7aa9479fd3773951c93c70004d7e8336402954a6 Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Wed, 21 Aug 2019 17:11:19 -0500 Subject: encode function --- challenge-022/randy-lauen/perl5/ch-2.pl | 46 +++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 challenge-022/randy-lauen/perl5/ch-2.pl diff --git a/challenge-022/randy-lauen/perl5/ch-2.pl b/challenge-022/randy-lauen/perl5/ch-2.pl new file mode 100644 index 0000000000..0fa86bbd95 --- /dev/null +++ b/challenge-022/randy-lauen/perl5/ch-2.pl @@ -0,0 +1,46 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use feature 'say'; + +# Task: +# Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. +# The script should have method to encode/decode algorithm. + +# This is a port of LZW-B found at https://marknelson.us/posts/2011/11/08/lzw-revisited.html + +encode( $ARGV[0] ); + +sub encode { + my $file = shift; + + open my $in, '<', $file or die $!; + open my $out, '>', "$file.lzw" or die $!; + + my %codes = map { chr($_) => $_ } 0 .. 255; + my $next_code = 256; + my $current_string = ''; + + while ( my $line = <$in> ) { + foreach my $char ( split //, $line ) { + $current_string .= $char; + if ( !exists $codes{ $current_string } ) { + $codes{ $current_string } = $next_code++; + $current_string = substr( $current_string, 0, -1 ); + print $out pack( 'S', $codes{ $current_string} ); + $current_string = $char; + } + } + + if ( length $current_string ) { + print $out pack( 'S', $codes{ $current_string} ); + } + } + + close $in; + close $out; + + return; +} + -- cgit From 14f3ef7240468c62a55f7a1e6b7a11b506cab369 Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Wed, 21 Aug 2019 17:17:01 -0500 Subject: bug fix --- challenge-022/randy-lauen/perl5/ch-2.pl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/challenge-022/randy-lauen/perl5/ch-2.pl b/challenge-022/randy-lauen/perl5/ch-2.pl index 0fa86bbd95..468680a919 100644 --- a/challenge-022/randy-lauen/perl5/ch-2.pl +++ b/challenge-022/randy-lauen/perl5/ch-2.pl @@ -1,15 +1,15 @@ #!/usr/bin/env perl -use strict; -use warnings; -use feature 'say'; - # Task: # Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. # The script should have method to encode/decode algorithm. # This is a port of LZW-B found at https://marknelson.us/posts/2011/11/08/lzw-revisited.html +use strict; +use warnings; +use feature 'say'; + encode( $ARGV[0] ); sub encode { @@ -32,10 +32,10 @@ sub encode { $current_string = $char; } } + } - if ( length $current_string ) { - print $out pack( 'S', $codes{ $current_string} ); - } + if ( length $current_string ) { + print $out pack( 'S', $codes{ $current_string} ); } close $in; -- cgit From e53696169ae773df677c2a170bb217c0793aa02c Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Wed, 21 Aug 2019 22:50:44 -0500 Subject: read in one byte at a time --- challenge-022/randy-lauen/perl5/ch-2.pl | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/challenge-022/randy-lauen/perl5/ch-2.pl b/challenge-022/randy-lauen/perl5/ch-2.pl index 468680a919..6a21c43c19 100644 --- a/challenge-022/randy-lauen/perl5/ch-2.pl +++ b/challenge-022/randy-lauen/perl5/ch-2.pl @@ -15,22 +15,21 @@ encode( $ARGV[0] ); sub encode { my $file = shift; - open my $in, '<', $file or die $!; + open my $in, '<:raw', $file or die $!; open my $out, '>', "$file.lzw" or die $!; my %codes = map { chr($_) => $_ } 0 .. 255; my $next_code = 256; my $current_string = ''; - while ( my $line = <$in> ) { - foreach my $char ( split //, $line ) { - $current_string .= $char; - if ( !exists $codes{ $current_string } ) { - $codes{ $current_string } = $next_code++; - $current_string = substr( $current_string, 0, -1 ); - print $out pack( 'S', $codes{ $current_string} ); - $current_string = $char; - } + my $char; + while ( read($in, $char, 1) ) { + $current_string .= $char; + if ( !exists $codes{ $current_string } ) { + $codes{ $current_string } = $next_code++; + $current_string = substr( $current_string, 0, -1 ); + print $out pack( 'S', $codes{ $current_string} ); + $current_string = $char; } } -- cgit From abbcff1705ff61ad99c2d08a0bff8fa3055a6c02 Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Sat, 24 Aug 2019 11:22:34 -0500 Subject: perl5 solution for task2 --- challenge-022/randy-lauen/perl5/ch-2.pl | 79 ++++++++++++++++++++++++----- challenge-022/randy-lauen/perl5/test-lzw.pl | 73 ++++++++++++++++++++++++++ 2 files changed, 139 insertions(+), 13 deletions(-) create mode 100644 challenge-022/randy-lauen/perl5/test-lzw.pl diff --git a/challenge-022/randy-lauen/perl5/ch-2.pl b/challenge-022/randy-lauen/perl5/ch-2.pl index 6a21c43c19..562681e704 100644 --- a/challenge-022/randy-lauen/perl5/ch-2.pl +++ b/challenge-022/randy-lauen/perl5/ch-2.pl @@ -1,45 +1,98 @@ #!/usr/bin/env perl -# Task: -# Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. -# The script should have method to encode/decode algorithm. +=head1 SYNOPSIS -# This is a port of LZW-B found at https://marknelson.us/posts/2011/11/08/lzw-revisited.html +Task: +Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. +The script should have method to encode/decode algorithm. + +This is a port of LZW-B found at https://marknelson.us/posts/2011/11/08/lzw-revisited.html. +See C for how to test this program. + +=cut use strict; use warnings; use feature 'say'; -encode( $ARGV[0] ); +use Getopt::Long; + +use constant MAX_CODE => 32767; + +my $encode; +my $decode; + +GetOptions( + 'encode' => \$encode, + 'decode' => \$decode, +) or die "GetOptions failed"; + +die "Must specify either --encode or --decode" unless $encode xor $decode; + +encode( $ARGV[0] ) if $encode; +decode( $ARGV[0] ) if $decode; + +exit 0; + sub encode { my $file = shift; - open my $in, '<:raw', $file or die $!; - open my $out, '>', "$file.lzw" or die $!; + open my $fh, '<:raw', $file or die $!; my %codes = map { chr($_) => $_ } 0 .. 255; my $next_code = 256; my $current_string = ''; my $char; - while ( read($in, $char, 1) ) { + while ( read($fh, $char, 1) ) { $current_string .= $char; if ( !exists $codes{ $current_string } ) { - $codes{ $current_string } = $next_code++; + if ( $next_code <= MAX_CODE ) { + $codes{ $current_string } = $next_code++; + } $current_string = substr( $current_string, 0, -1 ); - print $out pack( 'S', $codes{ $current_string} ); + print pack( 'S<', $codes{ $current_string } ); $current_string = $char; } } if ( length $current_string ) { - print $out pack( 'S', $codes{ $current_string} ); + print pack( 'S<', $codes{ $current_string} ); } - close $in; - close $out; + close $fh; return; } + +sub decode { + my $file = shift; + + open my $fh, '<:raw', $file or die $!; + + my %strings = map { $_ => chr($_) } 0 .. 255; + my $previous_string = ''; + my $next_code = 256; + + my $code; + while ( read($fh, $code, 2) ) { + $code = unpack( 'S<', $code ); + if ( !exists $strings{ $code } ) { + $strings{ $code } = $previous_string . substr($previous_string, 0, 1); + } + print $strings{ $code }; + if ( length $previous_string && $next_code <= MAX_CODE ) { + $strings{ $next_code++ } = $previous_string . substr( $strings{ $code }, 0, 1 ); + } + $previous_string = $strings{ $code }; + } + + close $fh; + + return; +} + + + diff --git a/challenge-022/randy-lauen/perl5/test-lzw.pl b/challenge-022/randy-lauen/perl5/test-lzw.pl new file mode 100644 index 0000000000..bbfa398ffe --- /dev/null +++ b/challenge-022/randy-lauen/perl5/test-lzw.pl @@ -0,0 +1,73 @@ +#!/usr/bin/env perl + +=head1 SYNOPSIS + +To test C, do the following: +* Download the Canterbury corpus at http://www.corpus.canterbury.ac.nz/descriptions/. +* Extract it to a directory. +* Run this script with that directory as an argument. + +Example output: + + $ perl test-lzw.pl cantrbry/ + +--------------+---------+------------+-------+ + | File | Size | Compressed | Ratio | + +--------------+---------+------------+-------+ + | alice29.txt | 152089 | 70226 | 46.2% | + | asyoulik.txt | 125179 | 62748 | 50.1% | + | cp.html | 24603 | 14948 | 60.8% | + | fields.c | 11150 | 7084 | 63.5% | + | grammar.lsp | 3721 | 2818 | 75.7% | + | kennedy.xls | 1029744 | 365572 | 35.5% | + | lcet10.txt | 426754 | 184752 | 43.3% | + | plrabn12.txt | 481861 | 218914 | 45.4% | + | ptt5 | 513216 | 70242 | 13.7% | + | sum | 38240 | 25054 | 65.5% | + | xargs.1 | 4227 | 3584 | 84.8% | + +--------------+---------+------------+-------+ + +=cut + +use strict; +use warnings; +use feature 'say'; + +use Carp::Assert; +use Path::Tiny; +use File::Compare (); +use Text::Table::Tiny (); + +my $dir = $ARGV[0] // ''; +die "'$dir' must be readable directory\n" unless -r -d $dir; + +my @rows = ( [ 'File', 'Size', 'Compressed', 'Ratio' ] ); + +for my $file ( sort( path($dir)->children() ) ) { + my $basename = $file->basename; + my $encoded_file = "/tmp/$basename.encoded"; + my $decoded_file = "/tmp/$basename.decoded"; + + system("perl ./ch-2.pl --encode $file > $encoded_file") == 0 + or die "encoding failed: $?"; + + system("perl ./ch-2.pl --decode $encoded_file > $decoded_file") == 0 + or die "decoding failed: $?"; + + if ( File::Compare::compare( $file, $decoded_file ) == 0 ) { + push @rows, [ + $basename, + -s $file, + -s $encoded_file, + sprintf( "%.1f%%", 100 * ( (-s $encoded_file) / (-s $file) ) ) + ], + } + else { + die "Files differ: $file, $decoded_file"; + } +} + +say Text::Table::Tiny::generate_table( rows => \@rows, header_row => 1 ); + +exit 0; + + -- cgit From bccf9cbda68acdc5c264eabb81af1bd8c8a9ecc8 Mon Sep 17 00:00:00 2001 From: Adam Russell Date: Sun, 25 Aug 2019 10:57:05 -0400 Subject: solutions for challenge 022 --- challenge-022/adam-russell/blog.txt | 1 + challenge-022/adam-russell/perl5/ch-1.pl | 41 ++++++++++++++++++ challenge-022/adam-russell/perl5/ch-2.pl | 71 ++++++++++++++++++++++++++++++++ challenge-022/adam-russell/perl6/ch-1.p6 | 0 challenge-022/adam-russell/perl6/ch-2.p6 | 0 5 files changed, 113 insertions(+) delete mode 100644 challenge-022/adam-russell/perl6/ch-1.p6 delete mode 100644 challenge-022/adam-russell/perl6/ch-2.p6 diff --git a/challenge-022/adam-russell/blog.txt b/challenge-022/adam-russell/blog.txt index e69de29bb2..6ac9c77e8b 100644 --- a/challenge-022/adam-russell/blog.txt +++ b/challenge-022/adam-russell/blog.txt @@ -0,0 +1 @@ +https://adamcrussell.livejournal.com/7521.html diff --git a/challenge-022/adam-russell/perl5/ch-1.pl b/challenge-022/adam-russell/perl5/ch-1.pl index e69de29bb2..ecb9a0905d 100644 --- a/challenge-022/adam-russell/perl5/ch-1.pl +++ b/challenge-022/adam-russell/perl5/ch-1.pl @@ -0,0 +1,41 @@ +use strict; +use warnings; +## +# Write a script to print the first 10 sexy prime numbers. +## +use boolean; +use LWP::UserAgent; +use constant PRIME_URL => "http://primes.utm.edu/lists/small/100000.txt"; + +sub get_primes{ + my @primes; + my $ua = new LWP::UserAgent( + ssl_opts => {verify_hostname => 0} + ); + my $response = $ua->get(PRIME_URL); + my @lines = split(/\n/,$response->decoded_content); + foreach my $line (@lines){ + my @p = split(/\s+/, $line); + unless(@p < 10){ + push @primes, @p[1..(@p - 1)]; + } + } + return @primes; +} + +MAIN:{ + my @sexy; + my @primes = get_primes(); + for my $i (0 .. (@primes - 1)){ + for my $j (($i + 1) .. (@primes - 1)){ + last if($primes[$j] - $primes[$i] > 6); + push @sexy, [$primes[$i], $primes[$j]] if($primes[$j] - $primes[$i] == 6); + last if(@sexy == 10); + } + last if(@sexy == 10); + } + for my $pair (@sexy){ + print "[" . join(", ", @{$pair}) . "]"; + } + print "\n"; +} diff --git a/challenge-022/adam-russell/perl5/ch-2.pl b/challenge-022/adam-russell/perl5/ch-2.pl index e69de29bb2..066f0834d5 100644 --- a/challenge-022/adam-russell/perl5/ch-2.pl +++ b/challenge-022/adam-russell/perl5/ch-2.pl @@ -0,0 +1,71 @@ +use strict; +use warnings; +## +# Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. +## +use constant TABLE_SIZE => 256; + +sub initialize_table{ + my $code = 0; + my %compression_table; + do{ + $compression_table{chr($code)} = $code++; + }while($code < TABLE_SIZE); + return %compression_table; +} + +sub encode{ + my($string) = @_; + my %compression_table = initialize_table(); + my $code = keys %compression_table; + my @encoded; + my @characters = split(//, $string); + my $p = shift @characters; + while(@characters){ + my $c = shift @characters; + if($compression_table{"$p$c"}){ + $p = "$p$c"; + } + else{ + push @encoded, $compression_table{$p}; + $compression_table{"$p$c"} = $code++; + $p = $c; + } + } + push @encoded, $compression_table{$p}; + return @encoded; +} + +sub decode{ + my(@codes) = @_; + my %decoding_table = reverse(initialize_table()); + my $code = keys %decoding_table; + my $string = ""; + my $p = shift @codes; + my $c; + $string = $decoding_table{$p}; + while(@codes){ + $c = shift @codes; + my $entry = $decoding_table{$c}; + $string .= $entry; + my $first_character = substr($entry, 0, 1); + my $string_previous = $decoding_table{$p}; + $decoding_table{$code++} = "$string_previous$first_character"; + $p = $c; + } + return $string; +} + +MAIN:{ + my $text = ; + chomp($text); + initialize_table(); + print join(" ", encode($text)); + print "\n"; + print decode(encode($text)); + print "\n"; +} + + +__DATA__ +Abra abracadabra diff --git a/challenge-022/adam-russell/perl6/ch-1.p6 b/challenge-022/adam-russell/perl6/ch-1.p6 deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/challenge-022/adam-russell/perl6/ch-2.p6 b/challenge-022/adam-russell/perl6/ch-2.p6 deleted file mode 100644 index e69de29bb2..0000000000 -- cgit From f62f089a449a880c427cf524014f144e2e92c198 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 25 Aug 2019 16:45:07 +0100 Subject: - Added solutions by Adam Russell. --- stats/pwc-current.json | 177 +++++----- stats/pwc-language-breakdown-summary.json | 58 ++-- stats/pwc-language-breakdown.json | 370 ++++++++++----------- stats/pwc-leaders.json | 518 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 110 +++---- stats/pwc-summary-31-60.json | 110 +++---- stats/pwc-summary-61-90.json | 46 +-- stats/pwc-summary-91-120.json | 46 +-- stats/pwc-summary.json | 50 +-- 9 files changed, 752 insertions(+), 733 deletions(-) diff --git a/stats/pwc-current.json b/stats/pwc-current.json index e96d29227e..9653c5e173 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,30 +1,28 @@ { - "xAxis" : { - "type" : "category" + "legend" : { + "enabled" : 0 }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 + "yAxis" : { + "title" : { + "text" : "Total Solutions" } }, - "title" : { - "text" : "Perl Weekly Challenge - 022" - }, - "subtitle" : { - "text" : "[Champions: 15] Last updated at 2019-08-25 14:32:19 GMT" + "chart" : { + "type" : "column" }, "series" : [ { - "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 022", "data" : [ { - "y" : 1, + "drilldown" : "Adam Russell", + "name" : "Adam Russell", + "y" : 3 + }, + { "name" : "Andrezgz", - "drilldown" : "Andrezgz" + "drilldown" : "Andrezgz", + "y" : 1 }, { "y" : 1, @@ -32,24 +30,24 @@ "name" : "Daniel Mantovani" }, { - "y" : 2, + "drilldown" : "Duane Powell", "name" : "Duane Powell", - "drilldown" : "Duane Powell" + "y" : 2 }, { - "drilldown" : "E. Choroba", + "y" : 2, "name" : "E. Choroba", - "y" : 2 + "drilldown" : "E. Choroba" }, { - "drilldown" : "Joelle Maslak", + "y" : 2, "name" : "Joelle Maslak", - "y" : 2 + "drilldown" : "Joelle Maslak" }, { + "y" : 2, "name" : "Kevin Colyer", - "drilldown" : "Kevin Colyer", - "y" : 2 + "drilldown" : "Kevin Colyer" }, { "y" : 1, @@ -62,24 +60,24 @@ "drilldown" : "Laurent Rosenfeld" }, { + "y" : 2, "drilldown" : "Mark Senn", - "name" : "Mark Senn", - "y" : 2 + "name" : "Mark Senn" }, { - "drilldown" : "Ozzy", "name" : "Ozzy", + "drilldown" : "Ozzy", "y" : 1 }, { - "drilldown" : "Roger Bell West", "name" : "Roger Bell West", + "drilldown" : "Roger Bell West", "y" : 4 }, { - "y" : 4, + "name" : "Ruben Westerberg", "drilldown" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + "y" : 4 }, { "y" : 2, @@ -87,70 +85,71 @@ "drilldown" : "Simon Proctor" }, { - "drilldown" : "Steven Wilson", "name" : "Steven Wilson", + "drilldown" : "Steven Wilson", "y" : 1 }, { + "y" : 5, "drilldown" : "Yet Ebreo", - "name" : "Yet Ebreo", - "y" : 5 + "name" : "Yet Ebreo" } ], - "name" : "Perl Weekly Challenge - 022" + "colorByPoint" : 1 } ], - "legend" : { - "enabled" : 0 - }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { + "id" : "Adam Russell", + "data" : [ + [ + "Perl 5", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Adam Russell" + }, + { + "id" : "Andrezgz", "data" : [ [ "Perl 5", 1 ] ], - "name" : "Andrezgz", - "id" : "Andrezgz" + "name" : "Andrezgz" }, { - "id" : "Daniel Mantovani", "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 1 ] - ] + ], + "id" : "Daniel Mantovani" }, { - "id" : "Duane Powell", - "name" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Duane Powell", + "id" : "Duane Powell" }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl 5", @@ -159,6 +158,7 @@ ] }, { + "name" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -169,8 +169,7 @@ 1 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "id" : "Joelle Maslak" }, { "data" : [ @@ -183,16 +182,18 @@ "id" : "Kevin Colyer" }, { + "name" : "Kian-Meng Ang", "data" : [ [ "Perl 5", 1 ] ], - "name" : "Kian-Meng Ang", "id" : "Kian-Meng Ang" }, { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -206,13 +207,9 @@ "Blog", 1 ] - ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + ] }, { - "name" : "Mark Senn", - "id" : "Mark Senn", "data" : [ [ "Perl 6", @@ -222,19 +219,23 @@ "Blog", 1 ] - ] + ], + "name" : "Mark Senn", + "id" : "Mark Senn" }, { + "name" : "Ozzy", "data" : [ [ "Perl 6", 1 ] ], - "name" : "Ozzy", "id" : "Ozzy" }, { + "id" : "Roger Bell West", + "name" : "Roger Bell West", "data" : [ [ "Perl 5", @@ -248,11 +249,10 @@ "Blog", 1 ] - ], - "name" : "Roger Bell West", - "id" : "Roger Bell West" + ] }, { + "name" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -263,31 +263,29 @@ 2 ] ], - "name" : "Ruben Westerberg", "id" : "Ruben Westerberg" }, { - "id" : "Simon Proctor", - "name" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ] + ], + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { + "id" : "Steven Wilson", "data" : [ [ "Perl 5", 1 ] ], - "name" : "Steven Wilson", - "id" : "Steven Wilson" + "name" : "Steven Wilson" }, { - "name" : "Yet Ebreo", "id" : "Yet Ebreo", "data" : [ [ @@ -302,8 +300,29 @@ "Blog", 1 ] - ] + ], + "name" : "Yet Ebreo" } ] + }, + "title" : { + "text" : "Perl Weekly Challenge - 022" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "subtitle" : { + "text" : "[Champions: 16] Last updated at 2019-08-25 15:44:38 GMT" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1, + "headerFormat" : "{series.name}
" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index f6a7fc2694..a0db8f5797 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "subtitle" : { + "text" : "Last updated at 2019-08-25 15:44:49 GMT" + }, "series" : [ { - "name" : "Contributions", "data" : [ [ "Blog", - 227 + 228 ], [ "Perl 5", - 905 + 907 ], [ "Perl 6", 541 ] ], + "name" : "Contributions", "dataLabels" : { - "y" : 10, + "rotation" : -90, "format" : "{point.y:.0f}", "enabled" : "true", - "color" : "#FFFFFF", - "align" : "right", - "rotation" : -90, "style" : { "fontFamily" : "Verdana, sans-serif", "fontSize" : "13px" - } + }, + "color" : "#FFFFFF", + "align" : "right", + "y" : 10 } } ], - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, "chart" : { "type" : "column" }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } + "yAxis" : { + "title" : { + "text" : null }, - "type" : "category" - }, - "subtitle" : { - "text" : "Last updated at 2019-08-25 14:32:57 GMT" + "min" : 0 }, "legend" : { "enabled" : "false" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 0000225501..b8616e8cec 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,160 +1,8 @@ { - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-08-25 14:32:57 GMT" - }, - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "series" : [ - { - "colorByPoint" : "true", - "data" : [ - { - "y" : 127, - "drilldown" : "001", - "name" : "#001" - }, - { - "drilldown" : "002", - "name" : "#002", - "y" : 104 - }, - { - "y" : 66, - "drilldown" : "003", - "name" : "#003" - }, - { - "name" : "#004", - "drilldown" : "004", - "y" : 84 - }, - { - "y" : 66, - "drilldown" : "005", - "name" : "#005" - }, - { - "drilldown" : "006", - "name" : "#006", - "y" : 47 - }, - { - "drilldown" : "007", - "name" : "#007", - "y" : 55 - }, - { - "drilldown" : "008", - "name" : "#008", - "y" : 68 - }, - { - "y" : 66, - "drilldown" : "009", - "name" : "#009" - }, - { - "y" : 59, - "drilldown" : "010", - "name" : "#010" - }, - { - "y" : 78, - "drilldown" : "011", - "name" : "#011" - }, - { - "y" : 82, - "drilldown" : "012", - "name" : "#012" - }, - { - "y" : 75, - "name" : "#013", - "drilldown" : "013" - }, - { - "drilldown" : "014", - "name" : "#014", - "y" : 95 - }, - { - "name" : "#015", - "drilldown" : "015", - "y" : 91 - }, - { - "drilldown" : "016", - "name" : "#016", - "y" : 65 - }, - { - "y" : 78, - "name" : "#017", - "drilldown" : "017" - }, - { - "name" : "#018", - "drilldown" : "018", - "y" : 76 - }, - { - "name" : "#019", - "drilldown" : "019", - "y" : 95 - }, - { - "y" : 95, - "drilldown" : "020", - "name" : "#020" - }, - { - "name" : "#021", - "drilldown" : "021", - "y" : 66 - }, - { - "y" : 35, - "name" : "#022", - "drilldown" : "022" - } - ], - "name" : "Perl Weekly Challenge Languages" - } - ], - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "drilldown" : { "series" : [ { - "name" : "001", + "id" : "001", "data" : [ [ "Perl 5", @@ -169,10 +17,11 @@ 10 ] ], - "id" : "001" + "name" : "001" }, { "id" : "002", + "name" : "002", "data" : [ [ "Perl 5", @@ -186,10 +35,11 @@ "Blog", 9 ] - ], - "name" : "002" + ] }, { + "id" : "003", + "name" : "003", "data" : [ [ "Perl 5", @@ -203,9 +53,7 @@ "Blog", 8 ] - ], - "id" : "003", - "name" : "003" + ] }, { "name" : "004", @@ -226,7 +74,7 @@ "id" : "004" }, { - "id" : "005", + "name" : "005", "data" : [ [ "Perl 5", @@ -241,10 +89,10 @@ 11 ] ], - "name" : "005" + "id" : "005" }, { - "id" : "006", + "name" : "006", "data" : [ [ "Perl 5", @@ -259,11 +107,11 @@ 6 ] ], - "name" : "006" + "id" : "006" }, { - "name" : "007", "id" : "007", + "name" : "007", "data" : [ [ "Perl 5", @@ -280,6 +128,7 @@ ] }, { + "id" : "008", "data" : [ [ "Perl 5", @@ -294,10 +143,10 @@ 10 ] ], - "id" : "008", "name" : "008" }, { + "id" : "009", "data" : [ [ "Perl 5", @@ -312,10 +161,10 @@ 12 ] ], - "id" : "009", "name" : "009" }, { + "id" : "010", "data" : [ [ "Perl 5", @@ -330,12 +179,11 @@ 10 ] ], - "id" : "010", "name" : "010" }, { - "name" : "011", "id" : "011", + "name" : "011", "data" : [ [ "Perl 5", @@ -353,6 +201,7 @@ }, { "id" : "012", + "name" : "012", "data" : [ [ "Perl 5", @@ -366,8 +215,7 @@ "Blog", 10 ] - ], - "name" : "012" + ] }, { "data" : [ @@ -384,8 +232,8 @@ 12 ] ], - "id" : "013", - "name" : "013" + "name" : "013", + "id" : "013" }, { "name" : "014", @@ -406,7 +254,7 @@ "id" : "014" }, { - "name" : "015", + "id" : "015", "data" : [ [ "Perl 5", @@ -421,7 +269,7 @@ 13 ] ], - "id" : "015" + "name" : "015" }, { "name" : "016", @@ -442,6 +290,7 @@ "id" : "016" }, { + "name" : "017", "data" : [ [ "Perl 5", @@ -456,10 +305,10 @@ 11 ] ], - "id" : "017", - "name" : "017" + "id" : "017" }, { + "name" : "018", "data" : [ [ "Perl 5", @@ -474,11 +323,9 @@ 14 ] ], - "id" : "018", - "name" : "018" + "id" : "018" }, { - "name" : "019", "id" : "019", "data" : [ [ @@ -493,10 +340,10 @@ "Blog", 13 ] - ] + ], + "name" : "019" }, { - "name" : "020", "data" : [ [ "Perl 5", @@ -511,10 +358,11 @@ 13 ] ], + "name" : "020", "id" : "020" }, { - "name" : "021", + "id" : "021", "data" : [ [ "Perl 5", @@ -529,14 +377,14 @@ 9 ] ], - "id" : "021" + "name" : "021" }, { "id" : "022", "data" : [ [ "Perl 5", - 19 + 21 ], [ "Perl 6", @@ -544,11 +392,163 @@ ], [ "Blog", - 4 + 5 ] ], "name" : "022" } ] + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-08-25 15:44:49 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "xAxis" : { + "type" : "category" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "name" : "#001", + "y" : 127, + "drilldown" : "001" + }, + { + "drilldown" : "002", + "y" : 104, + "name" : "#002" + }, + { + "y" : 66, + "name" : "#003", + "drilldown" : "003" + }, + { + "name" : "#004", + "y" : 84, + "drilldown" : "004" + }, + { + "name" : "#005", + "y" : 66, + "drilldown" : "005" + }, + { + "y" : 47, + "name" : "#006", + "drilldown" : "006" + }, + { + "drilldown" : "007", + "name" : "#007", + "y" : 55 + }, + { + "drilldown" : "008", + "name" : "#008", + "y" : 68 + }, + { + "drilldown" : "009", + "y" : 66, + "name" : "#009" + }, + { + "name" : "#010", + "y" : 59, + "drilldown" : "010" + }, + { + "y" : 78, + "name" : "#011", + "drilldown" : "011" + }, + { + "name" : "#012", + "y" : 82, + "drilldown" : "012" + }, + { + "drilldown" : "013", + "y" : 75, + "name" : "#013" + }, + { + "name" : "#014", + "y" : 95, + "drilldown" : "014" + }, + { + "y" : 91, + "name" : "#015", + "drilldown" : "015" + }, + { + "name" : "#016", + "y" : 65, + "drilldown" : "016" + }, + { + "y" : 78, + "name" : "#017", + "drilldown" : "017" + }, + { + "drilldown" : "018", + "y" : 76, + "name" : "#018" + }, + { + "drilldown" : "019", + "name" : "#019", + "y" : 95 + }, + { + "drilldown" : "020", + "y" : 95, + "name" : "#020" + }, + { + "drilldown" : "021", + "name" : "#021", + "y" : 66 + }, + { + "drilldown" : "022", + "y" : 38, + "name" : "#022" + } + ], + "name" : "Perl Weekly Challenge Languages" + } + ], + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "headerFormat" : "" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 9f4c2333ad..b1b459fc00 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,110 +1,100 @@ { - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, "yAxis" : { "title" : { "text" : "Total Score" } }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" + "legend" : { + "enabled" : "false" }, "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-08-25 14:32:45 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-08-25 15:44:44 GMT" }, - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "chart" : { + "type" : "column" }, "series" : [ { + "name" : "Perl Weekly Challenge Leaders", "colorByPoint" : "true", "data" : [ { - "name" : "#1: Laurent Rosenfeld", "drilldown" : "Laurent Rosenfeld", - "y" : 244 + "y" : 244, + "name" : "#1: Laurent Rosenfeld" }, { - "name" : "#2: Joelle Maslak", "drilldown" : "Joelle Maslak", - "y" : 232 + "y" : 232, + "name" : "#2: Joelle Maslak" }, { "drilldown" : "Jaldhar H. Vyas", - "y" : 182, - "name" : "#3: Jaldhar H. Vyas" + "name" : "#3: Jaldhar H. Vyas", + "y" : 182 }, { - "y" : 164, "drilldown" : "Ruben Westerberg", + "y" : 164, "name" : "#4: Ruben Westerberg" }, { - "name" : "#5: Adam Russell", "drilldown" : "Adam Russell", - "y" : 136 + "y" : 142, + "name" : "#5: Adam Russell" }, { - "y" : 134, "drilldown" : "Athanasius", + "y" : 134, "name" : "#6: Athanasius" }, { + "y" : 120, "name" : "#7: Kian-Meng Ang", - "drilldown" : "Kian-Meng Ang", - "y" : 120 + "drilldown" : "Kian-Meng Ang" }, { + "name" : "#8: Arne Sommer", "y" : 118, - "drilldown" : "Arne Sommer", - "name" : "#8: Arne Sommer" + "drilldown" : "Arne Sommer" }, { "name" : "#9: E. Choroba", - "drilldown" : "E. Choroba", - "y" : 106 + "y" : 106, + "drilldown" : "E. Choroba" }, { + "y" : 94, "name" : "#10: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 94 + "drilldown" : "Simon Proctor" }, { - "drilldown" : "Francis Whittle", "y" : 92, - "name" : "#11: Francis Whittle" + "name" : "#11: Francis Whittle", + "drilldown" : "Francis Whittle" }, { "name" : "#12: Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 90 + "y" : 90, + "drilldown" : "Dave Jacoby" }, { + "y" : 82, "name" : "#13: Andrezgz", - "drilldown" : "Andrezgz", - "y" : 82 + "drilldown" : "Andrezgz" }, { + "name" : "#14: Feng Chang", "y" : 80, - "drilldown" : "Feng Chang", - "name" : "#14: Feng Chang" + "drilldown" : "Feng Chang" }, { + "drilldown" : "Daniel Mantovani", "name" : "#15: Daniel Mantovani", - "y" : 74, - "drilldown" : "Daniel Mantovani" + "y" : 74 }, { "name" : "#16: Duncan C. White", @@ -112,24 +102,24 @@ "drilldown" : "Duncan C. White" }, { - "drilldown" : "Gustavo Chaves", "y" : 72, - "name" : "#17: Gustavo Chaves" + "name" : "#17: Gustavo Chaves", + "drilldown" : "Gustavo Chaves" }, { + "name" : "#18: Steven Wilson", "y" : 70, - "drilldown" : "Steven Wilson", - "name" : "#18: Steven Wilson" + "drilldown" : "Steven Wilson" }, { - "name" : "#19: Yozen Hernandez", "drilldown" : "Yozen Hernandez", + "name" : "#19: Yozen Hernandez", "y" : 70 }, { + "drilldown" : "Roger Bell West", "name" : "#20: Roger Bell West", - "y" : 60, - "drilldown" : "Roger Bell West" + "y" : 60 }, { "drilldown" : "Jo Christian Oterhals", @@ -137,83 +127,83 @@ "name" : "#21: Jo Christian Oterhals" }, { + "y" : 50, "name" : "#22: Mark Senn", - "drilldown" : "Mark Senn", - "y" : 50 + "drilldown" : "Mark Senn" }, { - "name" : "#23: Guillermo Ramos", + "drilldown" : "Guillermo Ramos", "y" : 46, - "drilldown" : "Guillermo Ramos" + "name" : "#23: Guillermo Ramos" }, { - "drilldown" : "Ozzy", "y" : 46, - "name" : "#24: Ozzy" + "name" : "#24: Ozzy", + "drilldown" : "Ozzy" }, { "y" : 44, - "drilldown" : "Dr James A. Smith", - "name" : "#25: Dr James A. Smith" + "name" : "#25: Dr James A. Smith", + "drilldown" : "Dr James A. Smith" }, { - "drilldown" : "Kevin Colyer", "y" : 42, - "name" : "#26: Kevin Colyer" + "name" : "#26: Kevin Colyer", + "drilldown" : "Kevin Colyer" }, { "y" : 42, - "drilldown" : "Veesh Goldman", - "name" : "#27: Veesh Goldman" + "name" : "#27: Veesh Goldman", + "drilldown" : "Veesh Goldman" }, { - "drilldown" : "Lubos Kolouch", "y" : 38, - "name" : "#28: Lubos Kolouch" + "name" : "#28: Lubos Kolouch", + "drilldown" : "Lubos Kolouch" }, { "name" : "#29: Duane Powell", - "drilldown" : "Duane Powell", - "y" : 34 + "y" : 34, + "drilldown" : "Duane Powell" }, { - "y" : 32, "drilldown" : "Nick Logan", + "y" : 32, "name" : "#30: Nick Logan" }, { "drilldown" : "Noud", - "y" : 32, - "name" : "#31: Noud" + "name" : "#31: Noud", + "y" : 32 }, { + "drilldown" : "Lars Balker", "name" : "#32: Lars Balker", - "y" : 28, - "drilldown" : "Lars Balker" + "y" : 28 }, { + "y" : 24, "name" : "#33: Jaime Corchado", - "drilldown" : "Jaime Corchado", - "y" : 24 + "drilldown" : "Jaime Corchado" }, { - "name" : "#34: Maxim Nechaev", "drilldown" : "Maxim Nechaev", + "name" : "#34: Maxim Nechaev", "y" : 24 }, { - "y" : 24, "drilldown" : "Randy Lauen", + "y" : 24, "name" : "#35: Randy Lauen" }, { + "name" : "#36: Alicia Bielsa", "y" : 22, - "drilldown" : "Alicia Bielsa", - "name" : "#36: Alicia Bielsa" + "drilldown" : "Alicia Bielsa" }, { - "y" : 20, "drilldown" : "Doug Schrag", + "y" : 20, "name" : "#37: Doug Schrag" }, { @@ -222,39 +212,39 @@ "name" : "#38: Neil Bowers" }, { - "drilldown" : "Yet Ebreo", "y" : 18, - "name" : "#39: Yet Ebreo" + "name" : "#39: Yet Ebreo", + "drilldown" : "Yet Ebreo" }, { - "name" : "#40: Dave Cross", "drilldown" : "Dave Cross", - "y" : 16 + "y" : 16, + "name" : "#40: Dave Cross" }, { - "y" : 16, "drilldown" : "Pete Houston", - "name" : "#41: Pete Houston" + "name" : "#41: Pete Houston", + "y" : 16 }, { - "name" : "#42: Robert Gratza", "y" : 16, + "name" : "#42: Robert Gratza", "drilldown" : "Robert Gratza" }, { "y" : 14, - "drilldown" : "John Barrett", - "name" : "#43: John Barrett" + "name" : "#43: John Barrett", + "drilldown" : "John Barrett" }, { + "name" : "#44: Khalid", "y" : 14, - "drilldown" : "Khalid", - "name" : "#44: Khalid" + "drilldown" : "Khalid" }, { "y" : 14, - "drilldown" : "Walt Mankowski", - "name" : "#45: Walt Mankowski" + "name" : "#45: Walt Mankowski", + "drilldown" : "Walt Mankowski" }, { "name" : "#46: Aaron Sherman", @@ -267,49 +257,56 @@ "drilldown" : "Donald Hunter" }, { - "name" : "#48: Kivanc Yazan", "drilldown" : "Kivanc Yazan", + "name" : "#48: Kivanc Yazan", "y" : 12 }, { - "name" : "#49: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", "y" : 12, - "drilldown" : "Maxim Kolodyazhny" + "name" : "#49: Maxim Kolodyazhny" }, { - "drilldown" : "Philippe Bruhat", "y" : 12, - "name" : "#50: Philippe Bruhat" + "name" : "#50: Philippe Bruhat", + "drilldown" : "Philippe Bruhat" } - ], - "name" : "Perl Weekly Challenge Leaders" + ] } ], - "xAxis" : { - "type" : "category" + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "" }, "drilldown" : { "series" : [ { + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 6", 43 ], - [ - "Blog", - 35 - ], [ "Perl 5", 44 + ], + [ + "Blog", + 35 ] ], - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld" }, { + "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ + [ + "Perl 6", + 56 + ], [ "Perl 5", 56 @@ -317,34 +314,30 @@ [ "Blog", 4 - ], - [ - "Perl 6", - 56 ] - ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + ] }, { - "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", "data" : [ [ "Perl 6", 41 ], - [ - "Blog", - 8 - ], [ "Perl 5", 42 + ], + [ + "Blog", + 8 ] ], - "name" : "Jaldhar H. Vyas" + "id" : "Jaldhar H. Vyas" }, { + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ "Perl 6", @@ -354,30 +347,27 @@ "Perl 5", 41 ] - ], - "name" : "Ruben Westerberg", - "id" : "Ruben Westerberg" + ] }, { "name" : "Adam Russell", + "id" : "Adam Russell", "data" : [ [ "Blog", - 22 + 23 ], [ "Perl 5", - 43 + 45 ], [ "Perl 6", 3 ] - ], - "id" : "Adam Russell" + ] }, { - "id" : "Athanasius", "data" : [ [ "Blog", @@ -392,6 +382,7 @@ 20 ] ], + "id" : "Athanasius", "name" : "Athanasius" }, { @@ -410,49 +401,49 @@ }, { "data" : [ - [ - "Perl 6", - 39 - ], [ "Blog", 20 + ], + [ + "Perl 6", + 39 ] ], - "name" : "Arne Sommer", - "id" : "Arne Sommer" + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { "id" : "E. Choroba", "data" : [ - [ - "Perl 5", - 36 - ], [ "Blog", 17 + ], + [ + "Perl 5", + 36 ] ], "name" : "E. Choroba" }, { "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ - [ - "Perl 6", - 36 - ], [ "Blog", 7 ], + [ + "Perl 6", + 36 + ], [ "Perl 5", 4 ] - ], - "id" : "Simon Proctor" + ] }, { "id" : "Francis Whittle", @@ -469,68 +460,69 @@ "name" : "Francis Whittle" }, { - "id" : "Dave Jacoby", "name" : "Dave Jacoby", "data" : [ - [ - "Perl 6", - 1 - ], [ "Perl 5", 26 ], + [ + "Perl 6", + 1 + ], [ "Blog", 18 ] - ] + ], + "id" : "Dave Jacoby" }, { - "name" : "Andrezgz", "data" : [ [ "Perl 5", 41 ] ], - "id" : "Andrezgz" + "id" : "Andrezgz", + "name" : "Andrezgz" }, { - "id" : "Feng Chang", - "name" : "Feng Chang", "data" : [ - [ - "Perl 6", - 21 - ], [ "Perl 5", 19 + ], + [ + "Perl 6", + 21 ] - ] + ], + "id" : "Feng Chang", + "name" : "Feng Chang" }, { - "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 37 ] ], - "name" : "Daniel Mantovani" + "id" : "Daniel Mantovani" }, { + "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Perl 5", 36 ] - ], - "name" : "Duncan C. White", - "id" : "Duncan C. White" + ] }, { + "name" : "Gustavo Chaves", "data" : [ [ "Blog", @@ -541,12 +533,11 @@ 32 ] ], - "name" : "Gustavo Chaves", "id" : "Gustavo Chaves" }, { - "id" : "Steven Wilson", "name" : "Steven Wilson", + "id" : "Steven Wilson", "data" : [ [ "Blog", @@ -559,7 +550,6 @@ ] }, { - "id" : "Yozen Hernandez", "name" : "Yozen Hernandez", "data" : [ [ @@ -570,19 +560,20 @@ "Perl 5", 21 ] - ] + ], + "id" : "Yozen Hernandez" }, { "id" : "Roger Bell West", "data" : [ - [ - "Perl 6", - 6 - ], [ "Perl 5", 18 ], + [ + "Perl 6", + 6 + ], [ "Blog", 6 @@ -591,73 +582,74 @@ "name" : "Roger Bell West" }, { - "name" : "Jo Christian Oterhals", "data" : [ [ - "Blog", - 7 + "Perl 6", + 15 ], [ "Perl 5", 6 ], [ - "Perl 6", - 15 + "Blog", + 7 ] ], - "id" : "Jo Christian Oterhals" + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals" }, { -