Skip to content

Commit

Permalink
feat(talk): Add Eemeli's lightning talk (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli authored and bebraw committed Apr 24, 2018
1 parent 46372d5 commit d7aee10
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
Binary file added images/speakers/eemeli.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/speakers/eemeli-aro.js
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],
};
11 changes: 11 additions & 0 deletions src/talks/eemeli-aro.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: "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,
};

0 comments on commit d7aee10

Please sign in to comment.