From 57e043e9341507e7d495162dc731f4cc6605c264 Mon Sep 17 00:00:00 2001 From: Noud Date: Mon, 15 Jul 2019 23:03:26 +0200 Subject: Solutions for challenge 017 problem 1 and 2 in Perl 6 by Noud --- challenge-017/noud/perl6/ch-1.p6 | 31 +++++++++++++++++++++++++++++++ challenge-017/noud/perl6/ch-2.p6 | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 challenge-017/noud/perl6/ch-1.p6 create mode 100644 challenge-017/noud/perl6/ch-2.p6 diff --git a/challenge-017/noud/perl6/ch-1.p6 b/challenge-017/noud/perl6/ch-1.p6 new file mode 100644 index 0000000000..076e7deec1 --- /dev/null +++ b/challenge-017/noud/perl6/ch-1.p6 @@ -0,0 +1,31 @@ +# Create a script to demonstrate Ackermann function. The Ackermann function is +# defined as below, m and n are positive number: +# +# A(m, n) = n + 1 if m = 0 +# A(m, n) = A(m - 1, 1) if m > 0 and n = 0 +# A(m, n) = A(m - 1, A(m, n - 1)) if m > 0 and n > 0 +# +# Example expansions as shown in wiki page. +# +# A(1, 2) = A(0, A(1, 1)) +# = A(0, A(0, A(1, 0))) +# = A(0, A(0, A(0, 1))) +# = A(0, A(0, 2)) +# = A(0, 3) +# = 4 + +multi A(0, Int $n) { $n + 1 }; +multi A(Int $m, 0) { A($m - 1, 1) }; +multi A(Int $m, Int $n) { A($m - 1, A($m, $n - 1)) }; + + +multi MAIN('test') { + use Test; + + # As is known, the Ackerman function grows fast. Hence we only test the + # Ackermann function for some small values. + is A(1, 2), 4; + is A(1, 1), 3; + is A(2, 2), 7; + is A(3, 3), 61; +} diff --git a/challenge-017/noud/perl6/ch-2.p6 b/challenge-017/noud/perl6/ch-2.p6 new file mode 100644 index 0000000000..753390e8bf --- /dev/null +++ b/challenge-017/noud/perl6/ch-2.p6 @@ -0,0 +1,37 @@ +# Create a script to parse URL and print the components of URL. According to Wiki page, the URL syntax is as below: +# +# scheme:[//[userinfo@]host[:port]]path[?query][#fragment] +# +# For example: jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1 +# +# scheme: jdbc:mysql +# userinfo: user:password +# host: localhost +# port: 3306 +# path: /pwc +# query: profile=true +# fragment: h1 + +sub parse($url) { + my @keys = ; + my $reg = / (\w+\:\w+)\:\/\/(\w+\:.+)\@(\w+)\:(\d+)(\/\w+)\?(.+)\#(\w+)$ /; + + return Hash.new(@keys Z ($url ~~ $reg).values); +} + + +multi MAIN('test') { + use Test; + + is parse("jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1"), + { + scheme => "jdbc:mysql", + userinfo => "user:password", + host => "localhost", + port => 3306, + path => "/pwc", + query => "profile=true", + fragment => "h1" + }; +} + -- cgit From 79f066fe8b36e3112158e777d7ada16feaf66cda Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 16 Jul 2019 07:57:16 +0100 Subject: - Added solutions by Dave Jacoby. --- challenge-017/dave-jacoby/ch-1.pl | 21 - challenge-017/dave-jacoby/ch-2.pl | 164 ------ challenge-017/dave-jacoby/ch-2b.pl | 55 -- challenge-017/dave-jacoby/perl5/ch-1.pl | 21 + challenge-017/dave-jacoby/perl5/ch-2.pl | 164 ++++++ challenge-017/dave-jacoby/perl5/ch-2b.pl | 55 ++ challenge-017/dave-jacoby/picture.jpg | Bin 516253 -> 0 bytes stats/pwc-current.json | 97 ++-- stats/pwc-language-breakdown-summary.json | 54 +- stats/pwc-language-breakdown.json | 196 +++---- stats/pwc-leaders.json | 882 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 34 +- stats/pwc-summary-31-60.json | 38 +- stats/pwc-summary-61-90.json | 44 +- stats/pwc-summary-91-120.json | 58 +- stats/pwc-summary.json | 36 +- 16 files changed, 967 insertions(+), 952 deletions(-) delete mode 100755 challenge-017/dave-jacoby/ch-1.pl delete mode 100755 challenge-017/dave-jacoby/ch-2.pl delete mode 100755 challenge-017/dave-jacoby/ch-2b.pl create mode 100755 challenge-017/dave-jacoby/perl5/ch-1.pl create mode 100755 challenge-017/dave-jacoby/perl5/ch-2.pl create mode 100755 challenge-017/dave-jacoby/perl5/ch-2b.pl delete mode 100644 challenge-017/dave-jacoby/picture.jpg diff --git a/challenge-017/dave-jacoby/ch-1.pl b/challenge-017/dave-jacoby/ch-1.pl deleted file mode 100755 index 87ed00e14d..0000000000 --- a/challenge-017/dave-jacoby/ch-1.pl +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; -use utf8; -use feature qw{ postderef say signatures state switch }; -no warnings - qw{ experimental::postderef experimental::smartmatch experimental::signatures }; - -say a( 1, 2 ); -say a( 2, 2 ); -say a( 2, 5 ); -exit; - -sub a ( $m, $n ) { - die 'Invalid input' unless $m >= 0 && $n >= 0; - return $n + 1 if $m == 0; - return a( $m - 1, 1 ) if $m > 0 && $n == 0; - return a( $m - 1, a( $m, $n - 1 ) ) if $m > 0 && $n > 0; -} - diff --git a/challenge-017/dave-jacoby/ch-2.pl b/challenge-017/dave-jacoby/ch-2.pl deleted file mode 100755 index 77e26dafaa..0000000000 --- a/challenge-017/dave-jacoby/ch-2.pl +++ /dev/null @@ -1,164 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; -use utf8; -use feature qw{ postderef say signatures state switch }; -no warnings - qw{ experimental::postderef experimental::smartmatch experimental::signatures }; - -# Create a script to parse URL and print the components of URL. -# According to Wiki page, the URL syntax is as below: - -# scheme:[//[userinfo@]host[:port]]path[?query][#fragment] - -my @list; -push @list, 'ftp://ftp.cerias.purdue.edu/pub/dict/README.txt'; -push @list, 'http://slashdot.org/'; -push @list, 'https://en.wikipedia.org/wiki/URL'; -push @list, 'https://github.com/manwar/perlweeklychallenge-club/pulse'; -push @list, 'https://mail.google.com/mail/u/0/#inbox/FMfcg'; -push @list, 'https://perlweeklychallenge.org/blog/perl-weekly-challenge-017/'; -push @list, 'https://practimer.me:443/#5m0s'; -push @list, 'https://www.perlmonks.org/?node_id=818843'; -push @list, 'jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1'; - -@list = @ARGV if scalar @ARGV; # replace test list if anything is entered - -# by the URL definition on wikipedia, jdbc:mysql is not a valid scheme -# and the scheme contains a trailing colon. - -# Notes on implementation: -# + this is VERY ascii-centric code, and unicode and emoji are allowed -# in URLs. Take, for example, i❤️tacos.ws -# + schemas and TLDs are constrained, not just to ascii, but to a small -# (but larger than before) list. Yeah, you can override this with your -# hosts file, but otherwise, all URLs should end (case-insensitive) -# with a string in this list: -# http://data.iana.org/TLD/tlds-alpha-by-domain.txt -# + similarly, the lists for path and query are limited to values -# fitting my dataset. There have been path separator bugs: IE -# would count \ as a separator, while Mozilla would not, so -# you could hide information from Windows browsers /with\this\path - -# So, this is a very naive implementation, needing more work before -# it can be trusted with real-world URLs. So, except when it's done -# for fun, like here, use something like Mojo::URL to split it up -# for you https://metacpan.org/pod/Mojo::URL - -for my $url ( sort @list ) { - my ( $scheme, $userinfo, $host, $port, $path, $query, $fragment ) = - $url =~ m{ - ^ - (\w[A-Za-z0-9\+\.\-\:]+):// # schema - (?:([^@]+)@)? # userinfo - ([\w\.]+) # host - (?:\:(\d+))? # port - (/[\w/\+\.\-]*) # path - (?:\?([\w/\+\.\-\=]+))? # query - (?:\#([^#]+))? # fragment - $ - }mxis; - $scheme //= ''; - $userinfo //= ''; - $host //= ''; - $port //= ''; - $path //= ''; - $query //= ''; - $fragment //= ''; - - say <<"END"; - URL $url - scheme $scheme - userinfo $userinfo - host $host - port $port - path $path - query $query - fragment $fragment -END -} - -__DATA__ - - URL ftp://ftp.cerias.purdue.edu/pub/dict/README.txt - scheme ftp - userinfo - host ftp.cerias.purdue.edu - port - path /pub/dict/README.txt - query - fragment - - URL http://slashdot.org/ - scheme http - userinfo - host slashdot.org - port - path / - query - fragment - - URL https://en.wikipedia.org/wiki/URL - scheme https - userinfo - host en.wikipedia.org - port - path /wiki/URL - query - fragment - - URL https://github.com/manwar/perlweeklychallenge-club/pulse - scheme https - userinfo - host github.com - port - path /manwar/perlweeklychallenge-club/pulse - query - fragment - - URL https://mail.google.com/mail/u/0/#inbox/FMfcg - scheme https - userinfo - host mail.google.com - port - path /mail/u/0/ - query - fragment inbox/FMfcg - - URL https://perlweeklychallenge.org/blog/perl-weekly-challenge-017/ - scheme https - userinfo - host perlweeklychallenge.org - port - path /blog/perl-weekly-challenge-017/ - query - fragment - - URL https://practimer.me:443/#5m0s - scheme https - userinfo - host practimer.me - port 443 - path / - query - fragment 5m0s - - URL https://www.perlmonks.org/?node_id=818843 - scheme https - userinfo - host www.perlmonks.org - port - path / - query node_id=818843 - fragment - - URL jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1 - scheme jdbc:mysql - userinfo user:password - host localhost - port 3306 - path /pwc - query profile=true - fragment h1 - diff --git a/challenge-017/dave-jacoby/ch-2b.pl b/challenge-017/dave-jacoby/ch-2b.pl deleted file mode 100755 index d83a61845e..0000000000 --- a/challenge-017/dave-jacoby/ch-2b.pl +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; -use utf8; -use feature qw{ postderef say signatures state switch }; -no warnings - qw{ experimental::postderef experimental::smartmatch experimental::signatures }; - -use Mojo::URL; - -# Create a script to parse URL and print the components of URL. -# According to Wiki page, the URL syntax is as below: - -# scheme:[//[userinfo@]host[:port]]path[?query][#fragment] - -my @list; -push @list, 'ftp://ftp.cerias.purdue.edu/pub/dict/README.txt'; -push @list, 'http://slashdot.org/'; -push @list, 'https://en.wikipedia.org/wiki/URL'; -push @list, 'https://github.com/manwar/perlweeklychallenge-club/pulse'; -push @list, 'https://mail.google.com/mail/u/0/#inbox/FMfcg'; -push @list, 'https://perlweeklychallenge.org/blog/perl-weekly-challenge-017/'; -push @list, 'https://practimer.me:443/#5m0s'; -push @list, 'https://www.perlmonks.org/?node_id=818843'; -push @list, 'mysql://user:password@localhost:3306/pwc?profile=true#h1'; - -# Mojo::URL does NOT like the example URL -push @list, 'jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1'; - -@list = @ARGV if scalar @ARGV; # replace test list if anything is entered - -for my $url ( sort @list ) { - my $mojo = Mojo::URL->new($url); - my $scheme = $mojo->scheme || ''; - my $userinfo = $mojo->userinfo || ''; - my $host = $mojo->host || ''; - my $port = $mojo->port || ''; - my $path = $mojo->path || ''; - my $query = $mojo->query || ''; - my $fragment = $mojo->fragment || ''; - - say <<"END"; - URL $url - scheme $scheme - userinfo $userinfo - host $host - port $port - path $path - query $query - fragment $fragment -END -} - -__DATA__ diff --git a/challenge-017/dave-jacoby/perl5/ch-1.pl b/challenge-017/dave-jacoby/perl5/ch-1.pl new file mode 100755 index 0000000000..87ed00e14d --- /dev/null +++ b/challenge-017/dave-jacoby/perl5/ch-1.pl @@ -0,0 +1,21 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use utf8; +use feature qw{ postderef say signatures state switch }; +no warnings + qw{ experimental::postderef experimental::smartmatch experimental::signatures }; + +say a( 1, 2 ); +say a( 2, 2 ); +say a( 2, 5 ); +exit; + +sub a ( $m, $n ) { + die 'Invalid input' unless $m >= 0 && $n >= 0; + return $n + 1 if $m == 0; + return a( $m - 1, 1 ) if $m > 0 && $n == 0; + return a( $m - 1, a( $m, $n - 1 ) ) if $m > 0 && $n > 0; +} + diff --git a/challenge-017/dave-jacoby/perl5/ch-2.pl b/challenge-017/dave-jacoby/perl5/ch-2.pl new file mode 100755 index 0000000000..77e26dafaa --- /dev/null +++ b/challenge-017/dave-jacoby/perl5/ch-2.pl @@ -0,0 +1,164 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use utf8; +use feature qw{ postderef say signatures state switch }; +no warnings + qw{ experimental::postderef experimental::smartmatch experimental::signatures }; + +# Create a script to parse URL and print the components of URL. +# According to Wiki page, the URL syntax is as below: + +# scheme:[//[userinfo@]host[:port]]path[?query][#fragment] + +my @list; +push @list, 'ftp://ftp.cerias.purdue.edu/pub/dict/README.txt'; +push @list, 'http://slashdot.org/'; +push @list, 'https://en.wikipedia.org/wiki/URL'; +push @list, 'https://github.com/manwar/perlweeklychallenge-club/pulse'; +push @list, 'https://mail.google.com/mail/u/0/#inbox/FMfcg'; +push @list, 'https://perlweeklychallenge.org/blog/perl-weekly-challenge-017/'; +push @list, 'https://practimer.me:443/#5m0s'; +push @list, 'https://www.perlmonks.org/?node_id=818843'; +push @list, 'jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1'; + +@list = @ARGV if scalar @ARGV; # replace test list if anything is entered + +# by the URL definition on wikipedia, jdbc:mysql is not a valid scheme +# and the scheme contains a trailing colon. + +# Notes on implementation: +# + this is VERY ascii-centric code, and unicode and emoji are allowed +# in URLs. Take, for example, i❤️tacos.ws +# + schemas and TLDs are constrained, not just to ascii, but to a small +# (but larger than before) list. Yeah, you can override this with your +# hosts file, but otherwise, all URLs should end (case-insensitive) +# with a string in this list: +# http://data.iana.org/TLD/tlds-alpha-by-domain.txt +# + similarly, the lists for path and query are limited to values +# fitting my dataset. There have been path separator bugs: IE +# would count \ as a separator, while Mozilla would not, so +# you could hide information from Windows browsers /with\this\path + +# So, this is a very naive implementation, needing more work before +# it can be trusted with real-world URLs. So, except when it's done +# for fun, like here, use something like Mojo::URL to split it up +# for you https://metacpan.org/pod/Mojo::URL + +for my $url ( sort @list ) { + my ( $scheme, $userinfo, $host, $port, $path, $query, $fragment ) = + $url =~ m{ + ^ + (\w[A-Za-z0-9\+\.\-\:]+):// # schema + (?:([^@]+)@)? # userinfo + ([\w\.]+) # host + (?:\:(\d+))? # port + (/[\w/\+\.\-]*) # path + (?:\?([\w/\+\.\-\=]+))? # query + (?:\#([^#]+))? # fragment + $ + }mxis; + $scheme //= ''; + $userinfo //= ''; + $host //= ''; + $port //= ''; + $path //= ''; + $query //= ''; + $fragment //= ''; + + say <<"END"; + URL $url + scheme $scheme + userinfo $userinfo + host $host + port $port + path $path + query $query + fragment $fragment +END +} + +__DATA__ + + URL ftp://ftp.cerias.purdue.edu/pub/dict/README.txt + scheme ftp + userinfo + host ftp.cerias.purdue.edu + port + path /pub/dict/README.txt + query + fragment + + URL http://slashdot.org/ + scheme http + userinfo + host slashdot.org + port + path / + query + fragment + + URL https://en.wikipedia.org/wiki/URL + scheme https + userinfo + host en.wikipedia.org + port + path /wiki/URL + query + fragment + + URL https://github.com/manwar/perlweeklychallenge-club/pulse + scheme https + userinfo + host github.com + port + path /manwar/perlweeklychallenge-club/pulse + query + fragment + + URL https://mail.google.com/mail/u/0/#inbox/FMfcg + scheme https + userinfo + host mail.google.com + port + path /mail/u/0/ + query + fragment inbox/FMfcg + + URL https://perlweeklychallenge.org/blog/perl-weekly-challenge-017/ + scheme https + userinfo + host perlweeklychallenge.org + port + path /blog/perl-weekly-challenge-017/ + query + fragment + + URL https://practimer.me:443/#5m0s + scheme https + userinfo + host practimer.me + port 443 + path / + query + fragment 5m0s + + URL https://www.perlmonks.org/?node_id=818843 + scheme https + userinfo + host www.perlmonks.org + port + path / + query node_id=818843 + fragment + + URL jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1 + scheme jdbc:mysql + userinfo user:password + host localhost + port 3306 + path /pwc + query profile=true + fragment h1 + diff --git a/challenge-017/dave-jacoby/perl5/ch-2b.pl b/challenge-017/dave-jacoby/perl5/ch-2b.pl new file mode 100755 index 0000000000..d83a61845e --- /dev/null +++ b/challenge-017/dave-jacoby/perl5/ch-2b.pl @@ -0,0 +1,55 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use utf8; +use feature qw{ postderef say signatures state switch }; +no warnings + qw{ experimental::postderef experimental::smartmatch experimental::signatures }; + +use Mojo::URL; + +# Create a script to parse URL and print the components of URL. +# According to Wiki page, the URL syntax is as below: + +# scheme:[//[userinfo@]host[:port]]path[?query][#fragment] + +my @list; +push @list, 'ftp://ftp.cerias.purdue.edu/pub/dict/README.txt'; +push @list, 'http://slashdot.org/'; +push @list, 'https://en.wikipedia.org/wiki/URL'; +push @list, 'https://github.com/manwar/perlweeklychallenge-club/pulse'; +push @list, 'https://mail.google.com/mail/u/0/#inbox/FMfcg'; +push @list, 'https://perlweeklychallenge.org/blog/perl-weekly-challenge-017/'; +push @list, 'https://practimer.me:443/#5m0s'; +push @list, 'https://www.perlmonks.org/?node_id=818843'; +push @list, 'mysql://user:password@localhost:3306/pwc?profile=true#h1'; + +# Mojo::URL does NOT like the example URL +push @list, 'jdbc:mysql://user:password@localhost:3306/pwc?profile=true#h1'; + +@list = @ARGV if scalar @ARGV; # replace test list if anything is entered + +for my $url ( sort @list ) { + my $mojo = Mojo::URL->new($url); + my $scheme = $mojo->scheme || ''; + my $userinfo = $mojo->userinfo || ''; + my $host = $mojo->host || ''; + my $port = $mojo->port || ''; + my $path = $mojo->path || ''; + my $query = $mojo->query || ''; + my $fragment = $mojo->fragment || ''; + + say <<"END"; + URL $url + scheme $scheme + userinfo $userinfo + host $host + port $port + path $path + query $query + fragment $fragment +END +} + +__DATA__ diff --git a/challenge-017/dave-jacoby/picture.jpg b/challenge-017/dave-jacoby/picture.jpg deleted file mode 100644 index 63559b4ae4..0000000000 Binary files a/challenge-017/dave-jacoby/picture.jpg and /dev/null differ diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 420bc3a0fa..9ce1168370 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,38 +1,9 @@ { - "legend" : { - "enabled" : 0 - }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 017", - "data" : [ - { - "name" : "Laurent Rosenfeld", - "y" : 5, - "drilldown" : "Laurent Rosenfeld" - }, - { - "y" : 2, - "drilldown" : "Roger Bell West", - "name" : "Roger Bell West" - }, - { - "y" : 1, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - } - ] - } - ], - "xAxis" : { - "type" : "category" - }, "plotOptions" : { "series" : { "borderWidth" : 0, @@ -42,21 +13,24 @@ } } }, - "subtitle" : { - "text" : "[Champions: 3] Last updated at 2019-07-15 23:00:01 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 017" - }, "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
", "followPointer" : 1, - "headerFormat" : "{series.name}
" + "pointFormat" : "{point.name}: {point.y:f}
" }, "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl 5", + 2 + ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" + }, + { "data" : [ [ "Perl 5", @@ -71,7 +45,8 @@ 1 ] ], - "name" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "name" : "Roger Bell West", @@ -84,18 +59,58 @@ "id" : "Roger Bell West" }, { - "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ [ "Perl 6", 1 ] - ] + ], + "name" : "Simon Proctor" } ] }, + "subtitle" : { + "text" : "[Champions: 4] Last updated at 2019-07-16 06:56:59 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 017" + }, + "series" : [ + { + "data" : [ + { + "drilldown" : "Dave Jacoby", + "y" : 2, + "name" : "Dave Jacoby" + }, + { + "name" : "Laurent Rosenfeld", + "y" : 5, + "drilldown" : "Laurent Rosenfeld" + }, + { + "name" : "Roger Bell West", + "y" : 2, + "drilldown" : "Roger Bell West" + }, + { + "name" : "Simon Proctor", + "y" : 1, + "drilldown" : "Simon Proctor" + } + ], + "name" : "Perl Weekly Challenge - 017", + "colorByPoint" : 1 + } + ], "chart" : { "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "legend" : { + "enabled" : 0 } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 010beb5751..e558e6f1b6 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,21 +1,33 @@ { + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Last updated at 2019-07-16 06:57:09 GMT" + }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, "series" : [ { "name" : "Contributions", "dataLabels" : { - "align" : "right", "format" : "{point.y:.0f}", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, "color" : "#FFFFFF", "rotation" : -90, - "enabled" : "true", "y" : 10, - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } + "align" : "right", + "enabled" : "true" }, "data" : [ [ @@ -24,7 +36,7 @@ ], [ "Perl 5", - 679 + 681 ], [ "Perl 6", @@ -33,31 +45,19 @@ ] } ], - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "subtitle" : { - "text" : "Last updated at 2019-07-15 23:00:15 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "chart" : { + "type" : "column" }, "xAxis" : { - "type" : "category", "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } - } - }, - "chart" : { - "type" : "column" + }, + "type" : "category" }, - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 425e51a0d0..346791e47e 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,41 +1,63 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "headerFormat" : "" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-16 06:57:09 GMT" + }, + "legend" : { + "enabled" : "false" + }, "series" : [ { + "colorByPoint" : "true", "data" : [ { + "name" : "#001", "y" : 123, - "drilldown" : "001", - "name" : "#001" + "drilldown" : "001" }, { - "name" : "#002", "drilldown" : "002", + "name" : "#002", "y" : 104 }, { - "name" : "#003", + "drilldown" : "003", "y" : 66, - "drilldown" : "003" + "name" : "#003" }, { - "y" : 84, "drilldown" : "004", + "y" : 84, "name" : "#004" }, { - "drilldown" : "005", "y" : 66, - "name" : "#005" + "name" : "#005", + "drilldown" : "005" }, { - "drilldown" : "006", + "name" : "#006", "y" : 47, - "name" : "#006" + "drilldown" : "006" }, { "name" : "#007", @@ -43,72 +65,70 @@ "drilldown" : "007" }, { - "name" : "#008", + "drilldown" : "008", "y" : 67, - "drilldown" : "008" + "name" : "#008" }, { - "y" : 65, "drilldown" : "009", + "y" : 65, "name" : "#009" }, { "name" : "#010", - "drilldown" : "010", - "y" : 58 + "y" : 58, + "drilldown" : "010" }, { - "y" : 77, "drilldown" : "011", + "y" : 77, "name" : "#011" }, { - "name" : "#012", "y" : 81, + "name" : "#012", "drilldown" : "012" }, { - "drilldown" : "013", "y" : 74, - "name" : "#013" + "name" : "#013", + "drilldown" : "013" }, { "drilldown" : "014", - "y" : 94, - "name" : "#014" + "name" : "#014", + "y" : 94 }, { "drilldown" : "015", - "y" : 90, - "name" : "#015" + "name" : "#015", + "y" : 90 }, { - "name" : "#016", "drilldown" : "016", + "name" : "#016", "y" : 63 }, { + "drilldown" : "017", "name" : "#017", - "y" : 8, - "drilldown" : "017" + "y" : 10 } ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" + "name" : "Perl Weekly Challenge Languages" } ], - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-15 23:00:15 GMT" + "chart" : { + "type" : "column" }, "drilldown" : { "series" : [ { - "name" : "001", "data" : [ [ "Perl 5", @@ -123,11 +143,12 @@ 10 ] ], - "id" : "001" + "id" : "001", + "name" : "001" }, { - "id" : "002", "name" : "002", + "id" : "002", "data" : [ [ "Perl 5", @@ -144,6 +165,7 @@ ] }, { + "name" : "003", "id" : "003", "data" : [ [ @@ -158,12 +180,11 @@ "Blog", 8 ] - ], - "name" : "003" + ] }, { - "id" : "004", "name" : "004", + "id" : "004", "data" : [ [ "Perl 5", @@ -181,6 +202,7 @@ }, { "id" : "005", + "name" : "005", "data" : [ [ "Perl 5", @@ -194,12 +216,9 @@ "Blog", 11 ] - ], - "name" : "005" + ] }, { - "id" : "006", - "name" : "006", "data" : [ [ "Perl 5", @@ -213,9 +232,13 @@ "Blog", 6 ] - ] + ], + "name" : "006", + "id" : "006" }, { + "name" : "007", + "id" : "007", "data" : [ [ "Perl 5", @@ -229,12 +252,11 @@ "Blog", 8 ] - ], - "name" : "007", - "id" : "007" + ] }, { "name" : "008", + "id" : "008", "data" : [ [ "Perl 5", @@ -248,10 +270,11 @@ "Blog", 9 ] - ], - "id" : "008" + ] }, { + "name" : "009", + "id" : "009", "data" : [ [ "Perl 5", @@ -265,11 +288,11 @@ "Blog", 11 ] - ], - "name" : "009", - "id" : "009" + ] }, { + "id" : "010", + "name" : "010", "data" : [ [ "Perl 5", @@ -283,13 +306,9 @@ "Blog", 9 ] - ], - "name" : "010", - "id" : "010" + ] }, { - "id" : "011", - "name" : "011", "data" : [ [ "Perl 5", @@ -303,9 +322,13 @@ "Blog", 8 ] - ] + ], + "name" : "011", + "id" : "011" }, { + "name" : "012", + "id" : "012", "data" : [ [ "Perl 5", @@ -319,11 +342,10 @@ "Blog", 9 ] - ], - "name" : "012", - "id" : "012" + ] }, { + "name" : "013", "id" : "013", "data" : [ [ @@ -338,10 +360,11 @@ "Blog", 11 ] - ], - "name" : "013" + ] }, { + "id" : "014", + "name" : "014", "data" : [ [ "Perl 5", @@ -355,9 +378,7 @@ "Blog", 13 ] - ], - "name" : "014", - "id" : "014" + ] }, { "data" : [ @@ -374,11 +395,12 @@ 12 ] ], - "name" : "015", - "id" : "015" + "id" : "015", + "name" : "015" }, { "id" : "016", + "name" : "016", "data" : [ [ "Perl 5", @@ -392,15 +414,15 @@ "Blog", 9 ] - ], - "name" : "016" + ] }, { "id" : "017", + "name" : "017", "data" : [ [ "Perl 5", - 4 + 6 ], [ "Perl 6", @@ -410,30 +432,8 @@ "Blog", 1 ] - ], - "name" : "017" + ] } ] - }, - "legend" : { - "enabled" : "false" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "chart" : { - "type" : "column" - }, - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 6c9e7cb944..40af54ad21 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,58 +1,327 @@ { - "yAxis" : { - "title" : { - "text" : "Total Score" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-16 06:57:05 GMT" + }, "legend" : { "enabled" : "false" }, + "series" : [ + { + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders", + "data" : [ + { + "drilldown" : "Laurent Rosenfeld", + "name" : "#1: Laurent Rosenfeld", + "y" : 176 + }, + { + "y" : 168, + "name" : "#2: Joelle Maslak", + "drilldown" : "Joelle Maslak" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "y" : 130, + "name" : "#3: Jaldhar H. Vyas" + }, + { + "drilldown" : "Ruben Westerberg", + "y" : 116, + "name" : "#4: Ruben Westerberg" + }, + { + "drilldown" : "Athanasius", + "y" : 98, + "name" : "#5: Athanasius" + }, + { + "y" : 96, + "name" : "#6: Adam Russell", + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "y" : 88, + "name" : "#7: Arne Sommer" + }, + { + "y" : 76, + "name" : "#8: Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "y" : 74, + "name" : "#9: Kian-Meng Ang", + "drilldown" : "Kian-Meng Ang" + }, + { + "y" : 72, + "name" : "#10: Dave Jacoby", + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "E. Choroba", + "name" : "#11: E. Choroba", + "y" : 72 + }, + { + "name" : "#12: Francis Whittle", + "y" : 72, + "drilldown" : "Francis Whittle" + }, + { + "drilldown" : "Gustavo Chaves", + "name" : "#13: Gustavo Chaves", + "y" : 64 + }, + { + "drilldown" : "Andrezgz", + "name" : "#14: Andrezgz", + "y" : 60 + }, + { + "drilldown" : "Yozen Hernandez", + "name" : "#15: Yozen Hernandez", + "y" : 56 + }, + { + "drilldown" : "Daniel Mantovani", + "y" : 52, + "name" : "#16: Daniel Mantovani" + }, + { + "y" : 52, + "name" : "#17: Duncan C. White", + "drilldown" : "Duncan C. White" + }, + { + "drilldown" : "Feng Chang", + "y" : 52, + "name" : "#18: Feng Chang" + }, + { + "name" : "#19: Steven Wilson", + "y" : 50, + "drilldown" : "Steven Wilson" + }, + { + "name" : "#20: Jo Christian Oterhals", + "y" : 48, + "drilldown" : "Jo Christian Oterhals" + }, + { + "name" : "#21: Dr James A. Smith", + "y" : 44, + "drilldown" : "Dr James A. Smith" + }, + { + "drilldown" : "Guillermo Ramos", + "y" : 34, + "name" : "#22: Guillermo Ramos" + }, + { + "y" : 32, + "name" : "#23: Mark Senn", + "drilldown" : "Mark Senn" + }, + { + "name" : "#24: Nick Logan", + "y" : 32, + "drilldown" : "Nick Logan" + }, + { + "drilldown" : "Ozzy", + "name" : "#25: Ozzy", + "y" : 32 + }, + { + "name" : "#26: Lars Balker", + "y" : 28, + "drilldown" : "Lars Balker" + }, + { + "drilldown" : "Veesh Goldman", + "name" : "#27: Veesh Goldman", + "y" : 26 + }, + { + "y" : 24, + "name" : "#28: Kevin Colyer", + "drilldown" : "Kevin Colyer" + }, + { + "drilldown" : "Maxim Nechaev", + "name" : "#29: Maxim Nechaev", + "y" : 24 + }, + { + "drilldown" : "Alicia Bielsa", + "y" : 22, + "name" : "#30: Alicia Bielsa" + }, + { + "y" : 20, + "name" : "#31: Doug Schrag", + "drilldown" : "Doug Schrag" + }, + { + "drilldown" : "Lubos Kolouch", + "y" : 18, + "name" : "#32: Lubos Kolouch" + }, + { + "y" : 18, + "name" : "#33: Neil Bowers", + "drilldown" : "Neil Bowers" + }, + { + "drilldown" : "Roger Bell West", + "name" : "#34: Roger Bell West", + "y" : 18 + }, + { + "name" : "#35: Jaime Corchado", + "y" : 16, + "drilldown" : "Jaime Corchado" + }, + { + "name" : "#36: Robert Gratza", + "y" : 16, + "drilldown" : "Robert Gratza" + }, + { + "drilldown" : "John Barrett", + "name" : "#37: John Barrett", + "y" : 14 + }, + { + "name" : "#38: Khalid", + "y" : 14, + "drilldown" : "Khalid" + }, + { + "drilldown" : "Aaron Sherman", + "name" : "#39: Aaron Sherman", + "y" : 12 + }, + { + "name" : "#40: Donald Hunter", + "y" : 12, + "drilldown" : "Donald Hunter" + }, + { + "y" : 12, + "name" : "#41: Kivanc Yazan", + "drilldown" : "Kivanc Yazan" + }, + { + "drilldown" : "Maxim Kolodyazhny", + "y" : 12, + "name" : "#42: Maxim Kolodyazhny" + }, + { + "y" : 12, + "name" : "#43: Noud", + "drilldown" : "Noud" + }, + { + "drilldown" : "Philippe Bruhat", + "y" : 12, + "name" : "#44: Philippe Bruhat" + }, + { + "y" : 12, + "name" : "#45: Sergio Iglesias", + "drilldown" : "Sergio Iglesias" + }, + { + "y" : 10, + "name" : "#46: Arpad Toth", + "drilldown" : "Arpad Toth" + }, + { + "drilldown" : "Duane Powell", + "y" : 10, + "name" : "#47: Duane Powell" + }, + { + "drilldown" : "Pete Houston", + "y" : 10, + "name" : "#48: Pete Houston" + }, + { + "y" : 10, + "name" : "#49: Steve Rogerson", + "drilldown" : "Steve Rogerson" + }, + { + "name" : "#50: Walt Mankowski", + "y" : 10, + "drilldown" : "Walt Mankowski" + } + ] + } + ], "drilldown" : { "series" : [ { - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Blog", 21 ], - [ - "Perl 5", - 34 - ], [ "Perl 6", 33 + ], + [ + "Perl 5", + 34 ] ] }, { + "name" : "Joelle Maslak", "data" : [ [ "Perl 5", 40 ], - [ - "Perl 6", - 40 - ], [ "Blog", 4 + ], + [ + "Perl 6", + 40 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "id" : "Joelle Maslak" }, { + "id" : "Jaldhar H. Vyas", "data" : [ [ - "Perl 6", + "Perl 5", 31 ], [ - "Perl 5", + "Perl 6", 31 ], [ @@ -60,42 +329,43 @@ 3 ] ], - "id" : "Jaldhar H. Vyas", "name" : "Jaldhar H. Vyas" }, { "data" : [ [ - "Perl 5", + "Perl 6", 29 ], [ - "Perl 6", + "Perl 5", 29 ] ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg" }, { + "id" : "Athanasius", "data" : [ [ "Perl 6", 11 ], - [ - "Perl 5", - 35 - ], [ "Blog", 3 + ], + [ + "Perl 5", + 35 ] ], - "name" : "Athanasius", - "id" : "Athanasius" + "name" : "Athanasius" }, { + "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ [ "Blog", @@ -105,26 +375,28 @@ "Perl 5", 32 ] - ], - "name" : "Adam Russell", - "id" : "Adam Russell" + ] }, { "id" : "Arne Sommer", "name" : "Arne Sommer", "data" : [ - [ - "Blog", - 15 - ], [ "Perl 6", 29 + ], + [ + "Blog", + 15 ] ] }, { "data" : [ + [ + "Perl 5", + 4 + ], [ "Blog", 7 @@ -132,18 +404,12 @@ [ "Perl 6", 27 - ], - [ - "Perl 5", - 4 ] ], "name" : "Simon Proctor", "id" : "Simon Proctor" }, { - "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -153,101 +419,103 @@ "Perl 5", 26 ] - ] + ], + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" }, { "data" : [ [ - "Perl 5", - 24 + "Blog", + 14 ], [ - "Blog", - 12 + "Perl 6", + 1 + ], + [ + "Perl 5", + 21 ] ], - "name" : "E. Choroba", - "id" : "E. Choroba" + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "name" : "Francis Whittle", - "id" : "Francis Whittle", + "id" : "E. Choroba", "data" : [ [ - "Blog", - 7 + "Perl 5", + 24 ], [ - "Perl 6", - 29 + "Blog", + 12 ] - ] + ], + "name" : "E. Choroba" }, { + "id" : "Francis Whittle", + "name" : "Francis Whittle", "data" : [ - [ - "Perl 5", - 19 - ], [ "Perl 6", - 1 + 29 ], [ "Blog", - 14 + 7 ] - ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + ] }, { + "name" : "Gustavo Chaves", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 28 + ], + [ + "Blog", + 4 ] ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + "id" : "Gustavo Chaves" }, { - "id" : "Andrezgz", "name" : "Andrezgz", "data" : [ [ "Perl 5", 30 ] - ] + ], + "id" : "Andrezgz" }, { + "id" : "Yozen Hernandez", "data" : [ - [ - "Perl 5", - 18 - ], [ "Blog", 10 + ], + [ + "Perl 5", + 18 ] ], - "id" : "Yozen Hernandez", "name" : "Yozen Hernandez" }, { "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 26 ] - ] + ], + "name" : "Daniel Mantovani" }, { "id" : "Duncan C. White", @@ -260,6 +528,7 @@ ] }, { + "name" : "Feng Chang", "data" : [ [ "Perl 5", @@ -270,10 +539,10 @@ 13 ] ], - "name" : "Feng Chang", "id" : "Feng Chang" }, { + "name" : "Steven Wilson", "data" : [ [ "Perl 5", @@ -284,52 +553,52 @@ 3 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { - "name" : "Jo Christian Oterhals", "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals", "data" : [ [ "Perl 6", 12 ], [ - "Perl 5", + "Blog", 6 ], [ - "Blog", + "Perl 5", 6 ] ] }, { "id" : "Dr James A. Smith", - "name" : "Dr James A. Smith", "data" : [ - [ - "Perl 6", - 10 - ], [ "Perl 5", 12 + ], + [ + "Perl 6", + 10 ] - ] + ], + "name" : "Dr James A. Smith" }, { + "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos", "data" : [ [ "Perl 5", 17 ] - ], - "name" : "Guillermo Ramos", - "id" : "Guillermo Ramos" + ] }, { + "name" : "Mark Senn", "data" : [ [ "Perl 6", @@ -340,8 +609,7 @@ 4 ] ], - "id" : "Mark Senn", - "name" : "Mark Senn" + "id" : "Mark Senn" }, { "id" : "Nick Logan", @@ -358,16 +626,17 @@ ] }, { + "id" : "Ozzy", + "name" : "Ozzy", "data" : [ [ "Perl 6", 16 ] - ], - "id" : "Ozzy", - "name" : "Ozzy" + ] }, { + "name" : "Lars Balker", "data" : [ [ "Perl 6", @@ -378,66 +647,65 @@ 10 ] ], - "id" : "Lars Balker", - "name" : "Lars Balker" + "id" : "Lars Balker" }, { "id" : "Veesh Goldman", "name" : "Veesh Goldman", "data" : [ - [ - "Perl 5", - 12 - ], [ "Blog", 1 + ], + [ + "Perl 5", + 12 ] ] }, { + "name" : "Kevin Colyer", "data" : [ [ "Perl 6", 12 ] ], - "id" : "Kevin Colyer", - "name" : "Kevin Colyer" + "id" : "Kevin Colyer" }, { "name" : "Maxim Nechaev", - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] - ] + ], + "id" : "Maxim Nechaev" }, { + "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] - ], - "id" : "Alicia Bielsa", - "name" : "Alicia Bielsa" + ] }, { + "id" : "Doug Schrag", + "name" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] - ], - "id" : "Doug Schrag", - "name" : "Doug Schrag" + ] }, { - "name" : "Lubos Kolouch", "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", @@ -446,6 +714,7 @@ ] }, { + "id" : "Neil Bowers", "data" : [ [ "Perl 5", @@ -456,10 +725,11 @@ 3 ] ], - "name" : "Neil Bowers", - "id" : "Neil Bowers" + "name" : "Neil Bowers" }, { + "id" : "Roger Bell West", + "name" : "Roger Bell West", "data" : [ [ "Blog", @@ -469,13 +739,11 @@ "Perl 5", 8 ] - ], - "id" : "Roger Bell West", - "name" : "Roger Bell West" + ] }, { - "name" : "Jaime Corchado", "id" : "Jaime Corchado", + "name" : "Jaime Corchado", "data" : [ [ "Perl 5", @@ -484,6 +752,7 @@ ] }, { + "id" : "Robert Gratza", "data" : [ [ "Perl 6", @@ -494,21 +763,24 @@ 2 ] ], - "id" : "Robert Gratza", "name" : "Robert Gratza" }, { "id" : "John Barrett", - "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] - ] + ], + "name" : "John Barrett" }, { "data" : [ + [ + "Perl 5", + 4 + ], [ "Blog", 1 @@ -516,126 +788,120 @@ [ "Perl 6", 2 - ], - [ - "Perl 5", - 4 ] ], - "id" : "Khalid", - "name" : "Khalid" + "name" : "Khalid", + "id" : "Khalid" }, { "id" : "Aaron Sherman", - "name" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] - ] + ], + "name" : "Aaron Sherman" }, { + "id" : "Donald Hunter", "data" : [ [ - "Blog", + "Perl 6", 3 ], [ - "Perl 6", + "Blog", 3 ] ], - "name" : "Donald Hunter", - "id" : "Donald Hunter" + "name" : "Donald Hunter" }, { + "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Kivanc Yazan", "name" : "Kivanc Yazan" }, { + "id" : "Maxim Kolodyazhny", + "name" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] - ], - "name" : "Maxim Kolodyazhny", - "id" : "Maxim Kolodyazhny" + ] }, { - "name" : "Noud", "id" : "Noud", "data" : [ [ "Perl 6", 6 ] - ] + ], + "name" : "Noud" }, { - "id" : "Philippe Bruhat", - "name" : "Philippe Bruhat", "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 2 ] - ] + ], + "name" : "Philippe Bruhat", + "id" : "Philippe Bruhat" }, { - "id" : "Sergio Iglesias", - "name" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Sergio Iglesias", + "id" : "Sergio Iglesias" }, { + "id" : "Arpad Toth", + "name" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] - ], - "id" : "Arpad Toth", - "name" : "Arpad Toth" + ] }, { - "name" : "Duane Powell", - "id" : "Duane Powell", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Duane Powell", + "id" : "Duane Powell" }, { + "name" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] ], - "id" : "Pete Houston", - "name" : "Pete Houston" + "id" : "Pete Houston" }, { - "id" : "Steve Rogerson", - "name" : "Steve Rogerson", "data" : [ [ "Perl 5", @@ -645,302 +911,36 @@ "Perl 6", 2 ] - ] + ], + "name" : "Steve Rogerson", + "id" : "Steve Rogerson" }, { "id" : "Walt Mankowski", - "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Walt Mankowski" } ] }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-15 23:00:11 GMT" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "chart" : { + "type" : "column" }, "tooltip" : { "headerFormat" : "", "pointFormat" : "{point.name}: {point.y:f}
", "followPointer" : "true" }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "colorByPoint" : "true", - "data" : [ - { - "drilldown" : "Laurent Rosenfeld", - "y" : 176, - "name" : "#1: Laurent Rosenfeld" - }, - { - "y" : 168, - "name" : "#2: Joelle Maslak", - "drilldown" : "Joelle Maslak" - }, - { - "name" : "#3: Jaldhar H. Vyas", - "y" : 130, - "drilldown" : "Jaldhar H. Vyas" - }, - { - "drilldown" : "Ruben Westerberg", - "y" : 116, - "name" : "#4: Ruben Westerberg" - }, - { - "name" : "#5: Athanasius", - "y" : 98, - "drilldown" : "Athanasius" - }, - { -