-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(talk): Add Eemeli's second lighting talk (#20)
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters