aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-05-04 16:19:14 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-05-04 16:19:14 +0100
commitf042cae50ee9684c2403c56d6ad2aafcd9778e3f (patch)
tree7cc5b04b82809f6333f2df7b8f25591180086bfa
parent4d9c788032a73de3199cb67bb27ba65c8df00deb (diff)
downloadperlweeklychallenge-club-f042cae50ee9684c2403c56d6ad2aafcd9778e3f.tar.gz
perlweeklychallenge-club-f042cae50ee9684c2403c56d6ad2aafcd9778e3f.tar.bz2
perlweeklychallenge-club-f042cae50ee9684c2403c56d6ad2aafcd9778e3f.zip
- Added solution by Guillermo Ramos.
-rw-r--r--challenge-006/guillermo-ramos/perl5/ch-1.pl34
-rw-r--r--stats/pwc-current.json149
-rw-r--r--stats/pwc-language-breakdown.json94
-rw-r--r--stats/pwc-leaders.json870
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-31-60.json116
-rw-r--r--stats/pwc-summary-61-90.json36
-rw-r--r--stats/pwc-summary.json38
8 files changed, 711 insertions, 662 deletions
diff --git a/challenge-006/guillermo-ramos/perl5/ch-1.pl b/challenge-006/guillermo-ramos/perl5/ch-1.pl
new file mode 100644
index 0000000000..5ec92037c5
--- /dev/null
+++ b/challenge-006/guillermo-ramos/perl5/ch-1.pl
@@ -0,0 +1,34 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+sub compact {
+ my @ns = split(/,/, shift);
+ my $from = my $to = shift @ns; # The first interval is the first number
+ my @intervals;
+
+ # Store the current interval ($from, $to) and advance to the next one
+ my $save = sub {
+ push(@intervals, $from == $to ? $from : "$from-$to");
+ $from = $to = shift;
+ };
+
+ # Iterate over the numbers, expanding the last interval or starting a new one
+ foreach my $n (@ns) {
+ if ($to == $n-1) {
+ $to = $n;
+ } else {
+ &$save($n);
+ }
+ }
+
+ # Store the last interval (except for empty input)
+ &$save if defined $to;
+
+ return join(",", @intervals);
+}
+
+foreach (@ARGV) {
+ print compact($_), "\n";
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 0ec7029b46..c3a5d9b22e 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,28 +1,17 @@
{
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "chart" : {
- "type" : "column"
- },
"series" : [
{
+ "colorByPoint" : 1,
"data" : [
{
- "y" : 1,
+ "name" : "Alicia Bielsa",
"drilldown" : "Alicia Bielsa",
- "name" : "Alicia Bielsa"
+ "y" : 1
},
{
- "y" : 2,
+ "name" : "Andrezgz",
"drilldown" : "Andrezgz",
- "name" : "Andrezgz"
+ "y" : 2
},
{
"y" : 1,
@@ -30,19 +19,24 @@
"name" : "Arpad Toth"
},
{
- "name" : "Athanasius",
"drilldown" : "Athanasius",
+ "name" : "Athanasius",
"y" : 2
},
{
- "y" : 2,
+ "drilldown" : "E. Choroba",
"name" : "E. Choroba",
- "drilldown" : "E. Choroba"
+ "y" : 2
+ },
+ {
+ "y" : 1,
+ "name" : "Guillermo Ramos",
+ "drilldown" : "Guillermo Ramos"
},
{
- "y" : 2,
+ "name" : "Gustavo Chaves",
"drilldown" : "Gustavo Chaves",
- "name" : "Gustavo Chaves"
+ "y" : 2
},
{
"drilldown" : "Joelle Maslak",
@@ -50,14 +44,14 @@
"y" : 4
},
{
- "y" : 2,
+ "drilldown" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld"
+ "y" : 2
},
{
- "y" : 2,
"name" : "Maxim Kolodyazhny",
- "drilldown" : "Maxim Kolodyazhny"
+ "drilldown" : "Maxim Kolodyazhny",
+ "y" : 2
},
{
"drilldown" : "Simon Proctor",
@@ -65,98 +59,91 @@
"y" : 1
},
{
- "y" : 2,
"name" : "Tim Smith",
- "drilldown" : "Tim Smith"
+ "drilldown" : "Tim Smith",
+ "y" : 2
}
],
- "name" : "Champions",
- "colorByPoint" : 1
+ "name" : "Champions"
}
],
- "tooltip" : {
- "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1,
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
- },
- "xAxis" : {
- "type" : "category"
- },
"legend" : {
"enabled" : 0
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 006"
- },
"drilldown" : {
"series" : [
{
+ "name" : "Alicia Bielsa",
"data" : [
[
"Perl 5",
1
]
],
- "name" : "Alicia Bielsa",
"id" : "Alicia Bielsa"
},
{
+ "id" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Andrezgz",
- "id" : "Andrezgz"
+ "name" : "Andrezgz"
},
{
+ "name" : "Arpad Toth",
+ "id" : "Arpad Toth",
"data" : [
[
"Perl 5",
1
]
- ],
- "name" : "Arpad Toth",
- "id" : "Arpad Toth"
+ ]
},
{
- "id" : "Athanasius",
+ "name" : "Athanasius",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Athanasius"
+ "id" : "Athanasius"
},
{
+ "name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "E. Choroba",
- "id" : "E. Choroba"
+ ]
+ },
+ {
+ "name" : "Guillermo Ramos",
+ "id" : "Guillermo Ramos",
+ "data" : [
+ [
+ "Perl 5",
+ 1
+ ]
+ ]
},
{
+ "name" : "Gustavo Chaves",
"id" : "Gustavo Chaves",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "Gustavo Chaves"
+ ]
},
{
- "id" : "Joelle Maslak",
+ "name" : "Joelle Maslak",
"data" : [
[
"Perl 5",
@@ -167,10 +154,9 @@
2
]
],
- "name" : "Joelle Maslak"
+ "id" : "Joelle Maslak"
},
{
- "id" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
"data" : [
[
@@ -181,27 +167,28 @@
"Perl 6",
1
]
- ]
+ ],
+ "id" : "Laurent Rosenfeld"
},
{
- "id" : "Maxim Kolodyazhny",
+ "name" : "Maxim Kolodyazhny",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Maxim Kolodyazhny"
+ "id" : "Maxim Kolodyazhny"
},
{
- "id" : "Simon Proctor",
+ "name" : "Simon Proctor",
"data" : [
[
"Perl 6",
1
]
],
- "name" : "Simon Proctor"
+ "id" : "Simon Proctor"
},
{
"name" : "Tim Smith",
@@ -215,7 +202,35 @@
}
]
},
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
+ "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge - 006"
+ },
"subtitle" : {
- "text" : "[Champions: 11] Last updated at 2019-05-03 16:10:31 GMT"
+ "text" : "[Champions: 12] Last updated at 2019-05-04 15:18:26 GMT"
+ },
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index bdadc24622..707b89b757 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,29 +1,45 @@
{
- "legend" : {
- "enabled" : "false"
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-04 15:18:48 GMT"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
},
"series" : [
{
+ "name" : "Perl Weekly Challenge Languages",
"data" : [
{
- "y" : 113,
+ "drilldown" : "001",
"name" : "#001 [P5=76 P6=37]",
- "drilldown" : "001"
+ "y" : 113
},
{
+ "drilldown" : "002",
"y" : 95,
- "name" : "#002 [P5=63 P6=32]",
- "drilldown" : "002"
+ "name" : "#002 [P5=63 P6=32]"
},
{
+ "drilldown" : "003",
"name" : "#003 [P5=32 P6=26]",
- "y" : 58,
- "drilldown" : "003"
+ "y" : 58
},
{
- "y" : 75,
+ "drilldown" : "004",
"name" : "#004 [P5=46 P6=29]",
- "drilldown" : "004"
+ "y" : 75
},
{
"y" : 53,
@@ -31,31 +47,25 @@
"drilldown" : "005"
},
{
- "drilldown" : "006",
- "y" : 21,
- "name" : "#006 [P5=15 P6=6]"
+ "name" : "#006 [P5=16 P6=6]",
+ "y" : 22,
+ "drilldown" : "006"
}
],
- "name" : "Perl Weekly Challenge Languages",
"colorByPoint" : "true"
}
],
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
+ "xAxis" : {
+ "type" : "category"
},
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-03 16:11:04 GMT"
+ "legend" : {
+ "enabled" : "false"
},
"drilldown" : {
"series" : [
{
- "id" : "001",
"name" : "001",
+ "id" : "001",
"data" : [
[
"Perl 5",
@@ -68,6 +78,7 @@
]
},
{
+ "name" : "002",
"data" : [
[
"Perl 5",
@@ -78,11 +89,9 @@
32
]
],
- "name" : "002",
"id" : "002"
},
{
- "id" : "003",
"name" : "003",
"data" : [
[
@@ -93,9 +102,11 @@
"Perl 6",
26
]
- ]
+ ],
+ "id" : "003"
},
{
+ "name" : "004",
"data" : [
[
"Perl 5",
@@ -106,8 +117,7 @@
29
]
],
- "id" : "004",
- "name" : "004"
+ "id" : "004"
},
{
"data" : [
@@ -120,14 +130,14 @@
22
]
],
- "name" : "005",
- "id" : "005"
+ "id" : "005",
+ "name" : "005"
},
{
"data" : [
[
"Perl 5",
- 15
+ 16
],
[
"Perl 6",
@@ -139,24 +149,14 @@
}
]
},
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
},
"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>"
- },
- "xAxis" : {
- "type" : "category"
- },
- "chart" : {
- "type" : "column"
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>"
}
}
diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json
index 6620cb0c46..6f8de5756b 100644
--- a/stats/pwc-leaders.json
+++ b/stats/pwc-leaders.json
@@ -1,132 +1,391 @@
{
- "xAxis" : {
- "type" : "category"
+ "title" : {
+ "text" : "Perl Weekly Challenge Leaders (TOP 50)"
+ },
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 54,
+ "name" : "#1: Laurent Rosenfeld"
+ },
+ {
+ "name" : "#2: Joelle Maslak",
+ "y" : 50,
+ "drilldown" : "Joelle Maslak"
+ },
+ {
+ "drilldown" : "Jaldhar H. Vyas",
+ "y" : 40,
+ "name" : "#3: Jaldhar H. Vyas"
+ },
+ {
+ "name" : "#4: Simon Proctor",
+ "drilldown" : "Simon Proctor",
+ "y" : 38
+ },
+ {
+ "name" : "#5: Dr James A. Smith",
+ "y" : 36,
+ "drilldown" : "Dr James A. Smith"
+ },
+ {
+ "y" : 36,
+ "drilldown" : "Jo Christian Oterhals",
+ "name" : "#6: Jo Christian Oterhals"
+ },
+ {
+ "name" : "#7: Nick Logan",
+ "drilldown" : "Nick Logan",
+ "y" : 32
+ },
+ {
+ "name" : "#8: Ruben Westerberg",
+ "y" : 32,
+ "drilldown" : "Ruben Westerberg"
+ },
+ {
+ "y" : 30,
+ "drilldown" : "Adam Russell",
+ "name" : "#9: Adam Russell"
+ },
+ {
+ "drilldown" : "Lars Balker",
+ "y" : 28,
+ "name" : "#10: Lars Balker"
+ },
+ {
+ "y" : 26,
+ "drilldown" : "Gustavo Chaves",
+ "name" : "#11: Gustavo Chaves"
+ },
+ {
+ "name" : "#12: Mark Senn",
+ "drilldown" : "Mark Senn",
+ "y" : 26
+ },
+ {
+ "name" : "#13: Andrezgz",
+ "y" : 24,
+ "drilldown" : "Andrezgz"
+ },
+ {
+ "name" : "#14: Arne Sommer",
+ "drilldown" : "Arne Sommer",
+ "y" : 24
+ },
+ {
+ "name" : "#15: Athanasius",
+ "y" : 24,
+ "drilldown" : "Athanasius"
+ },
+ {
+ "y" : 24,
+ "drilldown" : "Kian-Meng Ang",
+ "name" : "#16: Kian-Meng Ang"
+ },
+ {
+ "name" : "#17: Doug Schrag",
+ "drilldown" : "Doug Schrag",
+ "y" : 20
+ },
+ {
+ "drilldown" : "Francis Whittle",
+ "y" : 18,
+ "name" : "#18: Francis Whittle"
+ },
+ {
+ "y" : 16,
+ "drilldown" : "Duncan C. White",
+ "name" : "#19: Duncan C. White"
+ },
+ {
+ "y" : 16,
+ "drilldown" : "Robert Gratza",
+ "name" : "#20: Robert Gratza"
+ },
+ {
+ "name" : "#21: John Barrett",
+ "drilldown" : "John Barrett",
+ "y" : 14
+ },
+ {
+ "drilldown" : "Daniel Mantovani",
+ "y" : 12,
+ "name" : "#22: Daniel Mantovani"
+ },
+ {
+ "drilldown" : "E. Choroba",
+ "y" : 12,
+ "name" : "#23: E. Choroba"
+ },
+ {
+ "name" : "#24: Maxim Kolodyazhny",
+ "y" : 12,
+ "drilldown" : "Maxim Kolodyazhny"
+ },
+ {
+ "drilldown" : "Philippe Bruhat",
+ "y" : 12,
+ "name" : "#25: Philippe Bruhat"
+ },
+ {
+ "drilldown" : "Sergio Iglesias",
+ "y" : 12,
+ "name" : "#26: Sergio Iglesias"
+ },
+ {
+ "drilldown" : "Arpad Toth",
+ "y" : 10,
+ "name" : "#27: Arpad Toth"
+ },
+ {
+ "y" : 10,
+ "drilldown" : "Khalid",
+ "name" : "#28: Khalid"
+ },
+ {
+ "name" : "#29: Steve Rogerson",
+ "y" : 10,
+ "drilldown" : "Steve Rogerson"
+ },
+ {
+ "name" : "#30: Veesh Goldman",
+ "y" : 10,
+ "drilldown" : "Veesh Goldman"
+ },
+ {
+ "name" : "#31: Alex Daniel",
+ "y" : 8,
+ "drilldown" : "Alex Daniel"
+ },
+ {
+ "name" : "#32: Bob Kleemann",
+ "drilldown" : "Bob Kleemann",
+ "y" : 8
+ },
+ {
+ "name" : "#33: Chenyf",
+ "y" : 8,
+ "drilldown" : "Chenyf"
+ },
+ {
+ "drilldown" : "David Kayal",
+ "y" : 8,
+ "name" : "#34: David Kayal"
+ },
+ {
+ "name" : "#35: Jaime Corchado",
+ "drilldown" : "Jaime Corchado",
+ "y" : 8
+ },
+ {
+ "name" : "#36: Matt Latusek",
+ "y" : 8,
+ "drilldown" : "Matt Latusek"
+ },
+ {
+ "name" : "#37: Ozzy",
+ "drilldown" : "Ozzy",
+ "y" : 8
+ },
+ {
+ "y" : 8,
+ "drilldown" : "Simon Reinhardt",
+ "name" : "#38: Simon Reinhardt"
+ },
+ {
+ "name" : "#39: Steven Wilson",
+ "drilldown" : "Steven Wilson",
+ "y" : 8
+ },
+ {
+ "name" : "#40: Tim Smith",
+ "y" : 8,
+ "drilldown" : "Tim Smith"
+ },
+ {
+ "name" : "#41: Ailbhe Tweedie",
+ "y" : 6,
+ "drilldown" : "Ailbhe Tweedie"
+ },
+ {
+ "name" : "#42: Alicia Bielsa",
+ "y" : 6,
+ "drilldown" : "Alicia Bielsa"
+ },
+ {
+ "drilldown" : "Dave Cross",
+ "y" : 6,
+ "name" : "#43: Dave Cross"
+ },
+ {
+ "name" : "#44: Dave Jacoby",
+ "y" : 6,
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "name" : "#45: Freddie B",
+ "y" : 6,
+ "drilldown" : "Freddie B"
+ },
+ {
+ "drilldown" : "Jeremy Carman",
+ "y" : 6,
+ "name" : "#46: Jeremy Carman"
+ },
+ {
+ "name" : "#47: Kivanc Yazan",
+ "drilldown" : "Kivanc Yazan",
+ "y" : 6
+ },
+ {
+ "y" : 6,
+ "drilldown" : "Neil Bowers",
+ "name" : "#48: Neil Bowers"
+ },
+ {
+ "name" : "#49: Pete Houston",
+ "y" : 6,
+ "drilldown" : "Pete Houston"
+ },
+ {
+ "drilldown" : "Sean Meininger",
+ "y" : 6,
+ "name" : "#50: Sean Meininger"
+ }
+ ],
+ "name" : "Perl Weekly Challenge Leaders",
+ "colorByPoint" : "true"
+ }
+ ],
+ "chart" : {
+ "type" : "column"
},
"tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
"pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : "true",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
+ "followPointer" : "true"
},
- "yAxis" : {
- "title" : {
- "text" : "Total Score"
- }
+ "xAxis" : {
+ "type" : "category"
},
"drilldown" : {
"series" : [
{
"data" : [
[
+ "Perl 5",
+ 11
+ ],
+ [
"Perl 6",
10
],
[
"Blog",
6
- ],
- [
- "Perl 5",
- 11
]
],
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld"
},
{
- "id" : "Joelle Maslak",
- "name" : "Joelle Maslak",
"data" : [
[
- "Perl 5",
- 12
- ],
- [
"Blog",
1
],
[
+ "Perl 5",
+ 12
+ ],
+ [
"Perl 6",
12
]
- ]
+ ],
+ "id" : "Joelle Maslak",
+ "name" : "Joelle Maslak"
},
{
+ "name" : "Jaldhar H. Vyas",
"data" : [
[
- "Perl 6",
+ "Perl 5",
10
],
[
- "Perl 5",
+ "Perl 6",
10
]
],
- "id" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas"
+ "id" : "Jaldhar H. Vyas"
},
{
+ "name" : "Simon Proctor",
"data" : [
[
+ "Perl 5",
+ 4
+ ],
+ [
"Perl 6",
11
],
[
"Blog",
4
- ],
- [
- "Perl 5",
- 4
]
],
- "id" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "id" : "Simon Proctor"
},
{
"id" : "Dr James A. Smith",
- "name" : "Dr James A. Smith",
"data" : [
[
- "Perl 5",
- 10
- ],
- [
"Perl 6",
8
+ ],
+ [
+ "Perl 5",
+ 10
]
- ]
+ ],
+ "name" : "Dr James A. Smith"
},
{
"data" : [
[
+ "Perl 6",
+ 8
+ ],
+ [
"Perl 5",
6
],
[
"Blog",
4
- ],
- [
- "Perl 6",
- 8
]
],
- "id" : "Jo Christian Oterhals",
- "name" : "Jo Christian Oterhals"
+ "name" : "Jo Christian Oterhals",
+ "id" : "Jo Christian Oterhals"
},
{
"data" : [
[
- "Perl 5",
+ "Perl 6",
8
],
[
- "Perl 6",
+ "Perl 5",
8
]
],
- "name" : "Nick Logan",
- "id" : "Nick Logan"
+ "id" : "Nick Logan",
+ "name" : "Nick Logan"
},
{
"data" : [
@@ -143,6 +402,7 @@
"name" : "Ruben Westerberg"
},
{
+ "id" : "Adam Russell",
"data" : [
[
"Blog",
@@ -153,36 +413,35 @@
10
]
],
- "name" : "Adam Russell",
- "id" : "Adam Russell"
+ "name" : "Adam Russell"
},
{
"data" : [
[
- "Perl 6",
- 4
- ],
- [
"Perl 5",
10
+ ],
+ [
+ "Perl 6",
+ 4
]
],
"id" : "Lars Balker",
"name" : "Lars Balker"
},
{
- "id" : "Gustavo Chaves",
- "name" : "Gustavo Chaves",
"data" : [
[
- "Blog",
- 4
- ],
- [
"Perl 5",
9
+ ],
+ [
+ "Blog",
+ 4
]
- ]
+ ],
+ "name" : "Gustavo Chaves",
+ "id" : "Gustavo Chaves"
},
{
"data" : [
@@ -199,18 +458,16 @@
"id" : "Mark Senn"
},
{
+ "id" : "Andrezgz",
"data" : [
[
"Perl 5",
12
]
],
- "name" : "Andrezgz",
- "id" : "Andrezgz"
+ "name" : "Andrezgz"
},
{
- "id" : "Arne Sommer",
- "name" : "Arne Sommer",
"data" : [
[
"Perl 6",
@@ -220,7 +477,9 @@
"Blog",
4
]
- ]
+ ],
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer"
},
{
"data" : [
@@ -233,30 +492,31 @@
"name" : "Athanasius"
},
{
- "id" : "Kian-Meng Ang",
"name" : "Kian-Meng Ang",
"data" : [
[
- "Perl 5",
- 8
- ],
- [
"Blog",
4
+ ],
+ [
+ "Perl 5",
+ 8
]
- ]
+ ],
+ "id" : "Kian-Meng Ang"
},
{
"name" : "Doug Schrag",
- "id" : "Doug Schrag",
"data" : [
[
"Perl 6",
10
]
- ]
+ ],
+ "id" : "Doug Schrag"
},
{
+ "id" : "Francis Whittle",
"data" : [
[
"Blog",
@@ -267,80 +527,77 @@
6
]
],
- "name" : "Francis Whittle",
- "id" : "Francis Whittle"
+ "name" : "Francis Whittle"
},
{
+ "name" : "Duncan C. White",
"data" : [
[
"Perl 5",
8
]
],
- "name" : "Duncan C. White",
"id" : "Duncan C. White"
},
{
"name" : "Robert Gratza",
- "id" : "Robert Gratza",
"data" : [
[
- "Perl 5",
- 2
- ],
- [
"Perl 6",
6
+ ],
+ [
+ "Perl 5",
+ 2
]
- ]
+ ],
+ "id" : "Robert Gratza"
},
{
"id" : "John Barrett",
- "name" : "John Barrett",
"data" : [
[
"Perl 5",
7
]
- ]
+