From b9918afa6541dd8fb9b4080c1670a4d2f7fc5fbc Mon Sep 17 00:00:00 2001 From: Lars Balker Date: Tue, 10 Sep 2019 17:11:12 +0200 Subject: 25 ch1 --- challenge-025/lars-balker/perl5/ch-1.pl | 41 +++++++++++++++++++++++++++++++++ challenge-025/lars-balker/perl5/ch-2.pl | 9 ++++++++ 2 files changed, 50 insertions(+) create mode 100644 challenge-025/lars-balker/perl5/ch-1.pl create mode 100644 challenge-025/lars-balker/perl5/ch-2.pl diff --git a/challenge-025/lars-balker/perl5/ch-1.pl b/challenge-025/lars-balker/perl5/ch-1.pl new file mode 100644 index 0000000000..c8715b78a7 --- /dev/null +++ b/challenge-025/lars-balker/perl5/ch-1.pl @@ -0,0 +1,41 @@ +#!/usr/bin/env perl + +use v5.20; +use strict; +use warnings; + +# Generate a longest sequence of the following “English Pokemon” names +# where each name starts with the last letter of previous name. + +my @names = qw/ + audino bagon baltoy banette bidoof braviary bronzor carracosta + charmeleon cresselia croagunk darmanitan deino emboar emolga + exeggcute gabite girafarig gulpin haxorus heatmor heatran ivysaur + jellicent jumpluff kangaskhan kricketune landorus ledyba loudred + lumineon lunatone machamp magnezone mamoswine nosepass petilil + pidgeotto pikachu pinsir poliwrath poochyena porygon2 porygonz + registeel relicanth remoraid rufflet sableye scolipede scrafty + seaking sealeo silcoon simisear snivy snorlax spoink starly + tirtouga trapinch treecko tyrogue vigoroth vulpix wailord + wartortle whismur wingull yamask +/; + +my $longest = []; + +try([], "", @names); + +say "@$longest"; + +# naive O(n^2) recursion +sub try { + my ($picks, $prefix, @rest) = @_; + + $longest = $picks if @$picks > @$longest; + + for (my $i = 0; $i < @rest; ++$i) { + next unless $rest[$i] =~ /^$prefix/; + try([@$picks, $rest[$i]], + substr($rest[$i], -1), + @rest[0..$i-1, $i+1..$#rest]); + } +} diff --git a/challenge-025/lars-balker/perl5/ch-2.pl b/challenge-025/lars-balker/perl5/ch-2.pl new file mode 100644 index 0000000000..b761386dc7 --- /dev/null +++ b/challenge-025/lars-balker/perl5/ch-2.pl @@ -0,0 +1,9 @@ +#!/usr/bin/env perl + +use v5.20; +use strict; +use warnings; + +# Create script to implement Chaocipher. Please checkout +# https://en.wikipedia.org/wiki/Chaocipher for more information. + -- cgit From 99abbb4bf4a84af167e361310393eb30dc1e2bb7 Mon Sep 17 00:00:00 2001 From: Lars Balker Date: Tue, 17 Sep 2019 12:41:38 +0200 Subject: fix --- challenge-025/lars-balker/perl5/ch-1.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-025/lars-balker/perl5/ch-1.pl b/challenge-025/lars-balker/perl5/ch-1.pl index c8715b78a7..f0d6584bc9 100644 --- a/challenge-025/lars-balker/perl5/ch-1.pl +++ b/challenge-025/lars-balker/perl5/ch-1.pl @@ -26,7 +26,7 @@ try([], "", @names); say "@$longest"; -# naive O(n^2) recursion +# naive brute force recursion sub try { my ($picks, $prefix, @rest) = @_; -- cgit From a94f0198629782810670ea660469ee84ff7f52e3 Mon Sep 17 00:00:00 2001 From: SvetlanaNesterova Date: Sun, 20 Oct 2019 17:11:56 +0500 Subject: Challenge 30 --- challenge-030/svetlana-nesterova/README | 1 + challenge-030/svetlana-nesterova/perl5/ch-1.pl | 24 +++++++++++++++++++++ challenge-030/svetlana-nesterova/perl5/ch-2.pl | 29 ++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 challenge-030/svetlana-nesterova/README create mode 100644 challenge-030/svetlana-nesterova/perl5/ch-1.pl create mode 100644 challenge-030/svetlana-nesterova/perl5/ch-2.pl diff --git a/challenge-030/svetlana-nesterova/README b/challenge-030/svetlana-nesterova/README new file mode 100644 index 0000000000..d652fca3e7 --- /dev/null +++ b/challenge-030/svetlana-nesterova/README @@ -0,0 +1 @@ +Solution by Svetlana Nesterova \ No newline at end of file diff --git a/challenge-030/svetlana-nesterova/perl5/ch-1.pl b/challenge-030/svetlana-nesterova/perl5/ch-1.pl new file mode 100644 index 0000000000..171adb0af7 --- /dev/null +++ b/challenge-030/svetlana-nesterova/perl5/ch-1.pl @@ -0,0 +1,24 @@ +#!/usr/bin/perl +use strict; +use warnings FATAL => 'all'; +use DateTime; +use DateTime::Format::HTTP; + +use constant SUNDAY => 7; + + +=Write a script to list dates for Sunday Christmas between 2019 and 2100. + For example, 25 Dec 2022 is Sunday. +=cut + + +sub PrintSundayChristmases() { + for my $year (2019 .. 2100) { + my $christmas = DateTime->new(year => $year, month => 12, day => 25); + if ($christmas->day_of_week == SUNDAY) { + print DateTime::Format::HTTP->format_datetime($christmas), "\n"; + } + } +} + +print PrintSundayChristmases(); diff --git a/challenge-030/svetlana-nesterova/perl5/ch-2.pl b/challenge-030/svetlana-nesterova/perl5/ch-2.pl new file mode 100644 index 0000000000..d27d3907f7 --- /dev/null +++ b/challenge-030/svetlana-nesterova/perl5/ch-2.pl @@ -0,0 +1,29 @@ +#!/usr/bin/perl +use strict; +use warnings FATAL => 'all'; + +use List::Util; + +=Write a script to print all possible series of 3 positive numbers, + where in each series at least one of the number is even and sum of the three numbers is always 12. + For example, 3,4,5. +=cut + + +sub PrintSeries() { + my $sum = 12; + + for my $i (1 .. $sum) { + for my $j ($i .. $sum) { + for my $k ($j .. $sum) { + if ($i + $j + $k == $sum) { + print qq($i $j $k \n); + } + } + } + } +} + + + +PrintSeries(); \ No newline at end of file -- cgit From 1c89e6e3e869f727f6384e181ba8c002061f3533 Mon Sep 17 00:00:00 2001 From: SvetlanaNesterova Date: Sun, 20 Oct 2019 17:17:47 +0500 Subject: fix --- challenge-030/svetlana-nesterova/perl5/ch-1.pl | 2 +- challenge-030/svetlana-nesterova/perl5/ch-2.pl | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/challenge-030/svetlana-nesterova/perl5/ch-1.pl b/challenge-030/svetlana-nesterova/perl5/ch-1.pl index 171adb0af7..0489ab71b9 100644 --- a/challenge-030/svetlana-nesterova/perl5/ch-1.pl +++ b/challenge-030/svetlana-nesterova/perl5/ch-1.pl @@ -21,4 +21,4 @@ sub PrintSundayChristmases() { } } -print PrintSundayChristmases(); +PrintSundayChristmases(); diff --git a/challenge-030/svetlana-nesterova/perl5/ch-2.pl b/challenge-030/svetlana-nesterova/perl5/ch-2.pl index d27d3907f7..bacec002b1 100644 --- a/challenge-030/svetlana-nesterova/perl5/ch-2.pl +++ b/challenge-030/svetlana-nesterova/perl5/ch-2.pl @@ -2,7 +2,6 @@ use strict; use warnings FATAL => 'all'; -use List::Util; =Write a script to print all possible series of 3 positive numbers, where in each series at least one of the number is even and sum of the three numbers is always 12. @@ -24,6 +23,4 @@ sub PrintSeries() { } } - - -PrintSeries(); \ No newline at end of file +PrintSeries(); -- cgit From 5706648f8556ee4e673e77df459a23bb1680edf3 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 20 Oct 2019 13:24:59 +0100 Subject: - Added solutions by Svetlana Nesterova. --- members.json | 1 + stats/pwc-current.json | 289 ++++++++------- stats/pwc-language-breakdown-summary.json | 72 ++-- stats/pwc-language-breakdown.json | 466 +++++++++++------------ stats/pwc-leaders.json | 592 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 100 ++--- stats/pwc-summary-121-150.json | 46 +-- stats/pwc-summary-31-60.json | 116 +++--- stats/pwc-summary-61-90.json | 110 +++--- stats/pwc-summary-91-120.json | 56 +-- stats/pwc-summary.json | 310 ++++++++-------- 11 files changed, 1091 insertions(+), 1067 deletions(-) diff --git a/members.json b/members.json index 865d512d87..df6058d97c 100644 --- a/members.json +++ b/members.json @@ -111,6 +111,7 @@ "steve-rogerson" : "Steve Rogerson", "steven-lembark" : "Steven Lembark", "steven-wilson" : "Steven Wilson", + "svetlana-nesterova" : "Svetlana Nesterova", "testerR59" : "Tester R59", "tiago-stock" : "Tiago Stock", "tim-smith" : "Tim Smith", diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 4501525f81..f5f96c2ba1 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,33 +1,7 @@ { - "tooltip" : { - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "subtitle" : { - "text" : "[Champions: 34] Last updated at 2019-10-20 09:31:43 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, "drilldown" : { "series" : [ { - "name" : "Adam Russell", "data" : [ [ "Perl 5", @@ -38,7 +12,8 @@ 1 ] ], - "id" : "Adam Russell" + "id" : "Adam Russell", + "name" : "Adam Russell" }, { "data" : [ @@ -47,8 +22,8 @@ 2 ] ], - "name" : "Andrezgz", - "id" : "Andrezgz" + "id" : "Andrezgz", + "name" : "Andrezgz" }, { "data" : [ @@ -61,11 +36,10 @@ 1 ] ], - "name" : "Arne Sommer", - "id" : "Arne Sommer" + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { - "name" : "Athanasius", "data" : [ [ "Perl 5", @@ -76,19 +50,21 @@ 2 ] ], - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { - "name" : "Burkhard Nickels", + "id" : "Burkhard Nickels", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Burkhard Nickels" + "name" : "Burkhard Nickels" }, { + "id" : "Daniel Mita", "data" : [ [ "Perl 5", @@ -99,8 +75,7 @@ 2 ] ], - "name" : "Daniel Mita", - "id" : "Daniel Mita" + "name" : "Daniel Mita" }, { "name" : "Darren Bottin", @@ -113,14 +88,14 @@ "id" : "Darren Bottin" }, { - "name" : "Dave Cross", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Dave Cross" + "id" : "Dave Cross", + "name" : "Dave Cross" }, { "data" : [ @@ -133,38 +108,38 @@ 1 ] ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Dr James A. Smith" + ] }, { - "id" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Duane Powell", "name" : "Duane Powell" }, { "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "E. Choroba" + ] }, { "data" : [ @@ -173,8 +148,8 @@ 2 ] ], - "name" : "Izifresh", - "id" : "Izifresh" + "id" : "Izifresh", + "name" : "Izifresh" }, { "id" : "Jaldhar H. Vyas", @@ -195,7 +170,6 @@ "name" : "Jaldhar H. Vyas" }, { - "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -206,27 +180,28 @@ 2 ] ], + "id" : "Joelle Maslak", "name" : "Joelle Maslak" }, { - "id" : "Kevin Colyer", - "name" : "Kevin Colyer", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Kevin Colyer", + "name" : "Kevin Colyer" }, { - "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Kivanc Yazan" + "name" : "Kivanc Yazan" }, { "name" : "Lars Thegler", @@ -239,6 +214,7 @@ "id" : "Lars Thegler" }, { + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -253,7 +229,6 @@ 1 ] ], - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld" }, { @@ -267,53 +242,53 @@ "name" : "Lubos Kolouch" }, { - "id" : "Markus Holzer", "data" : [ [ "Perl 6", 2 ] ], + "id" : "Markus Holzer", "name" : "Markus Holzer" }, { - "name" : "Maxim Kolodyazhny", + "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Maxim Kolodyazhny" + "name" : "Maxim Kolodyazhny" }, { - "id" : "Nazareno Delucca", - "name" : "Nazareno Delucca", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Nazareno Delucca", + "name" : "Nazareno Delucca" }, { + "id" : "Noud", "data" : [ [ "Perl 6", 2 ] ], - "name" : "Noud", - "id" : "Noud" + "name" : "Noud" }, { + "name" : "Pete Houston", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Pete Houston", "id" : "Pete Houston" }, { @@ -323,11 +298,11 @@ 2 ] ], - "name" : "Rage311", - "id" : "Rage311" + "id" : "Rage311", + "name" : "Rage311" }, { - "id" : "Roger Bell West", + "name" : "Roger Bell West", "data" : [ [ "Perl 5", @@ -342,50 +317,59 @@ 1 ] ], - "name" : "Roger Bell West" + "id" : "Roger Bell West" }, { "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Simon Proctor" + ] }, { "id" : "Steven Wilson", - "name" : "Steven Wilson", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Steven Wilson" + }, + { + "id" : "Svetlana Nesterova", + "data" : [ + [ + "Perl 5", + 2 + ] + ], + "name" : "Svetlana Nesterova" }, { "id" : "Tester R59", - "name" : "Tester R59", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Tester R59" }, { - "id" : "Trenton Langer", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Trenton Langer", "name" : "Trenton Langer" }, { - "id" : "Ulrich Rieke", "data" : [ [ "Perl 5", @@ -396,19 +380,21 @@ 2 ] ], + "id" : "Ulrich Rieke", "name" : "Ulrich Rieke" }, { - "id" : "Vyacheslav Volgarev", "name" : "Vyacheslav Volgarev", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Vyacheslav Volgarev" }, { + "name" : "Yet Ebreo", "data" : [ [ "Perl 5", @@ -419,68 +405,58 @@ 2 ] ], - "name" : "Yet Ebreo", "id" : "Yet Ebreo" } ] }, - "legend" : { - "enabled" : 0 - }, - "title" : { - "text" : "Perl Weekly Challenge - 030" - }, - "chart" : { - "type" : "column" - }, "series" : [ { "name" : "Perl Weekly Challenge - 030", "data" : [ { + "name" : "Adam Russell", "drilldown" : "Adam Russell", - "y" : 3, - "name" : "Adam Russell" + "y" : 3 }, { "name" : "Andrezgz", - "y" : 2, - "drilldown" : "Andrezgz" + "drilldown" : "Andrezgz", + "y" : 2 }, { "y" : 3, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" }, { "name" : "Athanasius", - "y" : 4, - "drilldown" : "Athanasius" + "drilldown" : "Athanasius", + "y" : 4 }, { - "name" : "Burkhard Nickels", + "y" : 2, "drilldown" : "Burkhard Nickels", - "y" : 2 + "name" : "Burkhard Nickels" }, { - "drilldown" : "Daniel Mita", "y" : 4, + "drilldown" : "Daniel Mita", "name" : "Daniel Mita" }, { - "drilldown" : "Darren Bottin", "y" : 2, + "drilldown" : "Darren Bottin", "name" : "Darren Bottin" }, { - "drilldown" : "Dave Cross", "y" : 2, + "drilldown" : "Dave Cross", "name" : "Dave Cross" }, { - "y" : 3, + "name" : "Dave Jacoby", "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby" + "y" : 3 }, { "y" : 2, @@ -488,8 +464,8 @@ "name" : "Dr James A. Smith" }, { - "name" : "Duane Powell", "y" : 2, + "name" : "Duane Powell", "drilldown" : "Duane Powell" }, { @@ -503,13 +479,13 @@ "y" : 2 }, { - "name" : "Jaldhar H. Vyas", "y" : 5, - "drilldown" : "Jaldhar H. Vyas" + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" }, { - "name" : "Joelle Maslak", "y" : 4, + "name" : "Joelle Maslak", "drilldown" : "Joelle Maslak" }, { @@ -519,33 +495,33 @@ }, { "name" : "Kivanc Yazan", - "y" : 2, - "drilldown" : "Kivanc Yazan" + "drilldown" : "Kivanc Yazan", + "y" : 2 }, { "y" : 2, - "drilldown" : "Lars Thegler", - "name" : "Lars Thegler" + "name" : "Lars Thegler", + "drilldown" : "Lars Thegler" }, { + "y" : 5, "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 5 + "drilldown" : "Laurent Rosenfeld" }, { - "drilldown" : "Lubos Kolouch", "y" : 2, + "drilldown" : "Lubos Kolouch", "name" : "Lubos Kolouch" }, { - "y" : 2, "drilldown" : "Markus Holzer", - "name" : "Markus Holzer" + "name" : "Markus Holzer", + "y" : 2 }, { - "name" : "Maxim Kolodyazhny", "y" : 2, - "drilldown" : "Maxim Kolodyazhny" + "drilldown" : "Maxim Kolodyazhny", + "name" : "Maxim Kolodyazhny" }, { "y" : 2, @@ -558,57 +534,96 @@ "y" : 2 }, { + "y" : 2, "name" : "Pete Houston", - "drilldown" : "Pete Houston", - "y" : 2 + "drilldown" : "Pete Houston" }, { + "drilldown" : "Rage311", "name" : "Rage311", - "y" : 2, - "drilldown" : "Rage311" + "y" : 2 }, { - "drilldown" : "Roger Bell West", "y" : 5, - "name" : "Roger Bell West" + "name" : "Roger Bell West", + "drilldown" : "Roger Bell West" }, { + "drilldown" : "Simon Proctor", "name" : "Simon Proctor", - "y" : 2, - "drilldown" : "Simon Proctor" + "y" : 2 }, { "name" : "Steven Wilson", - "y" : 2, - "drilldown" : "Steven Wilson" + "drilldown" : "Steven Wilson", + "y" : 2 + }, + { + "name" : "Svetlana Nesterova", + "drilldown" : "Svetlana Nesterova", + "y" : 2 }, { - "y" : 2, "drilldown" : "Tester R59", - "name" : "Tester R59" + "name" : "Tester R59", + "y" : 2 }, { - "y" : 2, + "name" : "Trenton Langer", "drilldown" : "Trenton Langer", - "name" : "Trenton Langer" + "y" : 2 }, { "y" : 3, - "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke" }, { - "drilldown" : "Vyacheslav Volgarev", "y" : 2, + "drilldown" : "Vyacheslav Volgarev", "name" : "Vyacheslav Volgarev" }, { - "name" : "Yet Ebreo", "drilldown" : "Yet Ebreo", + "name" : "Yet Ebreo", "y" : 4 } ], "colorByPoint" : 1 } - ] + ], + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "[Champions: 35] Last updated at 2019-10-20 12:24:42 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 030" + }, + "legend" : { + "enabled" : 0 + } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 1eb84cbb49..fdd2b69346 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,31 +1,18 @@ { - "subtitle" : { - "text" : "Last updated at 2019-10-20 09:31:53 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, - "chart" : { - "type" : "column" + "xAxis" : { + "labels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + }, + "type" : "category" }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" + "legend" : { + "enabled" : "false" }, "series" : [ { - "dataLabels" : { - "format" : "{point.y:.0f}", - "align" : "right", - "enabled" : "true", - "rotation" : -90, - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "y" : 10, - "color" : "#FFFFFF" - }, - "name" : "Contributions", "data" : [ [ "Blog", @@ -33,31 +20,44 @@ ], [ "Perl 5", - 1238 + 1240 ], [ "Perl 6", 745 ] - ] + ], + "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "enabled" : "true", + "rotation" : -90, + "align" : "right", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF" + } } ], - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - }, - "type" : "category" + "chart" : { + "type" : "column" }, "yAxis" : { "min" : 0, "title" : { "text" : null } + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "subtitle" : { + "text" : "Last updated at 2019-10-20 12:24:53 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 4f6f5b5e85..bf62c2f4a4 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,32 +1,189 @@ { - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-10-20 09:31:54 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" + "xAxis" : { + "type" : "category" }, - "chart" : { - "type" : "column" + "series" : [ + { + "data" : [ + { + "drilldown" : "001", + "y" : 132, + "name" : "#001" + }, + { + "drilldown" : "002", + "y" : 104, + "name" : "#002" + }, + { + "drilldown" : "003", + "y" : 66, + "name" : "#003" + }, + { + "drilldown" : "004", + "name" : "#004", + "y" : 86 + }, + { + "drilldown" : "005", + "y" : 66, + "name" : "#005" + }, + { + "y" : 48, + "name" : "#006", + "drilldown" : "006" + }, + { + "drilldown" : "007", + "name" : "#007", + "y" : 56 + }, + { + "name" : "#008", + "y" : 70, + "drilldown" : "008" + }, + { + "name" : "#009", + "y" : 68, + "drilldown" : "009" + }, + { + "drilldown" : "010", + "name" : "#010", + "y" : 60 + }, + { + "y" : 78, + "name" : "#011", + "drilldown" : "011" + }, + { + "drilldown" : "012", + "name" : "#012", + "y" : 83 + }, + { + "y" : 76, + "name" : "#013", + "drilldown" : "013" + }, + { + "drilldown" : "014", + "name" : "#014", + "y" : 95 + }, + { + "drilldown" : "015", + "y" : 93, + "name" : "#015" + }, + { + "drilldown" : "016", + "name" : "#016", + "y" : 66 + }, + { + "drilldown" : "017", + "name" : "#017", + "y" : 79 + }, + { + "drilldown" : "018", + "name" : "#018", + "y" : 76 + }, + { + "name" : "#019", + "y" : 95, + "drilldown" : "019" + }, + { + "y" : 95, + "name" : "#020", + "drilldown" : "020" + }, + { + "y" : 67, + "name" : "#021", + "drilldown" : "021" + }, + { + "name" : "#022", + "y" : 63, + "drilldown" : "022" + }, + { + "drilldown" : "023", + "y" : 91, + "name" : "#023" + }, + { + "name" : "#024", + "y" : 70, + "drilldown" : "024" + }, + { + "drilldown" : "025", + "name" : "#025", + "y" : 55 + }, + { + "name" : "#026", + "y" : 70, + "drilldown" : "026" + }, + { + "name" : "#027", + "y" : 58, + "drilldown" : "027" + }, + { + "drilldown" : "028", + "y" : 78, + "name" : "#028" + }, + { + "drilldown" : "029", + "name" : "#029", + "y" : 74 + }, + { + "y" : 92, + "name" : "#030", + "drilldown" : "030" + } + ], + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true" + } + ], + "legend" : { + "enabled" : "false" }, "tooltip" : { - "followPointer" : "true", "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "" + "headerFormat" : "", + "followPointer" : "true" }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-10-20 12:24:53 GMT" + }, + "chart" : { + "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" } }, "drilldown" : { "series" : [ { - "name" : "001", "id" : "001", + "name" : "001", "data" : [ [ "Perl 5", @@ -43,8 +200,8 @@ ] }, { - "name" : "002", "id" : "002", + "name" : "002", "data" : [ [ "Perl 5", @@ -75,11 +232,10 @@ 8 ] ], - "id" : "003", - "name" : "003" + "name" : "003", + "id" : "003" }, { - "id" : "004", "name" : "004", "data" : [ [ @@ -94,10 +250,10 @@ "Blog", 9 ] - ] + ], + "id" : "004" }, { - "name" : "005", "id" : "005", "data" : [ [ @@ -112,7 +268,8 @@ "Blog", 11 ] - ] + ], + "name" : "005" }, { "id" : "006", @@ -133,6 +290,8 @@ ] }, { + "id" : "007", + "name" : "007", "data" : [ [ "Perl 5", @@ -146,12 +305,9 @@ "Blog", 10 ] - ], - "id" : "007", - "name" : "007" + ] }, { - "id" : "008", "name" : "008", "data" : [ [ @@ -166,7 +322,8 @@ "Blog", 12 ] - ] + ], + "id" : "008" }, { "data" : [ @@ -183,11 +340,10 @@ 13 ] ], - "id" : "009", - "name" : "009" + "name" : "009", + "id" : "009" }, { - "name" : "010", "id" : "010", "data" : [ [ @@ -202,7 +358,8 @@ "Blog", 11 ] - ] + ], + "name" : "010" }, { "data" : [ @@ -219,10 +376,11 @@ 9 ] ], - "id" : "011", - "name" : "011" + "name" : "011", + "id" : "011" }, { + "name" : "012", "data" : [ [ "Perl 5", @@ -237,7 +395,6 @@ 11 ] ], - "name" : "012", "id" : "012" }, { @@ -259,7 +416,6 @@ ] }, { - "name" : "014", "id" : "014", "data" : [ [ @@ -274,10 +430,10 @@ "Blog", 14 ] - ] + ], + "name" : "014" }, { - "name" : "015", "id" : "015", "data" : [ [ @@ -292,11 +448,11 @@ "Blog", 15 ] - ] + ], + "name" : "015" }, { "name" : "016", - "id" : "016", "data" : [ [ "Perl 5", @@ -310,9 +466,12 @@ "Blog", 12 ] - ] + ], + "id" : "016" }, { + "id" : "017", + "name" : "017", "data" : [ [ "Perl 5", @@ -326,13 +485,11 @@ "Blog", 12 ] - ], - "id" : "017", - "name" : "017" + ] }, { - "name" : "018", "id" : "018", + "name" : "018", "data" : [ [ "Perl 5", @@ -363,8 +520,8 @@ 13 ] ], - "id" : "019", - "name" : "019" + "name" : "019", + "id" : "019" }, { "id" : "020", @@ -385,6 +542,8 @@ ] }, { + "id" : "021", + "name" : "021", "data" : [ [ "Perl 5", @@ -398,11 +557,10 @@ "Blog", 10 ] - ], - "id" : "021", - "name" : "021" + ] }, { + "id" : "022", "data" : [ [ "Perl 5", @@ -417,12 +575,11 @@ 10 ] ], - "name" : "022", - "id" : "022" + "name" : "022" }, { - "name" : "023", "id" : "023", + "name" : "023", "data" : [ [ "Perl 5", @@ -440,7 +597,6 @@ }, { "id" : "024", - "name" : "024", "data" : [ [ "Perl 5", @@ -454,11 +610,11 @@ "Blog", 11 ] - ] + ], + "name" : "024" }, { "name" : "025", - "id" : "025", "data" : [ [ "Perl 5", @@ -472,9 +628,11 @@ "Blog", 12 ] - ] + ], + "id" : "025" }, { + "id" : "026", "data" : [ [ "Perl 5", @@ -489,8 +647,7 @@ 10 ] ], - "name" : "026", - "id" : "026" + "name" : "026" }, { "data" : [ @@ -507,8 +664,8 @@ 9 ] ], - "id" : "027", - "name" : "027" + "name" : "027", + "id" : "027" }, { "id" : "028", @@ -529,7 +686,6 @@ ] }, { - "id" : "029", "name" : "029", "data" : [ [ @@ -544,13 +700,15 @@ "Blog", 9 ] - ] + ], + "id" : "029" }, { + "name" : "030", "data" : [ [ "Perl 5", - 58 + 60 ], [ "Perl 6", @@ -561,178 +719,20 @@ 6 ] ], - "id" : "030", - "name" : "030" + "id" : "030" } ] }, - "series" : [ - { - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages", - "data" : [ - { - "name" : "#001", - "drilldown" : "001", - "y" : 132 - }, - { - "name" : "#002", - "drilldown" : "002", - "y" : 104 - }, - { - "name" : "#003", - "drilldown" : "003", - "y" : 66 - }, - { - "name" : "#004", - "y" : 86, - "drilldown" : "004" - }, - { - "y" : 66, - "drilldown" : "005", - "name" : "#005" - }, - { - "drilldown" : "006", - "y" : 48, - "name" : "#006" - }, - { - "name" : "#007", - "y" : 56, - "drilldown" : "007" - }, - { - "name" : "#008", - "y" : 70, - "drilldown" : "008" - }, - { - "name" : "#009", - "drilldown" : "009", - "y" : 68 - }, - { - "name" : "#010", - "y" : 60, - "drilldown" : "010" - }, - { - "name" : "#011", - "y" : 78, - "drilldown" : "011" - }, - { - "name" : "#012", - "y" : 83, - "drilldown" : "012" - }, - { - "drilldown" : "013", - "y" : 76, - "name" : "#013" - }, - { - "name" : "#014", - "y" : 95, - "drilldown" : "014" - }, - { - "name" : "#015", - "drilldown" : "015", - "y" : 93 - }, - { - "name" : "#016", - "drilldown" : "016", - "y" : 66 - }, - { - "name" : "#017", - "y" : 79, - "drilldown" : "017" - }, - { - "name" : "#018", - "drilldown" : "018", - "y" : 76 - }, - { - "name" : "#019", - "drilldown" : "019", - "y" : 95 - }, - { - "name" : "#020", - "drilldown" : "020", - "y" : 95 - }, - { - "name" : "#021", - "drilldown" : "021", - "y" : 67 - }, - { - "name" : "#022", - "y" : 63, - "drilldown" : "022" - }, - { - "y" : 91, - "drilldown" : "023", - "name" : "#023" - }, - { - "name" : "#024", - "y" : 70, - "drilldown" : "024" - }, - { - "name" : "#025", - "y" : 55, - "drilldown" : "025" - }, - { - "name" : "#026", - "drilldown" : "026", - "y" : 70 - }, - { - "drilldown" : "027", - "y" : 58, - "name" : "#027" - }, - { - "drilldown" : "028", - "y" : 78, - "name" : "#028" - }, - { - "name" : "#029", - "y" : 74, - "drilldown" : "029" - }, - { - "name" : "#030", - "y" : 90, - "drilldown" : "030" - } - ] - } - ], - "legend" : { - "enabled" : "false" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } }, - "xAxis" : { - "type" : "category" + "title" : { + "text" : "Perl Weekly Challenge Language" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 7de148985a..7e335224fd 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,36 +1,59 @@ { + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : "false" + }, "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", "headerFormat" : "", - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
" + "followPointer" : "true" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-10-20 12:24:50 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } }, "series" : [ { "data" : [ { - "name" : "#1: Laurent Rosenfeld", "drilldown" : "Laurent Rosenfeld", + "name" : "#1: Laurent Rosenfeld", "y" : 372 }, { - "y" : 306, "drilldown" : "Joelle Maslak", - "name" : "#2: Joelle Maslak" + "name" : "#2: Joelle Maslak", + "y" : 306 }, { - "y" : 272, + "drilldown" : "Jaldhar H. Vyas", "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas" + "y" : 272 }, { - "y" : 220, + "drilldown" : "Ruben Westerberg", "name" : "#4: Ruben Westerberg", - "drilldown" : "Ruben Westerberg" + "y" : 220 }, { + "name" : "#5: Adam Russell", "y" : 194, - "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell" + "drilldown" : "Adam Russell" }, { "y" : 186, @@ -38,79 +61,79 @@ "drilldown" : "Arne Sommer" }, { - "y" : 184, + "drilldown" : "Athanasius", "name" : "#7: Athanasius", - "drilldown" : "Athanasius" + "y" : 184 }, { - "y" : 152, + "drilldown" : "E. Choroba", "name" : "#8: E. Choroba", - "drilldown" : "E. Choroba" + "y" : 152 }, { - "drilldown" : "Kian-Meng Ang", + "y" : 140, "name" : "#9: Kian-Meng Ang", - "y" : 140 + "drilldown" : "Kian-Meng Ang" }, { "name" : "#10: Roger Bell West", - "drilldown" : "Roger Bell West", - "y" : 126 + "y" : 126, + "drilldown" : "Roger Bell West" }, { + "y" : 120, "name" : "#11: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 120 + "drilldown" : "Simon Proctor" }, { - "y" : 116, + "drilldown" : "Andrezgz", "name" : "#12: Andrezgz", - "drilldown" : "Andrezgz" + "y" : 116 }, { "y" : 108, - "drilldown" : "Dave Jacoby", - "name" : "#13: Dave Jacoby" + "name" : "#13: Dave Jacoby", + "drilldown" : "Dave Jacoby" }, { + "drilldown" : "Duncan C. White", "y" : 106, - "name" : "#14: Duncan C. White", - "drilldown" : "Duncan C. White" + "name" : "#14: Duncan C. White" }, { + "name" : "#15: Yet Ebreo", "y" : 100, - "drilldown" : "Yet Ebreo", - "name" : "#15: Yet Ebreo" + "drilldown" : "Yet Ebreo" }, { - "name" : "#16: Francis Whittle", "drilldown" : "Francis Whittle", - "y" : 96 + "y" : 96, + "name" : "#16: Francis Whittle" }, { + "y" : 88, "name" : "#17: Feng Chang", - "drilldown" : "Feng Chang", - "y" : 88 + "drilldown" : "Feng Chang" }, { - "y" : 88, "drilldown" : "Steven Wilson", - "name" : "#18: Steven Wilson" + "name" : "#18: Steven Wilson", + "y" : 88 }, { - "y" : 82, "name" : "#19: Daniel Mantovani", + "y" : 82, "drilldown" : "Daniel Mantovani" }, { - "y" : 72, "drilldown" : "Gustavo Chaves", + "y" : 72, "name" : "#20: Gustavo Chaves" }, { - "drilldown" : "Kevin Colyer", + "y" : 70, "name" : "#21: Kevin Colyer", - "y" : 70 + "drilldown" : "Kevin Colyer" }, { "y" : 70, @@ -118,64 +141,64 @@ "drilldown" : "Yozen Hernandez" }, { - "drilldown" : "Duane Powell", + "y" : 66, "name" : "#23: Duane Powell", - "y" : 66 + "drilldown" : "Duane Powell" }, { + "name" : "#24: Guillermo Ramos", "y" : 64, - "drilldown" : "Guillermo Ramos", - "name" : "#24: Guillermo Ramos" + "drilldown" : "Guillermo Ramos" }, { "drilldown" : "Mark Senn", - "name" : "#25: Mark Senn", - "y" : 64 + "y" : 64, + "name" : "#25: Mark Senn" }, { - "y" : 60, + "drilldown" : "Lubos Kolouch", "name" : "#26: Lubos Kolouch", - "drilldown" : "Lubos Kolouch" + "y" : 60 }, { - "y" : 56, "drilldown" : "Jo Christian Oterhals", - "name" : "#27: Jo Christian Oterhals" + "name" : "#27: Jo Christian Oterhals", + "y" : 56 }, { - "drilldown" : "Noud", + "y" : 56, "name" : "#28: Noud", - "y" : 56 + "drilldown" : "Noud" }, { - "name" : "#29: Ozzy", "drilldown" : "Ozzy", - "y" : 54 + "y" : 54, + "name" : "#29: Ozzy" }, { + "drilldown" : "Randy Lauen", "y" : 52, - "name" : "#30: Randy Lauen", - "drilldown" : "Randy Lauen" + "name" : "#30: Randy Lauen" }, { - "name" : "#31: Dr James A. Smith", "drilldown" : "Dr James A. Smith", - "y" : 48 + "y" : 48, + "name" : "#31: Dr James A. Smith" }, { - "drilldown" : "Veesh Goldman", + "y" : 44, "name" : "#32: Veesh Goldman", - "y" : 44 + "drilldown" : "Veesh Goldman" }, { "name" : "#33: Nick Logan", - "drilldown" : "Nick Logan", - "y" : 32 + "y" : 32, + "drilldown" : "Nick Logan" }, { - "y" : 30, "drilldown" : "Dave Cross", - "name" : "#34: Dave Cross" + "name" : "#34: Dave Cross", + "y" : 30 }, { "y" : 30, @@ -183,34 +206,34 @@ "drilldown" : "Lars Balker" }, { - "name" : "#36: Colin Crain", "drilldown" : "Colin Crain", - "y" : 28 + "y" : 28, + "name" : "#36: Colin Crain" }, { - "y" : 24, + "drilldown" : "Jaime Corchado", "name" : "#37: Jaime Corchado", - "drilldown" : "Jaime Corchado" + "y" : 24 }, { - "drilldown" : "Kivanc Yazan", + "y" : 24, "name" : "#38: Kivanc Yazan", - "y" : 24 + "drilldown" : "Kivanc Yazan" }, { - "y" : 24, "drilldown" : "Maxim Nechaev", + "y" : 24, "name" : "#39: Maxim Nechaev" }, { - "name" : "#40: Alicia Bielsa", "drilldown" : "Alicia Bielsa", + "name" : "#40: Alicia Bielsa", "y" : 22 }, { "name" : "#41: Pete Houston", - "drilldown" : "Pete Houston", - "y" : 22 + "y" : 22, + "drilldown" : "Pete Houston" }, { "drilldown" : "Daniel Mita", @@ -218,34 +241,34 @@ "y" : 20 }, { + "y" : 20, "name" : "#43: Doug Schrag", - "drilldown" : "Doug Schrag", - "y" : 20 + "drilldown" : "Doug Schrag" }, { - "y" : 20, + "drilldown" : "Markus Holzer", "name" : "#44: Markus Holzer", - "drilldown" : "Markus Holzer" + "y" : 20 }, { - "drilldown" : "Mark Anderson", + "y" : 18, "name" : "#45: Mark Anderson", - "y" : 18 + "drilldown" : "Mark Anderson" }, { + "y" : 18, "name" : "#46: Neil Bowers", - "drilldown" : "Neil Bowers", - "y" : 18 + "drilldown" : "Neil Bowers" }, { + "y" : 18, "name" : "#47: Walt Mankowski", - "drilldown" : "Walt Mankowski", - "y" : 18 + "drilldown" : "Walt Mankowski" }, { - "name" : "#48: Donald Hunter", "drilldown" : "Donald Hunter", - "y" : 16 + "y" : 16, + "name" : "#48: Donald Hunter" }, { "drilldown" : "Maxim Kolodyazhny", @@ -253,51 +276,44 @@ "y" : 16 }, { + "y" : 16, "name" : "#50: Robert Gratza", - "drilldown" : "Robert Gratza", - "y" : 16 + "drilldown" : "Robert Gratza" } ], - "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true" + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders" } ], - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, "chart" : { "type" : "column" }, - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-10-20 09:31:48 GMT" - }, - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "drilldown" : { "series" : [ { "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ - [ - "Perl 6", - 59 - ], [ "Blog", 68 ], + [ + "Perl 6", + 59 + ], [ "Perl 5", 59 ] - ], - "name" : "Laurent Rosenfeld" + ] }, { + "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ "Perl 6", @@ -311,13 +327,9 @@ "Blog", 5 ] - ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + ] }, { - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", "data" : [ [ "Blog", @@ -331,29 +343,26 @@ "Perl 6", 59 ] - ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" }, { + "name" : "Ruben Westerberg", "id" : "Ruben Westerberg", "data" : [ [ - "Perl 5", + "Perl 6", 55 ], [ - "Perl 6", + "Perl 5", 55 ] - ], - "name" : "Ruben Westerberg" + ] }, { - "id" : "Adam Russell", "data" : [ - [ - "Blog", - 33 - ], [ "Perl 5", 61 @@ -361,17 +370,19 @@ [ "Perl 6", 3 + ], + [ + "Blog", + 33 ] ], - "name" : "Adam Russell" + "name" : "Adam Russell", + "id" : "Adam Russell" }, { "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ - [ - "Perl 5", - 3 - ], [ "Blog", 30 @@ -379,14 +390,21 @@ [ "Perl 6", 60 + ], + [ + "Perl 5", + 3 ] - ], - "name" : "Arne Sommer" + ] }, { "id" : "Athanasius", "name" : "Athanasius", "data" : [ + [ + "Perl 6", + 32 + ], [ "Perl 5", 57 @@ -394,51 +412,47 @@ [ "Blog", 3 - ], - [ - "Perl 6", - 32 ] ] }, { - "id" : "E. Choroba", "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ - [ - "Perl 5", - 52 - ], [ "Blog", 24 + ], + [ + "Perl 5", + 52 ] ] }, { - "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang", "data" : [ - [ - "Perl 5", - 38 - ], [ "Blog", 32 + ], + [ + "Perl 5", + 38 ] - ] + ], + "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang" }, { "data" : [ - [ - "Perl 5", - 34 - ], [ "Blog", 14 ], + [ + "Perl 5", + 34 + ], [ "Perl 6", 15 @@ -448,53 +462,54 @@ "id" : "Roger Bell West" }, { - "id" : "Simon Proctor", "data" : [ - [ - "Perl 6", - 48 - ], [ "Perl 5", 5 ], + [ + "Perl 6", + 48 + ], [ "Blog", 7 ] ], - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl 5", 58 ] - ], - "id" : "Andrezgz" + ] }, { - "id" : "Dave Jacoby", "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl 5", 32 ], - [ - "Blog", - 21 - ], [ "Perl 6", 1 + ], + [ + "Blog", + 21 ] ] }, { "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Blog", @@ -504,56 +519,57 @@ "Perl 5", 52 ] - ], - "id" : "Duncan C. White" + ] }, { "data" : [ [ - "Blog", - 6 + "Perl 6", + 20 ], [ "Perl 5", 24 ], [ - "Perl 6", - 20 + "Blog", + 6 ] ], "name" : "Yet Ebreo", "id" : "Yet Ebreo" }, { + "id" : "Francis Whittle", + "name" : "Francis Whittle", "data" : [ - [ - "Blog", - 9 - ], [ "Perl 6", 39 + ], + [ + "Blog", + 9 ] - ], - "name" : "Francis Whittle", - "id" : "Francis Whittle" + ] }, { + "id" : "Feng Chang", + "name" : "Feng Chang", "data" : [ - [