aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-05-24 12:26:56 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-05-24 12:26:56 +0100
commita797dd9e2e57f7e13a3979fd97bcbf1ab4150678 (patch)
tree550a3f0ad647fb93beae2b7a987397a45505f31a
parent5b3d3d48a34b14c06209e4ce75de5898ba84f09f (diff)
downloadperlweeklychallenge-club-a797dd9e2e57f7e13a3979fd97bcbf1ab4150678.tar.gz
perlweeklychallenge-club-a797dd9e2e57f7e13a3979fd97bcbf1ab4150678.tar.bz2
perlweeklychallenge-club-a797dd9e2e57f7e13a3979fd97bcbf1ab4150678.zip
- Added solutions by Maxim Nechaev.
-rwxr-xr-xchallenge-009/maxim-nechaev/perl5/ch-1.pl13
-rwxr-xr-xchallenge-009/maxim-nechaev/perl5/ch-3.pl33
-rw-r--r--stats/pwc-current.json103
-rw-r--r--stats/pwc-language-breakdown.json198
-rw-r--r--stats/pwc-leaders.json834
-rw-r--r--stats/pwc-summary-1-30.json104
-rw-r--r--stats/pwc-summary-31-60.json106
-rw-r--r--stats/pwc-summary-61-90.json40
-rw-r--r--stats/pwc-summary.json226
9 files changed, 859 insertions, 798 deletions
diff --git a/challenge-009/maxim-nechaev/perl5/ch-1.pl b/challenge-009/maxim-nechaev/perl5/ch-1.pl
new file mode 100755
index 0000000000..41a8953373
--- /dev/null
+++ b/challenge-009/maxim-nechaev/perl5/ch-1.pl
@@ -0,0 +1,13 @@
+#!/usr/bin/perl -w
+use strict;
+use feature 'say';
+
+my $n = 0;
+for ( my ($k, %d) = 1; keys %d != 5; $k++ ) {
+ # next square number
+ $n += 2*$k - 1;
+
+ # %d distinct digits in $n
+ %d = map { $_ => $_ } split '', $n;
+}
+say $n;
diff --git a/challenge-009/maxim-nechaev/perl5/ch-3.pl b/challenge-009/maxim-nechaev/perl5/ch-3.pl
new file mode 100755
index 0000000000..001c32f581
--- /dev/null
+++ b/challenge-009/maxim-nechaev/perl5/ch-3.pl
@@ -0,0 +1,33 @@
+#!/usr/bin/perl -w
+use strict;
+use utf8;
+use Encode;
+use Email::Sender::Transport::SMTP;
+use Email::Sender::Simple qw/sendmail/;
+use MIME::Entity;
+
+my $SparkpostAPIKey = '3d349e3c7f7c309a6b2be80bca6f4f9e0c7d1621';
+my $toEmail = 'maxim@nechaev.net';
+my $fromEmail = 'sparkpost@nechaev.net';
+
+# docs https://developers.sparkpost.com/api/smtp/
+my $sparkpost = Email::Sender::Transport::SMTP->new({
+ host => 'smtp.sparkpostmail.com',
+ port => 587,
+ ssl => 'starttls',
+ sasl_username => 'SMTP_Injection',
+ sasl_password => $SparkpostAPIKey,
+});
+
+my $email = MIME::Entity->build(
+ Type => 'text/plain',
+ Encoding => 'quoted-printable',
+ Charset => 'UTF-8',
+ To => encode('MIME-Header', 'Perl Hacker') . " <$toEmail>",
+ From => encode('MIME-Header', 'Sparkpost' ) . " <$fromEmail>",
+ Subject => encode('MIME-Header', 'Email through Sparkpost'),
+ Data => 'This email from perl script using Sparkpost API',
+ #'X-MSYS-API' => '{"options": { "sandbox" : true }}',
+);
+
+sendmail( $email, { transport => $sparkpost } );
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 6f8bd5c444..893563509a 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,36 +1,58 @@
{
- "xAxis" : {
- "type" : "category"
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "legend" : {
+ "enabled" : 0
},
"plotOptions" : {
"series" : {
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
+ "format" : "{point.y}",
+ "enabled" : 1
},
"borderWidth" : 0
}
},
+ "xAxis" : {
+ "type" : "category"
+ },
+ "tooltip" : {
+ "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 7] Last updated at 2019-05-24 11:26:10 GMT"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge - 009"
+ },
"drilldown" : {
"series" : [
{
- "id" : "Dave Jacoby",
"data" : [
[
"Perl 5",
2
]
],
+ "id" : "Dave Jacoby",
"name" : "Dave Jacoby"
},
{
- "id" : "Gustavo Chaves",
"data" : [
[
"Perl 5",
2
]
],
+ "id" : "Gustavo Chaves",
"name" : "Gustavo Chaves"
},
{
@@ -44,8 +66,18 @@
2
]
],
- "name" : "Joelle Maslak",
- "id" : "Joelle Maslak"
+ "id" : "Joelle Maslak",
+ "name" : "Joelle Maslak"
+ },
+ {
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ]
+ ],
+ "name" : "Maxim Nechaev",
+ "id" : "Maxim Nechaev"
},
{
"data" : [
@@ -58,14 +90,14 @@
"id" : "Simon Proctor"
},
{
- "name" : "Steven Wilson",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Steven Wilson"
+ "id" : "Steven Wilson",
+ "name" : "Steven Wilson"
},
{
"id" : "Yozen Hernandez",
@@ -79,64 +111,47 @@
}
]
},
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 6] Last updated at 2019-05-24 11:14:29 GMT"
- },
"series" : [
{
- "colorByPoint" : 1,
- "name" : "Champions",
"data" : [
{
+ "y" : 2,
"drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 2
+ "name" : "Dave Jacoby"
},
{
- "y" : 2,
+ "name" : "Gustavo Chaves",
"drilldown" : "Gustavo Chaves",
- "name" : "Gustavo Chaves"
+ "y" : 2
},
{
- "drilldown" : "Joelle Maslak",
"name" : "Joelle Maslak",
+ "drilldown" : "Joelle Maslak",
"y" : 4
},
{
- "y" : 1,
+ "drilldown" : "Maxim Nechaev",
+ "y" : 2,
+ "name" : "Maxim Nechaev"
+ },
+ {
"name" : "Simon Proctor",
+ "y" : 1,
"drilldown" : "Simon Proctor"
},
{
- "drilldown" : "Steven Wilson",
"name" : "Steven Wilson",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Steven Wilson"
},
{
"y" : 2,
"drilldown" : "Yozen Hernandez",
"name" : "Yozen Hernandez"
}
- ]
- }
- ],
- "tooltip" : {
- "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 009"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ ],
+ "name" : "Champions",
+ "colorByPoint" : 1
}
- }
+ ]
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index d334a1ac65..60952de28d 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,4 +1,86 @@
{
+ "legend" : {
+ "enabled" : "false"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
+ }
+ },
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "001",
+ "name" : "#001 [P5=76 P6=37]",
+ "y" : 113
+ },
+ {
+ "drilldown" : "002",
+ "name" : "#002 [P5=63 P6=32]",
+ "y" : 95
+ },
+ {
+ "y" : 58,
+ "name" : "#003 [P5=32 P6=26]",
+ "drilldown" : "003"
+ },
+ {
+ "y" : 75,
+ "name" : "#004 [P5=46 P6=29]",
+ "drilldown" : "004"
+ },
+ {
+ "y" : 55,
+ "name" : "#005 [P5=33 P6=22]",
+ "drilldown" : "005"
+ },
+ {
+ "y" : 41,
+ "name" : "#006 [P5=27 P6=14]",
+ "drilldown" : "006"
+ },
+ {
+ "drilldown" : "007",
+ "y" : 44,
+ "name" : "#007 [P5=24 P6=20]"
+ },
+ {
+ "name" : "#008 [P5=34 P6=20]",
+ "y" : 54,
+ "drilldown" : "008"
+ },
+ {
+ "drilldown" : "009",
+ "y" : 15,
+ "name" : "#009 [P5=12 P6=3]"
+ }
+ ],
+ "name" : "Perl Weekly Challenge Languages",
+ "colorByPoint" : "true"
+ }
+ ],
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-24 11:26:21 GMT"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
@@ -7,6 +89,8 @@
"drilldown" : {
"series" : [
{
+ "id" : "001",
+ "name" : "001",
"data" : [
[
"Perl 5",
@@ -16,9 +100,7 @@
"Perl 6",
37
]
- ],
- "id" : "001",
- "name" : "001"
+ ]
},
{
"name" : "002",
@@ -35,6 +117,8 @@
]
},
{
+ "name" : "003",
+ "id" : "003",
"data" : [
[
"Perl 5",
@@ -44,11 +128,11 @@
"Perl 6",
26
]
- ],
- "id" : "003",
- "name" : "003"
+ ]
},
{
+ "id" : "004",
+ "name" : "004",
"data" : [
[
"Perl 5",
@@ -58,9 +142,7 @@
"Perl 6",
29
]
- ],
- "id" : "004",
- "name" : "004"
+ ]
},
{
"data" : [
@@ -105,6 +187,8 @@
"name" : "007"
},
{
+ "id" : "008",
+ "name" : "008",
"data" : [
[
"Perl 5",
@@ -114,106 +198,22 @@
"Perl 6",
20
]
- ],
- "name" : "008",
- "id" : "008"
+ ]
},
{
- "id" : "009",
- "name" : "009",
"data" : [
[
"Perl 5",
- 10
+ 12
],
[
"Perl 6",
3
]
- ]
+ ],
+ "id" : "009",
+ "name" : "009"
}
]
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
- }
- },
- "xAxis" : {
- "type" : "category"
- },
- "chart" : {
- "type" : "column"
- },
- "tooltip" : {
- "followPointer" : "true",
- "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
- },
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-24 11:15:44 GMT"
- },
- "legend" : {
- "enabled" : "false"
- },
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
- "series" : [
- {
- "data" : [
- {
- "y" : 113,
- "name" : "#001 [P5=76 P6=37]",
- "drilldown" : "001"
- },
- {
- "drilldown" : "002",
- "y" : 95,
- "name" : "#002 [P5=63 P6=32]"
- },
- {
- "name" : "#003 [P5=32 P6=26]",
- "y" : 58,
- "drilldown" : "003"
- },
- {
- "drilldown" : "004",
- "y" : 75,
- "name" : "#004 [P5=46 P6=29]"
- },
- {
- "name" : "#005 [P5=33 P6=22]",
- "y" : 55,
- "drilldown" : "005"
- },
- {
- "name" : "#006 [P5=27 P6=14]",
- "y" : 41,
- "drilldown" : "006"
- },
- {
- "y" : 44,
- "name" : "#007 [P5=24 P6=20]",
- "drilldown" : "007"
- },
- {
- "y" : 54,
- "name" : "#008 [P5=34 P6=20]",
- "drilldown" : "008"
- },
- {
- "name" : "#009 [P5=10 P6=3]",
- "y" : 13,
- "drilldown" : "009"
- }
- ],
- "colorByPoint" : "true",
- "name" : "Perl Weekly Challenge Languages"
- }
- ]
+ }
}
diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json
index e5db4f0809..db3e33c6fe 100644
--- a/stats/pwc-leaders.json
+++ b/stats/pwc-leaders.json
@@ -1,114 +1,365 @@
{
- "title" : {
- "text" : "Perl Weekly Challenge Leaders (TOP 50)"
- },
- "tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
- "followPointer" : "true"
+ "legend" : {
+ "enabled" : "false"
},
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Score"
}
},
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge Leaders",
+ "data" : [
+ {
+ "drilldown" : "Joelle Maslak",
+ "y" : 80,
+ "name" : "#1: Joelle Maslak"
+ },
+ {
+ "name" : "#2: Laurent Rosenfeld",
+ "y" : 80,
+ "drilldown" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "#3: Jaldhar H. Vyas",
+ "y" : 64,
+ "drilldown" : "Jaldhar H. Vyas"
+ },
+ {
+ "drilldown" : "Ruben Westerberg",
+ "y" : 56,
+ "name" : "#4: Ruben Westerberg"
+ },
+ {
+ "name" : "#5: Simon Proctor",
+ "y" : 50,
+ "drilldown" : "Simon Proctor"
+ },
+ {
+ "drilldown" : "Adam Russell",
+ "y" : 48,
+ "name" : "#6: Adam Russell"
+ },
+ {
+ "drilldown" : "Dr James A. Smith",
+ "y" : 44,
+ "name" : "#7: Dr James A. Smith"
+ },
+ {
+ "drilldown" : "Kian-Meng Ang",
+ "y" : 44,
+ "name" : "#8: Kian-Meng Ang"
+ },
+ {
+ "y" : 42,
+ "name" : "#9: Arne Sommer",
+ "drilldown" : "Arne Sommer"
+ },
+ {
+ "drilldown" : "Jo Christian Oterhals",
+ "name" : "#10: Jo Christian Oterhals",
+ "y" : 42
+ },
+ {
+ "y" : 38,
+ "name" : "#11: Gustavo Chaves",
+ "drilldown" : "Gustavo Chaves"
+ },
+ {
+ "drilldown" : "Athanasius",
+ "name" : "#12: Athanasius",
+ "y" : 32
+ },
+ {
+ "y" : 32,
+ "name" : "#13: Nick Logan",
+ "drilldown" : "Nick Logan"
+ },
+ {
+ "drilldown" : "Andrezgz",
+ "name" : "#14: Andrezgz",
+ "y" : 30
+ },
+ {
+ "y" : 30,
+ "name" : "#15: Dave Jacoby",
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "drilldown" : "Francis Whittle",
+ "y" : 28,
+ "name" : "#16: Francis Whittle"
+ },
+ {
+ "name" : "#17: Lars Balker",
+ "y" : 28,
+ "drilldown" : "Lars Balker"
+ },
+ {
+ "drilldown" : "Mark Senn",
+ "name" : "#18: Mark Senn",
+ "y" : 26
+ },
+ {
+ "drilldown" : "Daniel Mantovani",
+ "name" : "#19: Daniel Mantovani",
+ "y" : 22
+ },
+ {
+ "drilldown" : "Doug Schrag",
+ "y" : 20,
+ "name" : "#20: Doug Schrag"
+ },
+ {
+ "name" : "#21: Duncan C. White",
+ "y" : 20,
+ "drilldown" : "Duncan C. White"
+ },
+ {
+ "drilldown" : "Robert Gratza",
+ "name" : "#22: Robert Gratza",
+ "y" : 16
+ },
+ {
+ "name" : "#23: E. Choroba",
+ "y" : 14,
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "name" : "#24: John Barrett",
+ "y" : 14,
+ "drilldown" : "John Barrett"
+ },
+ {
+ "drilldown" : "Ozzy",
+ "name" : "#25: Ozzy",
+ "y" : 14
+ },
+ {
+ "drilldown" : "Alicia Bielsa",
+ "y" : 12,
+ "name" : "#26: Alicia Bielsa"
+ },
+ {
+ "name" : "#27: Maxim Kolodyazhny",
+ "y" : 12,
+ "drilldown" : "Maxim Kolodyazhny"
+ },
+ {
+ "y" : 12,
+ "name" : "#28: Maxim Nechaev",
+ "drilldown" : "Maxim Nechaev"
+ },
+ {
+ "drilldown" : "Philippe Bruhat",
+ "name" : "#29: Philippe Bruhat",
+ "y" : 12
+ },
+ {
+ "name" : "#30: Sergio Iglesias",
+ "y" : 12,
+ "drilldown" : "Sergio Iglesias"
+ },
+ {
+ "y" : 12,
+ "name" : "#31: Steven Wilson",
+ "drilldown" : "Steven Wilson"
+ },
+ {
+ "drilldown" : "Arpad Toth",
+ "name" : "#32: Arpad Toth",
+ "y" : 10
+ },
+ {
+ "y" : 10,
+ "name" : "#33: Guillermo Ramos",
+ "drilldown" : "Guillermo Ramos"
+ },
+ {
+ "name" : "#34: Khalid",
+ "y" : 10,
+ "drilldown" : "Khalid"
+ },
+ {
+ "y" : 10,
+ "name" : "#35: Steve Rogerson",
+ "drilldown" : "Steve Rogerson"
+ },
+ {
+ "name" : "#36: Veesh Goldman",
+ "y" : 10,
+ "drilldown" : "Veesh Goldman"
+ },
+ {
+ "drilldown" : "Yozen Hernandez",
+ "name" : "#37: Yozen Hernandez",
+ "y" : 10
+ },
+ {
+ "drilldown" : "Alex Daniel",
+ "name" : "#38: Alex Daniel",
+ "y" : 8
+ },
+ {
+ "drilldown" : "Bob Kleemann",
+ "y" : 8,
+ "name" : "#39: Bob Kleemann"
+ },
+ {
+ "drilldown" : "Chenyf",
+ "name" : "#40: Chenyf",
+ "y" : 8
+ },
+ {
+ "drilldown" : "David Kayal",
+ "y" : 8,
+ "name" : "#41: David Kayal"
+ },
+ {
+ "name" : "#42: Finley",
+ "y" : 8,
+ "drilldown" : "Finley"
+ },
+ {
+ "y" : 8,
+ "name" : "#43: Jaime Corchado",
+ "drilldown" : "Jaime Corchado"
+ },
+ {
+ "name" : "#44: Luis F. Uceta",
+ "y" : 8,
+ "drilldown" : "Luis F. Uceta"
+ },
+ {
+ "y" : 8,
+ "name" : "#45: Matt Latusek",
+ "drilldown" : "Matt Latusek"
+ },
+ {
+ "drilldown" : "Neil Bowers",
+ "name" : "#46: Neil Bowers",
+ "y" : 8
+ },
+ {
+ "y" : 8,
+ "name" : "#47: Simon Reinhardt",
+ "drilldown" : "Simon Reinhardt"
+ },
+ {
+ "name" : "#48: Tim Smith",
+ "y" : 8,
+ "drilldown" : "Tim Smith"
+ },
+ {
+ "name" : "#49: Ailbhe Tweedie",
+ "y" : 6,
+ "drilldown" : "Ailbhe Tweedie"
+ },
+ {
+ "drilldown" : "Dave Cross",
+ "y" : 6,
+ "name" : "#50: Dave Cross"
+ }
+ ],
+ "colorByPoint" : "true"
+ }
+ ],
"xAxis" : {
"type" : "category"
},
- "yAxis" : {
- "title" : {
- "text" : "Total Score"
- }
+ "title" : {
+ "text" : "Perl Weekly Challenge Leaders (TOP 50)"
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-24 11:26:18 GMT"
},
"drilldown" : {
"series" : [
{
- "name" : "Joelle Maslak",
"data" : [
[
+ "Blog",
+ 2
+ ],
+ [
"Perl 5",
19
],
[
"Perl 6",
19
- ],
- [
- "Blog",
- 2
]
],
+ "name" : "Joelle Maslak",
"id" : "Joelle Maslak"
},
{
+ "id" : "Laurent Rosenfeld",
"data" : [
[
- "Blog",
- 9
+ "Perl 5",
+ 16
],
[
"Perl 6",
15
],
[
- "Perl 5",
- 16
+ "Blog",
+ 9
]
],
- "id" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld"
},
{
"id" : "Jaldhar H. Vyas",
+ "name" : "Jaldhar H. Vyas",
"data" : [
[
- "Perl 5",
+ "Perl 6",
16
],
[
- "Perl 6",
+ "Perl 5",
16
]
- ],
- "name" : "Jaldhar H. Vyas"
+ ]
},
{
- "id" : "Ruben Westerberg",
+ "name" : "Ruben Westerberg",
"data" : [
[
- "Perl 6",
+ "Perl 5",
14
],
[
- "Perl 5",
+ "Perl 6",
14
]
],
- "name" : "Ruben Westerberg"
+ "id" : "Ruben Westerberg"
},
{
- "id" : "Simon Proctor",
"data" : [
[
- "Perl 6",
- 15
- ],
- [
"Blog",
6
],
[
"Perl 5",
4
+ ],
+ [
+ "Perl 6",
+ 15
]
],
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "id" : "Simon Proctor"
},
{
+ "id" : "Adam Russell",
"data" : [
[
"Perl 5",
@@ -119,10 +370,10 @@
8
]
],
- "id" : "Adam Russell",
"name" : "Adam Russell"
},
{
+ "id" : "Dr James A. Smith",
"data" : [
[
"Perl 5",
@@ -133,26 +384,24 @@
10
]
],
- "id" : "Dr James A. Smith",
"name" : "Dr James A. Smith"
},
{
+ "id" : "Kian-Meng Ang",
+ "name" : "Kian-Meng Ang",
"data" : [
[
- "Blog",
- 8
- ],
- [
"Perl 5",
14
+ ],
+ [
+ "Blog",
+ 8
]
- ],
- "id" : "Kian-Meng Ang",
- "name" : "Kian-Meng Ang"
+ ]
},
{
"name" : "Arne Sommer",
- "id" : "Arne Sommer",
"data" : [
[
"Perl 6",
@@ -162,23 +411,24 @@
"Blog",
7
]
- ]
+ ],
+ "id" : "Arne Sommer"
},
{
- "name" : "Jo Christian Oterhals",
"id" : "Jo Christian Oterhals",
+ "name" : "Jo Christian Oterhals",
"data" : [
[
- "Blog",
- 5
- ],
- [
"Perl 6",
10
],
[
"Perl 5",
6
+ ],
+ [
+ "Blog",
+ 5
]
]
},
@@ -186,25 +436,25 @@
"id" : "Gustavo Chaves",
"data" : [
[
- "Perl 5",
- 15
- ],
- [
"Blog",
4
+ ],
+ [
+ "Perl 5",
+ 15
]
],
"name" : "Gustavo Chaves"
},
{
- "name" : "Athanasius",
- "id" : "Athanasius",
"data" : [
[
"Perl 5",
16
]
- ]
+ ],
+ "name" : "Athanasius",
+ "id" : "Athanasius"
},
{
"id" : "Nick Logan",
@@ -227,26 +477,25 @@
15
]
],
- "id" : "Andrezgz",
- "name" : "Andrezgz"
+ "name" : "Andrezgz",
+ "id" : "Andrezgz"
},
{
- "name" : "Dave Jacoby",
"id" : "Dave Jacoby",
"data" : [
[
- "Blog",
- 8
- ],
- [
"Perl 5",
7
+ ],
+ [
+ "Blog",
+ 8
]
- ]
+ ],
+ "name" : "Dave Jacoby"
},
{
"name" : "Francis Whittle",
- "id" : "Francis Whittle",
"data" : [
[
"Perl 6",
@@ -256,11 +505,10 @@
"Blog",
4
]
- ]
+ ],
+ "id" : "Francis Whittle"
},
{
- "name" : "Lars Balker",
- "id" : "Lars Balker",
"data" : [
[
"Perl 5",
@@ -270,10 +518,12 @@
"Perl 6",
4
]
- ]
+ ],
+ "name" : "Lars Balker",
+ "id" : "Lars Balker"
},
{
- "name" : "Mark Senn",
+ "id" : "Mark Senn",
"data" : [
[
"Blog",
@@ -284,75 +534,75 @@
10
]
],
- "id" : "Mark Senn"
+ "name" : "Mark Senn"
},
{
- "name" : "Daniel Mantovani",
- "id" : "Daniel Mantovani",
"data" : [
[
"Perl 5",
11
]
- ]
+ ],
+ "name" : "Daniel Mantovani",
+ "id" : "Daniel Mantovani"
},
{
+ "id" : "Doug Schrag",
+ "name" : "Doug Schrag",
"data" : [
[