aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-103/colin-crain/perl/ch-1.pl147
-rw-r--r--stats/pwc-challenge-103.json481
-rw-r--r--stats/pwc-current.json226
-rw-r--r--stats/pwc-language-breakdown-summary.json74
-rw-r--r--stats/pwc-language-breakdown.json766
-rw-r--r--stats/pwc-leaders.json388
-rw-r--r--stats/pwc-summary-1-30.json46
-rw-r--r--stats/pwc-summary-121-150.json36
-rw-r--r--stats/pwc-summary-151-180.json104
-rw-r--r--stats/pwc-summary-181-210.json110
-rw-r--r--stats/pwc-summary-211-240.json32
-rw-r--r--stats/pwc-summary-31-60.json96
-rw-r--r--stats/pwc-summary-61-90.json50
-rw-r--r--stats/pwc-summary-91-120.json108
-rw-r--r--stats/pwc-summary.json56
15 files changed, 1441 insertions, 1279 deletions
diff --git a/challenge-103/colin-crain/perl/ch-1.pl b/challenge-103/colin-crain/perl/ch-1.pl
new file mode 100644
index 0000000000..c994b73083
--- /dev/null
+++ b/challenge-103/colin-crain/perl/ch-1.pl
@@ -0,0 +1,147 @@
+#! /opt/local/bin/perl
+#
+# metal-monkey-man.pl
+# sexy-zodiac.pl
+#
+# TASK #1 › Chinese Zodiac
+# Submitted by: Mohammad S Anwar
+# You are given a year $year.
+#
+# Write a script to determine the Chinese Zodiac for the given year
+# $year. Please check out wikipage for more information about it.
+#
+# The animal cycle: Rat, Ox, Tiger, Rabbit, Dragon, Snake, Horse, Goat,
+# Monkey, Rooster, Dog, Pig.
+
+# The element cycle: Wood, Fire, Earth, Metal, Water.
+#
+# Example 1:
+# Input: 2017
+# Output: Fire Rooster
+# Example 2:
+# Input: 1938
+# Output: Earth Tiger
+
+
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+our $TESTS = 1;
+
+
+our @elements = qw( Wood Fire Earth Metal Water );
+our @animals = qw( Rat Ox Tiger
+ Rabbit Dragon Snake
+ Horse Goat Monkey
+ Rooster Dog Pig) ;
+our @energy = qw( Yin Yang );
+
+
+say zodiac($_) for @ARGV;
+
+sub zodiac($year) {
+ my $sy = sexagenary_year($year);
+ my $animal = animal($sy);
+ my $element = element($sy);
+ my $energy = energy($sy);
+
+ my $out = "$year : $energy $element $animal";
+
+ return $out; ## testing
+
+}
+
+sub sexagenary_year( $year, $era = '' ) {
+## Gregorian year --> Sexagenary year
+## divided into AD/A.D./CE/C.E. and BC/B.C./C/BCE/B.C.E.
+## no mark is of course assumed to be CE
+## SY 60 is returned as 0.
+
+ ($year, $era) = $year =~ /^(\d+)\s?([ABC]?)/i;
+ if ( not $era or $era eq 'A' or $era eq 'C' ) {
+ return 58 if $year == 1;
+ return 59 if $year == 2;
+ return 0 if $year == 3;
+ return ($year - 3) % 60;
+ }
+ else {
+ return 60 - abs($year+2) % 60;
+ }
+}
+
+sub animal( $sexy_year ) {
+## 12-year cycle, 1-based
+## SY goes 1-59, 0
+ my $idx = ($sexy_year-1) % 12 ;
+ return $animals[ $idx ];
+
+}
+
+sub element( $sexy_year ) {
+## 10-year cycle of 5 x 2-year periods
+ my $idx = int ( ($sexy_year-1) % 10 ) / 2;
+ return $elements[$idx];
+
+}
+
+sub energy( $sexy_year ) {
+## alternating yin and yang repetition
+ my $idx = $sexy_year % 2;
+ return $energy[$idx];
+
+}
+
+
+
+
+
+
+exit unless $TESTS;
+
+use Test::More;
+
+is sexagenary_year(1964), 41, "year 1964 -> 41";
+is sexagenary_year(2021), 38, "year 2021 -> 38";
+
+is animal(41), 'Dragon', 'animal 1964';
+is element(41), 'Wood', 'element 1964';
+is energy(41), 'Yang', 'energy 1964';
+
+is animal(42), 'Snake', 'animal 1965';
+is element(42), 'Wood', 'element 1965';
+is energy(42), 'Yin', 'energy 1965';
+
+is animal(43), 'Horse', 'animal 1966';
+is element(43), 'Fire', 'element 1966';
+is energy(43), 'Yang', 'energy 1966';
+
+is animal(0), 'Pig', 'animal SY0';
+is element(0), 'Water', 'element SY0';
+is energy(0), 'Yin', 'energy SY0';
+
+is sexagenary_year(1924), 1, "year 1924 -> SY1";
+is animal(1), 'Rat', 'animal 1924';
+is element(1), 'Wood', 'element 1924';
+is energy(0), 'Yin', 'energy 1924';
+
+is sexagenary_year(1983), 0, "year 1983 -> 60 -> 0";
+
+is sexagenary_year('246 BC'), 52, "year 246 BC";
+is animal(52), 'Rabbit', 'animal 246 BC';
+is element(52), 'Wood', 'element 246 BC';
+is energy(0), 'Yin', 'energy 246 BC';
+
+is sexagenary_year('1 BC'), 0 , "year 1 BCE";
+
+is zodiac(1964), "1964 : Yang Wood Dragon", "zodiac year 1964";
+
+
+done_testing();
diff --git a/stats/pwc-challenge-103.json b/stats/pwc-challenge-103.json
index 535a4fc3d4..72a51db9ba 100644
--- a/stats/pwc-challenge-103.json
+++ b/stats/pwc-challenge-103.json
@@ -1,24 +1,187 @@
{
- "title" : {
- "text" : "Perl Weekly Challenge - 103"
- },
- "subtitle" : {
- "text" : "[Champions: 29] Last updated at 2021-03-19 03:23:10 GMT"
+ "chart" : {
+ "type" : "column"
},
- "legend" : {
- "enabled" : 0
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "Aaron Smith",
+ "name" : "Aaron Smith",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Abigail",
+ "y" : 4,
+ "name" : "Abigail"
+ },
+ {
+ "drilldown" : "Adam Russell",
+ "y" : 3,
+ "name" : "Adam Russell"
+ },
+ {
+ "drilldown" : "Arne Sommer",
+ "y" : 3,
+ "name" : "Arne Sommer"
+ },
+ {
+ "drilldown" : "Athanasius",
+ "name" : "Athanasius",
+ "y" : 4
+ },
+ {
+ "drilldown" : "Bob Lied",
+ "y" : 2,
+ "name" : "Bob Lied"
+ },
+ {
+ "y" : 2,
+ "name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung"
+ },
+ {
+ "name" : "Colin Crain",
+ "y" : 1,
+ "drilldown" : "Colin Crain"
+ },
+ {
+ "y" : 1,
+ "name" : "Cristina Heredia",
+ "drilldown" : "Cristina Heredia"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "y" : 3,
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "y" : 2,
+ "name" : "Duncan C. White",
+ "drilldown" : "Duncan C. White"
+ },
+ {
+ "drilldown" : "E. Choroba",
+ "y" : 2,
+ "name" : "E. Choroba"
+ },
+ {
+ "y" : 2,
+ "name" : "Feng Chang",
+ "drilldown" : "Feng Chang"
+ },
+ {
+ "name" : "Flavio Poletti",
+ "y" : 4,
+ "drilldown" : "Flavio Poletti"
+ },
+ {
+ "drilldown" : "James Smith",
+ "name" : "James Smith",
+ "y" : 3
+ },
+ {
+ "name" : "Jan Krnavek",
+ "y" : 2,
+ "drilldown" : "Jan Krnavek"
+ },
+ {
+ "drilldown" : "Joan Mimosinnet",
+ "name" : "Joan Mimosinnet",
+ "y" : 2
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "y" : 2,
+ "drilldown" : "Jorg Sommrey"
+ },
+ {
+ "y" : 2,
+ "name" : "Lance Wicks",
+ "drilldown" : "Lance Wicks"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "y" : 2,
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "drilldown" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
+ "y" : 4
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "y" : 2,
+ "name" : "Mark Anderson"
+ },
+ {
+ "y" : 2,
+ "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "drilldown" : "Paulo Custodio",
+ "y" : 2,
+ "name" : "Paulo Custodio"
+ },
+ {
+ "drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Roger Bell_West",
+ "y" : 5,
+ "name" : "Roger Bell_West"
+ },
+ {
+ "drilldown" : "Simon Green",
+ "y" : 3,
+ "name" : "Simon Green"
+ },
+ {
+ "name" : "Simon Proctor",
+ "y" : 1,
+ "drilldown" : "Simon Proctor"
+ },
+ {
+ "drilldown" : "Stuart Little",
+ "y" : 4,
+ "name" : "Stuart Little"
+ },
+ {
+ "name" : "Ulrich Rieke",
+ "y" : 4,
+ "drilldown" : "Ulrich Rieke"
+ }
+ ],
+ "colorByPoint" : 1,
+ "name" : "Perl Weekly Challenge - 103"
+ }
+ ],
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
},
- "xAxis" : {
- "type" : "category"
+ "title" : {
+ "text" : "Perl Weekly Challenge - 103"
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
}
},
"drilldown" : {
"series" : [
{
+ "id" : "Aaron Smith",
+ "name" : "Aaron Smith",
"data" : [
[
"Raku",
@@ -28,11 +191,11 @@
"Blog",
1
]
- ],
- "name" : "Aaron Smith",
- "id" : "Aaron Smith"
+ ]
},
{
+ "id" : "Abigail",
+ "name" : "Abigail",
"data" : [
[
"Perl",
@@ -42,9 +205,7 @@
"Blog",
2
]
- ],
- "name" : "Abigail",
- "id" : "Abigail"
+ ]
},
{
"name" : "Adam Russell",
@@ -75,6 +236,8 @@
"id" : "Arne Sommer"
},
{
+ "name" : "Athanasius",
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -84,13 +247,11 @@
"Raku",
2
]
- ],
- "id" : "Athanasius",
- "name" : "Athanasius"
+ ]
},
{
- "id" : "Bob Lied",
"name" : "Bob Lied",
+ "id" : "Bob Lied",
"data" : [
[
"Perl",
@@ -99,14 +260,24 @@
]
},
{
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
+ ]
+ },
+ {
+ "name" : "Colin Crain",
+ "id" : "Colin Crain",
+ "data" : [
+ [
+ "Perl",
+ 1
+ ]
+ ]
},
{
"id" : "Cristina Heredia",
@@ -133,36 +304,38 @@
"id" : "Dave Jacoby"
},
{
- "name" : "Duncan C. White",
- "id" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
- "name" : "E. Choroba",
- "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
- "name" : "Feng Chang",
- "id" : "Feng Chang",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Feng Chang",
+ "name" : "Feng Chang"
},
{
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -172,11 +345,11 @@
"Blog",
2
]
- ],
- "name" : "Flavio Poletti",
- "id" : "Flavio Poletti"
+ ]
},
{
+ "name" : "James Smith",
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -186,9 +359,7 @@
"Blog",
1
]
- ],
- "name" : "James Smith",
- "id" : "James Smith"
+ ]
},
{
"data" : [
@@ -201,14 +372,14 @@
"id" : "Jan Krnavek"
},
{
+ "name" : "Joan Mimosinnet",
+ "id" : "Joan Mimosinnet",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Joan Mimosinnet",
- "name" : "Joan Mimosinnet"
+ ]
},
{
"name" : "Jorg Sommrey",
@@ -231,22 +402,20 @@
1
]
],
- "id" : "Lance Wicks",
- "name" : "Lance Wicks"
+ "name" : "Lance Wicks",
+ "id" : "Lance Wicks"
},
{
+ "id" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Lubos Kolouch",
- "id" : "Lubos Kolouch"
+ ]
},
{
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -256,7 +425,9 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
"name" : "Mark Anderson",
@@ -269,8 +440,8 @@
]
},
{
- "name" : "Niels van Dijke",
"id" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
"data" : [
[
"Perl",
@@ -295,12 +466,12 @@
2
]
],
- "name" : "Pete Houston",
- "id" : "Pete Houston"
+ "id" : "Pete Houston",
+ "name" : "Pete Houston"
},
{
- "id" : "Roger Bell_West",
"name" : "Roger Bell_West",
+ "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -317,8 +488,6 @@
]
},
{
- "name" : "Simon Green",
- "id" : "Simon Green",
"data" : [
[
"Perl",
@@ -328,21 +497,21 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Simon Green",
+ "id" : "Simon Green"
},
{
+ "id" : "Simon Proctor",
+ "name" : "Simon Proctor",
"data" : [
[
"Raku",
1
]
- ],
- "id" : "Simon Proctor",
- "name" : "Simon Proctor"
+ ]
},
{
- "name" : "Stuart Little",
- "id" : "Stuart Little",
"data" : [
[
"Perl",
@@ -352,9 +521,13 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Stuart Little",
+ "name" : "Stuart Little"
},
{
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -364,180 +537,22 @@
"Raku",
2
]
- ],
- "name" : "Ulrich Rieke",
- "id" : "Ulrich Rieke"
+ ]
}
]
},
- "series" : [
- {
- "name" : "Perl Weekly Challenge - 103",
- "data" : [
- {
- "drilldown" : "Aaron Smith",
- "y" : 3,
- "name" : "Aaron Smith"
- },
- {
- "drilldown" : "Abigail",
- "name" : "Abigail",
- "y" : 4
- },
- {
- "y" : 3,
- "name" : "Adam Russell",
- "drilldown" : "Adam Russell"
- },
- {
- "name" : "Arne Sommer",
- "y" : 3,
- "drilldown" : "Arne Sommer"
- },
- {
- "y" : 4,
- "name" : "Athanasius",
- "drilldown" : "Athanasius"
- },
- {
- "drilldown" : "Bob Lied",
- "y" : 2,
- "name" : "Bob Lied"
- },
- {
- "y" : 2,
- "name" : "Cheok-Yin Fung",
- "drilldown" : "Cheok-Yin Fung"
- },
- {
- "name" : "Cristina Heredia",
- "y" : 1,
- "drilldown" : "Cristina Heredia"
- },
- {
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 3
- },
- {
- "drilldown" : "Duncan C. White",
- "name" : "Duncan C. White",
- "y" : 2
- },
- {
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba",
- "y" : 2
- },
- {
- "drilldown" : "Feng Chang",
- "name" : "Feng Chang",
- "y" : 2
- },
- {
- "drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti",
- "y" : 4
- },
- {
- "name" : "James Smith",
- "y" : 3,
- "drilldown" : "James Smith"
- },
- {
- "name" : "Jan Krnavek",
- "y" : 2,
- "drilldown" : "Jan Krnavek"
- },
- {
- "drilldown" : "Joan Mimosinnet",
- "name" : "Joan Mimosinnet",
- "y" : 2
- },
- {
- "drilldown" : "Jorg Sommrey",
- "name" : "Jorg Sommrey",
- "y" : 2
- },
- {
- "drilldown" : "Lance Wicks",
- "name" : "Lance Wicks",
- "y" : 2
- },
- {
- "drilldown" : "Lubos Kolouch",
- "y" : 2,
- "name" : "Lubos Kolouch"
- },
- {
- "drilldown" : "Luca Ferrari",
- "y" : 4,
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "y" : 2,
- "drilldown" : "Mark Anderson"
- },
- {
- "drilldown" : "Niels van Dijke",
- "y" : 2,
- "name" : "Niels van Dijke"
- },
- {
- "name" : "Paulo Custodio",
- "y" : 2,
- "drilldown" : "Paulo Custodio"
- },
- {
- "name" : "Pete Houston",
- "y" : 2,
- "drilldown" : "Pete Houston"
- },
- {
- "drilldown" : "Roger Bell_West",
- "y" : 5,
- "name" : "Roger Bell_West"
- },
- {
- "name" : "Simon Green",
- "y" : 3,
- "drilldown" : "Simon Green"
- },
- {
- "drilldown" : "Simon Proctor",
- "y" : 1,
- "name" : "Simon Proctor"
- },
- {
- "drilldown" : "Stuart Little",
- "name" : "Stuart Little",
- "y" : 4
- },
- {
- "drilldown" : "Ulrich Rieke",
- "y" : 4,
- "name" : "Ulrich Rieke"
- }
- ],
- "colorByPoint" : 1
- }
- ],
- "tooltip" : {
- "followPointer" : 1,
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ "xAxis" : {
+ "type" : "category"
},
- "chart" : {
- "type" : "column"
+ "subtitle" : {
+ "text" : "[Champions: 30] Last updated at 2021-03-29 04:41:38 GMT"
},
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
+ "legend" : {
+ "enabled" : 0
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
}
}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 52a1685809..7a5e9df4cc 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -2,47 +2,45 @@
"chart" : {
"type" : "column"
},
- "xAxis" : {
- "type" : "category"
- },
"series" : [
{
"name" : "Perl Weekly Challenge - 105",
+ "colorByPoint" : 1,
"data" : [
{
- "y" : 3,
+ "drilldown" : "Aaron Smith",
"name" : "Aaron Smith",
- "drilldown" : "Aaron Smith"
+ "y" : 3
},
{
- "drilldown" : "Abigail",
"y" : 3,
+ "drilldown" : "Abigail",
"name" : "Abigail"
},
{
- "y" : 3,
+ "drilldown" : "Adam Russell",
"name" : "Adam Russell",
- "drilldown" : "Adam Russell"
+ "y" : 3
},
{
- "y" : 5,
"name" : "Arne Sommer",
- "drilldown" : "Arne Sommer"
+ "drilldown" : "Arne Sommer",
+ "y" : 5
},
{
"name" : "Cheok-Yin Fung",
- "y" : 1,
- "drilldown" : "Cheok-Yin Fung"
+ "drilldown" : "Cheok-Yin Fung",
+ "y" : 1
},
{
"y" : 4,
- "name" : "Colin Crain",
- "drilldown" : "Colin Crain"
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain"
},
{
+ "y" : 1,
"drilldown" : "Cristina Heredia",
- "name" : "Cristina Heredia",
- "y" : 1
+ "name" : "Cristina Heredia"
},
{
"y" : 3,
@@ -51,57 +49,57 @@
},
{
"name" : "Duncan C. White",
- "y" : 2,
- "drilldown" : "Duncan C. White"
+ "drilldown" : "Duncan C. White",
+ "y" : 2
},
{
"y" : 2,
- "name" : "E. Choroba",
- "drilldown" : "E. Choroba"
+ "drilldown" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
"name" : "Flavio Poletti",
- "y" : 4,
- "drilldown" : "Flavio Poletti"
+ "drilldown" : "Flavio Poletti",
+ "y" : 4
},
{
+ "y" : 5,
"drilldown" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas",
- "y" : 5
+ "name" : "Jaldhar H. Vyas"
},
{
- "drilldown" : "James Smith",
+ "y" : 3,
"name" : "James Smith",
- "y" : 3
+ "drilldown" : "James Smith"
},
{
- "name" : "Jan Krnavek",
"y" : 1,
+ "name" : "Jan Krnavek",
"drilldown" : "Jan Krnavek"
},
{
"y" : 2,
- "name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey"
+ "drilldown" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
},
{
- "y" : 5,
"name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld"
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5
},
{
+ "y" : 4,
"drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari",
- "y" : 4
+ "name" : "Luca Ferrari"
},
{
- "name" : "Mark Anderson",
"y" : 2,
- "drilldown" : "Mark Anderson"
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson"
},
{
- "name" : "Niels van Dijke",
"y" : 1,
+ "name" : "Niels van Dijke",
"drilldown" : "Niels van Dijke"
},
{
@@ -110,55 +108,35 @@
"drilldown" : "Paulo Custodio"
},
{
- "name" : "Pete Houston",
"y" : 2,
+ "name" : "Pete Houston",
"drilldown" : "Pete Houston"
},
{
- "y" : 4,
+ "drilldown" : "Roger Bell_West",
"name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West"
+ "y" : 4
},
{
- "y" : 4,
+ "drilldown" : "Stuart Little",
"name" : "Stuart Little",
- "drilldown" : "Stuart Little"
+ "y" : 4
},
{
- "name" : "Ulrich Rieke",
"y" : 4,
- "drilldown" : "Ulrich Rieke"
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
+ "drilldown" : "Wanderdoc",
"name" : "Wanderdoc",
- "y" : 1,
- "drilldown" : "Wanderdoc"
+ "y" : 1
}
- ],
- "colorByPoint" : 1
+ ]
}
],
- "tooltip" : {
- "pointFormat" : "<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
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "legend" : {
- "enabled" : 0
+ "xAxis" : {
+ "type" : "category"
},
"drilldown" : {
"series" : [
@@ -177,6 +155,7 @@
]
},
{
+ "name" : "Abigail",
"data" : [
[
"Perl",
@@ -187,10 +166,10 @@
1
]
],
- "name" : "Abigail",
"id" : "Abigail"
},
{
+ "id" : "Adam Russell",
"data" : [
[
"Perl",
@@ -201,10 +180,11 @@
1
]
],
- "name" : "Adam Russell",
- "id" : "Adam Russell"
+ "name" : "Adam Russell"
},
{
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -218,9 +198,7 @@
"Blog",
1
]
- ],
- "name" : "Arne Sommer",
- "id" : "Arne Sommer"
+ ]
},
{
"data" : [
@@ -229,12 +207,10 @@
1
]
],
- "name" : "Cheok-Yin Fung",
- "id" : "Cheok-Yin Fung"
+ "id" : "Cheok-Yin Fung",
+ "name" : "Cheok-Yin Fung"
},
{