-
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 lightning talk (#19)
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,20 @@ | ||
const keywords = require("../keywords"); | ||
|
||
module.exports = { | ||
name: "Eemeli Aro", | ||
about: "Eemeli has been falling down the rabbit hole of JavaScript localization for about six years now, and keeps wondering at what the next level might be. For work he makes complicated systems seem simple, for fun he writes open-source libraries, and in his spare time he organises science fiction conventions.", | ||
image: "speakers/eemeli.jpg", | ||
social: { | ||
homepage: "", | ||
twitter: "eemeli_aro", | ||
github: "eemeli", | ||
}, | ||
location: { | ||
country: { | ||
name: "Finland", | ||
code: "FI", | ||
}, | ||
city: "Helsinki", | ||
}, | ||
keywords: [keywords.TOOLING, keywords.REACT], | ||
}; |
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: "There's always a better way to handle localization", | ||
description: "From the very first prototype to a global site with content in multiple languages, the textual content of your app or project will be a series of compromises, some of which you won't even notice making. Localization is a ridiculously difficult problem in the general case, but in the specific you can get away with really simple solutions, especially if you understand the compromises you're making.", | ||
type: enums.LIGHTNING_TALK, | ||
keywords: speaker.keywords, | ||
}; |