aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-10-18 18:05:51 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-10-18 18:05:51 +0100
commita79332a73e6dd2e363a5648ace0235d6c236447f (patch)
tree9b59d2739c6508bd34c99cba8ead54e73f25705c
parent2245c92b0afa98b12c102ed02a3d34ceb58f4fc9 (diff)
downloadperlweeklychallenge-club-a79332a73e6dd2e363a5648ace0235d6c236447f.tar.gz
perlweeklychallenge-club-a79332a73e6dd2e363a5648ace0235d6c236447f.tar.bz2
perlweeklychallenge-club-a79332a73e6dd2e363a5648ace0235d6c236447f.zip
- Added solutions by Kevin Colyer.
-rw-r--r--challenge-030/kevin-colyer/perl6/ch-1.p613
-rw-r--r--challenge-030/kevin-colyer/perl6/ch-2.p621
-rw-r--r--stats/pwc-current.json419
-rw-r--r--stats/pwc-language-breakdown-summary.json44
-rw-r--r--stats/pwc-language-breakdown.json444
-rw-r--r--stats/pwc-leaders.json900
-rw-r--r--stats/pwc-summary-1-30.json42
-rw-r--r--stats/pwc-summary-121-150.json66
-rw-r--r--stats/pwc-summary-31-60.json116
-rw-r--r--stats/pwc-summary-61-90.json48
-rw-r--r--stats/pwc-summary-91-120.json126
-rw-r--r--stats/pwc-summary.json290
12 files changed, 1289 insertions, 1240 deletions
diff --git a/challenge-030/kevin-colyer/perl6/ch-1.p6 b/challenge-030/kevin-colyer/perl6/ch-1.p6
new file mode 100644
index 0000000000..28e92b44b4
--- /dev/null
+++ b/challenge-030/kevin-colyer/perl6/ch-1.p6
@@ -0,0 +1,13 @@
+#!/usr/bin/perl6
+use v6;
+
+use Test;
+
+# 30.1
+# Write a script to list dates for Sunday Christmas between 2019 and 2100. For example, 25 Dec 2022 is Sunday.
+
+# Challenge #13.1
+# Write a script to print the date of last Friday of every month of a given year. Order y, m, d
+my @sundayxmas;
+
+2019..2100 ==> map { Date.new($_,12,25) } ==> grep { $_.day-of-week==7} ==> map { say $_.yyyy-mm-dd } ; #
diff --git a/challenge-030/kevin-colyer/perl6/ch-2.p6 b/challenge-030/kevin-colyer/perl6/ch-2.p6
new file mode 100644
index 0000000000..1b14a24eda
--- /dev/null
+++ b/challenge-030/kevin-colyer/perl6/ch-2.p6
@@ -0,0 +1,21 @@
+#!/usr/bin/perl6
+use v6;
+
+use Test;
+
+# 30.2
+# Write a script to print all possible series of 3 positive numbers, where in each series at least one of the number is even and sum of the three numbers is always 12. For example, 3,4,5.
+
+
+sub SumsTwelve(*@tri) {
+ return True if ( [+] @tri ) == 12; # this will always fullfil condition one of number is even as can only add to twelve is ALL even or TWO odd. sum of all odd or one odd can never an even number!
+ return False;
+}
+
+for 1..10 -> $a {
+ for 1..11-$a -> $b {
+ for 1..12-$b-$a -> $c {
+ say "$a,$b,$c" if SumsTwelve($a,$b,$c);
+ }
+ }
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index ceebf6476c..0e3e8b19d6 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,181 +1,23 @@
{
- "subtitle" : {
- "text" : "[Champions: 25] Last updated at 2019-10-18 12:02:54 GMT"
- },
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 030",
- "data" : [
- {
- "name" : "Andrezgz",
- "drilldown" : "Andrezgz",
- "y" : 2
- },
- {
- "name" : "Arne Sommer",
- "drilldown" : "Arne Sommer",
- "y" : 3
- },
- {
- "name" : "Burkhard Nickels",
- "drilldown" : "Burkhard Nickels",
- "y" : 2
- },
- {
- "drilldown" : "Daniel Mita",
- "y" : 4,
- "name" : "Daniel Mita"
- },
- {
- "y" : 2,
- "drilldown" : "Darren Bottin",
- "name" : "Darren Bottin"
- },
- {
- "name" : "Dave Cross",
- "drilldown" : "Dave Cross",
- "y" : 2
- },
- {
- "drilldown" : "Dave Jacoby",
- "y" : 3,
- "name" : "Dave Jacoby"
- },
- {
- "name" : "Dr James A. Smith",
- "drilldown" : "Dr James A. Smith",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Duane Powell",
- "name" : "Duane Powell"
- },
- {
- "drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
- },
- {
- "drilldown" : "Jaldhar H. Vyas",
- "y" : 5,
- "name" : "Jaldhar H. Vyas"
- },
- {
- "y" : 2,
- "drilldown" : "Lars Thegler",
- "name" : "Lars Thegler"
- },
- {
- "name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld",
- "y" : 5
- },
- {
- "drilldown" : "Markus Holzer",
- "y" : 2,
- "name" : "Markus Holzer"
- },
- {
- "drilldown" : "Nazareno Delucca",
- "y" : 2,
- "name" : "Nazareno Delucca"
- },
- {
- "name" : "Pete Houston",
- "drilldown" : "Pete Houston",
- "y" : 2
- },
- {
- "name" : "Rage311",
- "drilldown" : "Rage311",
- "y" : 2
- },
- {
- "drilldown" : "Roger Bell West",
- "y" : 5,
- "name" : "Roger Bell West"
- },
- {
- "drilldown" : "Simon Proctor",
- "y" : 2,
- "name" : "Simon Proctor"
- },
- {
- "y" : 2,
- "drilldown" : "Steven Wilson",
- "name" : "Steven Wilson"
- },
- {
- "drilldown" : "Tester R59",
- "y" : 2,
- "name" : "Tester R59"
- },
- {
- "name" : "Trenton Langer",
- "y" : 2,
- "drilldown" : "Trenton Langer"
- },
- {
- "y" : 2,
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
- },
- {
- "name" : "Vyacheslav Volgarev",
- "y" : 2,
- "drilldown" : "Vyacheslav Volgarev"
- },
- {
- "y" : 4,
- "drilldown" : "Yet Ebreo",
- "name" : "Yet Ebreo"
- }
- ]
- }
- ],
- "tooltip" : {
- "followPointer" : 1,
- "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/>"
- },
- "legend" : {
- "enabled" : 0
- },
- "xAxis" : {
- "type" : "category"
- },
- "chart" : {
- "type" : "column"
- },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
"drilldown" : {
"series" : [
{
+ "id" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Andrezgz",
- "id" : "Andrezgz"
+ "name" : "Andrezgz"
},
{
+ "id" : "Arne Sommer",
"data" : [
[
"Perl 6",
@@ -186,12 +28,11 @@
1
]
],
- "id" : "Arne Sommer",
"name" : "Arne Sommer"
},
{
- "id" : "Burkhard Nickels",
"name" : "Burkhard Nickels",
+ "id" : "Burkhard Nickels",
"data" : [
[
"Perl 5",
@@ -200,6 +41,7 @@
]
},
{
+ "id" : "Daniel Mita",
"data" : [
[
"Perl 5",
@@ -210,8 +52,7 @@
2
]
],
- "name" : "Daniel Mita",
- "id" : "Daniel Mita"
+ "name" : "Daniel Mita"
},
{
"data" : [
@@ -220,17 +61,17 @@
2
]
],
- "name" : "Darren Bottin",
- "id" : "Darren Bottin"
+ "id" : "Darren Bottin",
+ "name" : "Darren Bottin"
},
{
+ "id" : "Dave Cross",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Dave Cross",
"name" : "Dave Cross"
},
{
@@ -248,36 +89,37 @@
"name" : "Dave Jacoby"
},
{
- "id" : "Dr James A. Smith",
- "name" : "Dr James A. Smith",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Dr James A. Smith",
+ "name" : "Dr James A. Smith"
},
{
- "name" : "Duane Powell",
"id" : "Duane Powell",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Duane Powell"
},
{
+ "name" : "E. Choroba",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "E. Choroba",
"id" : "E. Choroba"
},
{
+ "name" : "Jaldhar H. Vyas",
"data" : [
[
"Perl 5",
@@ -292,20 +134,30 @@
1
]
],
- "name" : "Jaldhar H. Vyas",
"id" : "Jaldhar H. Vyas"
},
{
"data" : [
[
- "Perl 5",
+ "Perl 6",
2
]
],
+ "id" : "Kevin Colyer",
+ "name" : "Kevin Colyer"
+ },
+ {
"id" : "Lars Thegler",
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ]
+ ],
"name" : "Lars Thegler"
},
{
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl 5",
@@ -320,42 +172,41 @@
1
]
],
- "name" : "Laurent Rosenfeld",
- "id" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld"
},
{
+ "name" : "Markus Holzer",
"data" : [
[
"Perl 6",
2
]
],
- "name" : "Markus Holzer",
"id" : "Markus Holzer"
},
{
- "id" : "Nazareno Delucca",
- "name" : "Nazareno Delucca",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Nazareno Delucca",
+ "name" : "Nazareno Delucca"
},
{
- "id" : "Pete Houston",
- "name" : "Pete Houston",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Pete Houston",
+ "name" : "Pete Houston"
},
{
- "id" : "Rage311",
"name" : "Rage311",
+ "id" : "Rage311",
"data" : [
[
"Perl 5",
@@ -364,6 +215,7 @@
]
},
{
+ "id" : "Roger Bell West",
"data" : [
[
"Perl 5",
@@ -378,42 +230,41 @@
1
]
],
- "id" : "Roger Bell West",
"name" : "Roger Bell West"
},
{
+ "name" : "Simon Proctor",
+ "id" : "Simon Proctor",
"data" : [
[
"Perl 6",
2
]
- ],
- "id" : "Simon Proctor",
- "name" : "Simon Proctor"
+ ]
},
{
- "name" : "Steven Wilson",
- "id" : "Steven Wilson",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Steven Wilson",
+ "name" : "Steven Wilson"
},
{
- "id" : "Tester R59",
- "name" : "Tester R59",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Tester R59",
+ "name" : "Tester R59"
},
{
- "id" : "Trenton Langer",
"name" : "Trenton Langer",
+ "id" : "Trenton Langer",
"data" : [
[
"Perl 5",
@@ -433,16 +284,15 @@
},
{
"id" : "Vyacheslav Volgarev",
- "name" : "Vyacheslav Volgarev",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Vyacheslav Volgarev"
},
{
- "id" : "Yet Ebreo",
"name" : "Yet Ebreo",
"data" : [
[
@@ -453,11 +303,176 @@
"Perl 6",
2
]
- ]
+ ],
+ "id" : "Yet Ebreo"
}
]
},
+ "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/>"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
"title" : {
"text" : "Perl Weekly Challenge - 030"
- }
+ },
+ "subtitle" : {
+ "text" : "[Champions: 26] Last updated at 2019-10-18 17:05:12 GMT"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
+ },
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "drilldown" : "Andrezgz",
+ "y" : 2,
+ "name" : "Andrezgz"
+ },
+ {
+ "drilldown" : "Arne Sommer",
+ "y" : 3,
+ "name" : "Arne Sommer"
+ },
+ {
+ "name" : "Burkhard Nickels",
+ "drilldown" : "Burkhard Nickels",
+ "y" : 2
+ },
+ {
+ "name" : "Daniel Mita",
+ "y" : 4,
+ "drilldown" : "Daniel Mita"
+ },
+ {
+ "drilldown" : "Darren Bottin",
+ "y" : 2,
+ "name" : "Darren Bottin"
+ },
+ {
+ "name" : "Dave Cross",
+ "y" : 2,
+ "drilldown" : "Dave Cross"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
+ },
+ {
+ "drilldown" : "Dr James A. Smith",
+ "y" : 2,
+ "name" : "Dr James A. Smith"
+ },
+ {
+ "name" : "Duane Powell",
+ "y" : 2,
+ "drilldown" : "Duane Powell"
+ },
+ {
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Jaldhar H. Vyas",
+ "y" : 5,
+ "name" : "Jaldhar H. Vyas"
+ },
+ {
+ "drilldown" : "Kevin Colyer",
+ "y" : 2,
+ "name" : "Kevin Colyer"
+ },
+ {
+ "name" : "Lars Thegler",
+ "drilldown" : "Lars Thegler",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5,
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Markus Holzer",
+ "drilldown" : "Markus Holzer",
+ "y" : 2
+ },
+ {
+ "name" : "Nazareno Delucca",
+ "drilldown" : "Nazareno Delucca",
+ "y" : 2
+ },
+ {
+ "name" : "Pete Houston",
+ "y" : 2,
+ "drilldown" : "Pete Houston"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Rage311",
+ "name" : "Rage311"
+ },
+ {
+ "name" : "Roger Bell West",
+ "drilldown" : "Roger Bell West",
+ "y" : 5
+ },
+ {
+ "name" : "Simon Proctor",
+ "drilldown" : "Simon Proctor",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Steven Wilson",
+ "name" : "Steven Wilson"
+ },
+ {
+ "name" : "Tester R59",
+ "drilldown" : "Tester R59",
+ "y" : 2
+ },
+ {
+ "name" : "Trenton Langer",
+ "y" : 2,
+ "drilldown" : "Trenton Langer"
+ },
+ {
+ "name" : "Ulrich Rieke",
+ "y" : 2,
+ "drilldown" : "Ulrich Rieke"
+ },
+ {
+ "name" : "Vyacheslav Volgarev",
+ "y" : 2,
+ "drilldown" : "Vyacheslav Volgarev"
+ },
+ {
+ "drilldown" : "Yet Ebreo",
+ "y" : 4,
+ "name" : "Yet Ebreo"
+ }
+ ],
+ "name" : "Perl Weekly Challenge - 030"
+ }
+ ]
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 096e991543..d756b16180 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,29 +1,26 @@
{
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions - 2019"
+ },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- },
- "type" : "category"
+ "chart" : {
+ "type" : "column"
},
"series" : [
{
"dataLabels" : {
+ "y" : 10,
+ "format" : "{point.y:.0f}",
"enabled" : "true",
"color" : "#FFFFFF",
- "rotation" : -90,
"align" : "right",
- "format" : "{point.y:.0f}",
- "y" : 10,
"style" : {
"fontFamily" : "Verdana, sans-serif",
"fontSize" : "13px"
- }
+ },
+ "rotation" : -90
},
"name" : "Contributions",
"data" : [
@@ -37,27 +34,30 @@
],
[
"Perl 6",
- 737
+ 739
]
]
}
],
- "title" : {
- "text" : "Perl Weekly Challenge Contributions - 2019"
- },
"yAxis" : {
- "min" : 0,
"title" : {
"text" : null
- }
+ },
+ "min" : 0
+ },
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ },
+ "type" : "category"
},
"legend" : {
"enabled" : "false"
},
- "chart" : {
- "type" : "column"
- },
"subtitle" : {
- "text" : "Last updated at 2019-10-18 12:03:04 GMT"
+ "text" : "Last updated at 2019-10-18 17:05:38 GMT"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index b70639abd3..1a6fe4ef6e 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,12 +1,165 @@
{
- "tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : "true",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
- },
- "xAxis" : {
- "type" : "category"
+ "chart" : {
+ "type" : "column"
},
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "001",
+ "name" : "#001",
+ "y" : 132
+ },
+ {
+ "y" : 104,
+ "name" : "#002",
+ "drilldown" : "002"
+ },
+ {
+ "drilldown" : "003",
+ "name" : "#003",
+ "y" : 66
+ },
+ {
+ "drilldown" : "004",
+ "name" : "#004",
+ "y" : 86
+ },
+ {
+ "y" : 66,
+ "name" : "#005",
+ "drilldown" : "005"
+ },
+ {
+ "name" : "#006",
+ "drilldown" : "006",
+ "y" : 48
+ },
+ {
+ "name" : "#007",
+ "drilldown" : "007",
+ "y" : 56
+ },
+ {
+ "name" : "#008",
+ "drilldown" : "008",
+ "y" : 70
+ },
+ {
+ "name" : "#009",
+ "drilldown" : "009",
+ "y" : 68
+ },
+ {
+ "y" : 60,
+ "drilldown" : "010",
+ "name" : "#010"
+ },
+ {
+ "y" : 78,
+ "name" : "#011",
+ "drilldown" : "011"
+ },
+ {
+ "y" : 83,
+ "drilldown" : "012",
+ "name" : "#012"
+ },
+ {
+ "drilldown" : "013",
+ "name" : "#013",
+ "y" : 76
+ },
+ {
+ "y" : 95,
+ "drilldown" : "014",
+ "name" : "#014"
+ },
+ {
+ "name" : "#015",
+ "drilldown" : "015",
+ "y" : 93
+ },
+ {
+ "y" : 66,
+ "drilldown" : "016",
+ "name" : "#016"
+ },
+ {
+ "y" : 79,
+ "drilldown" : "017",
+ "name" : "#017"
+ },
+ {
+ "y" : 76,
+ "drilldown" : "018",
+ "name" : "#018"
+ },
+ {
+ "drilldown" : "019",
+ "name" : "#019",
+ "y" : 95
+ },
+ {
+ "drilldown" : "020",
+ "name" : "#020",
+ "y" : 95
+ },
+ {
+ "name" : "#021",
+ "drilldown" : "021",
+ "y" : 67
+ },
+ {
+ "drilldown" : "022",
+ "name" : "#022",
+ "y" : 63
+ },
+ {
+ "drilldown" : "023",
+ "name" : "#023",
+ "y" : 91
+ },
+ {
+ "name" : "#024",
+ "drilldown" : "024",
+ "y" : 70
+ },
+ {
+ "name" : "#025",
+ "drilldown" : "025",
+ "y" : 55
+ },
+ {
+ "y" : 70,
+ "drilldown" : "026",
+ "name" : "#026"
+ },
+ {
+ "name" : "#027",
+ "drilldown" : "027",
+ "y" : 58
+ },
+ {
+ "name" : "#028",
+ "drilldown" : "028",
+ "y" : 79
+ },
+ {
+ "y" : 74,
+ "drilldown" : "029",
+ "name" : "#029"
+ },
+ {
+ "name" : "#030",
+ "drilldown" : "030",
+ "y" : 68
+ }
+ ],
+ "name" : "Perl Weekly Challenge Languages",
+ "colorByPoint" : "true"
+ }
+ ],
"drilldown" : {
"series" : [
{
@@ -64,7 +217,6 @@
"name" : "003"
},
{
- "id" : "004",
"data" : [
[
"Perl 5",
@@ -79,6 +231,7 @@
9
]
],
+ "id" : "004",
"name" : "004"
},
{
@@ -96,11 +249,10 @@
11
]
],
- "name" : "005",
- "id" : "005"
+ "id" : "005",
+ "name" : "005"
},
{
- "id" : "006",
"data" : [
[
"Perl 5",
@@ -115,10 +267,11 @@
7
]
],
+ "id" : "006",
"name" : "006"
},
{
- "id" : "007",
+ "name" : "007",
"data" : [
[
"Perl 5",
@@ -133,9 +286,10 @@
10
]
],
- "name" : "007"
+ "id" : "007"
},
{
+ "id" : "008",
"data" : [
[
"Perl 5",
@@ -150,11 +304,11 @@
12
]
],
- "id" : "008",
"name" : "008"
},
{
"name" : "009",
+ "id" : "009",
"data" : [
[
"Perl 5",
@@ -168,10 +322,10 @@
"Blog",
13
]
- ],
- "id" : "009"
+ ]
},
{
+ "id" : "010",
"data" : [
[
"Perl 5",
@@ -186,10 +340,10 @@
11
]
],
- "id" : "010",
"name" : "010"
},
{
+ "name" : "011",
"data" : [
[
"Perl 5",
@@ -204,10 +358,10 @@
9
]
],
- "name" : "011",
"id" : "011"
},
{
+ "name" : "012",
"id" : "012",
"data" : [
[
@@ -222,10 +376,11 @@
"Blog",
11
]
- ],
- "name" : "012"
+ ]
},
{
+ "name" : "013",
+ "id" : "013",
"data" : [
[
"Perl 5",
@@ -239,11 +394,11 @@
"Blog",
13
]
- ],
- "id" : "013",
- "name" : "013"
+ ]
},
{
+ "name" : "014",
+ "id" : "014",
"data" : [
[
"Perl 5",
@@ -257,11 +412,10 @@
"Blog",
14
]
- ],
- "name" : "014",
- "id" : "014"
+ ]
},
{
+ "id" : "015",
"data" : [
[
"Perl 5",
@@ -276,11 +430,11 @@
15
]
],
- "id" : "015",
"name" : "015"
},
{
"name" : "016",
+ "id" : "016",
"data" : [
[
"Perl 5",
@@ -294,10 +448,11 @@
"Blog",
12
]
- ],
- "id" : "016"
+ ]
},
{
+ "name" : "017",
+ "id" : "017",
"data" : [
[
"Perl 5",
@@ -311,12 +466,9 @@
"Blog",
12
]
- ],
- "name" : "017",
- "id" : "017"