Skip to content

Commit

Permalink
feat(talk): Add Eemeli's second lighting talk (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli authored and bebraw committed Apr 26, 2018
1 parent 676cb43 commit eae0112
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/schedules/25-04-2018.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ module.exports = {
},
require("../talks/andrey-okonetchnikov"),
require("../talks/sven-sauleau"),
require("../talks/eemeli-aro-2"),
],
},
{
Expand Down
11 changes: 11 additions & 0 deletions src/talks/eemeli-aro-2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const enums = require("../enums");
const keywords = require("../keywords");
const speaker = require("../speakers/eemeli-aro");

module.exports = {
speakers: [speaker],
title: "Why I YAML",
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.",
type: enums.LIGHTNING_TALK,
keywords: [keywords.TOOLING],
};
1 change: 1 addition & 0 deletions src/talks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = [
require("./christian-alfoni"),
require("./david-khourshid"),
require("./eemeli-aro"),
require("./eemeli-aro-2"),
require("./gant-laborde"),
require("./jani-evakallio"),
require("./kasia-jastrzebska"),
Expand Down

0 comments on commit eae0112

Please sign in to comment.