Skip to content

Commit eae0112

Browse files
eemelibebraw
authored andcommitted
feat(talk): Add Eemeli's second lighting talk (#20)
1 parent 676cb43 commit eae0112

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

src/schedules/25-04-2018.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ module.exports = {
8383
},
8484
require("../talks/andrey-okonetchnikov"),
8585
require("../talks/sven-sauleau"),
86+
require("../talks/eemeli-aro-2"),
8687
],
8788
},
8889
{

src/talks/eemeli-aro-2.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const enums = require("../enums");
2+
const keywords = require("../keywords");
3+
const speaker = require("../speakers/eemeli-aro");
4+
5+
module.exports = {
6+
speakers: [speaker],
7+
title: "Why I YAML",
8+
description: "I'm writing my own YAML library, because none of the existing ones allowed me to manage comments within YAML files. Apparently this is not a thing one should do, as \"The YAML spec is larger than the XML and XML Namespaces specs combined\" and \"No one in their right mind would want to write a parser for it.\"\n\nBut, well, here we are. Let me explain where \"here\" is, the route I took, and why any of this matters.",
9+
type: enums.LIGHTNING_TALK,
10+
keywords: [keywords.TOOLING],
11+
};

src/talks/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module.exports = [
22
require("./christian-alfoni"),
33
require("./david-khourshid"),
44
require("./eemeli-aro"),
5+
require("./eemeli-aro-2"),
56
require("./gant-laborde"),
67
require("./jani-evakallio"),
78
require("./kasia-jastrzebska"),

0 commit comments

Comments
 (0)