Skip to content

Commit dc3b120

Browse files
committed
nov 2018
1 parent da1f493 commit dc3b120

File tree

1 file changed

+31
-33
lines changed

1 file changed

+31
-33
lines changed

presentation/index.js

Lines changed: 31 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -64,46 +64,42 @@ const emcee = {
6464
// get this from the latest from https://github.com/lnug/website/blob/master/data/this-month.json and add twitter details if desired
6565
const speakers = [
6666
{
67-
"apiSpeakerUrl": "https://api.github.com/users/BethGriggs",
68-
"speakerUrl": "https://github.com/BethGriggs",
69-
"title": "Building and deploying Cloud Native Node.js applications",
70-
"img": "https://avatars2.githubusercontent.com/u/8297234?v=4&s=40",
71-
"handle": "BethGriggs",
72-
"name": "Bethany Nicolle Griggs"
73-
},
74-
{
75-
"apiSpeakerUrl": "https://api.github.com/users/muttoni",
76-
"speakerUrl": "https://github.com/muttoni",
77-
"title": "Building an Alexa Skill in 20 minutes using NodeJS",
78-
"img": "https://avatars2.githubusercontent.com/u/27052451?v=4&s=40",
79-
"handle": "muttoni",
80-
"name": "Andrea Muttoni"
81-
},
82-
{
83-
"apiSpeakerUrl": "https://api.github.com/users/d4nyll",
84-
"speakerUrl": "https://github.com/d4nyll",
85-
"title": "Dockerizing JavaScript Applications",
86-
"img": "https://avatars2.githubusercontent.com/u/9997953?v=4&s=40",
87-
"handle": "d4nyll",
88-
"name": "Daniel Li"
89-
}
67+
"apiSpeakerUrl": "https://api.github.com/users/trevorah",
68+
"speakerUrl": "https://github.com/trevorah",
69+
"title": "ECMAScript Modules: They're Coming...",
70+
"description": "<p>ECMAScript modules are just around the corner, but they may not be what you expect. I&#39;ll go into the reasoning behind the change and what it means for the future of javascript.</p>\n<p>I&#39;m Andy, a full stack JS developer with a love of native apps. I&#39;m a contractor @ DAZN and my twitter handle is <code>@trevorah_</code>.</p>\n",
71+
"milestone": "November 28th 2018",
72+
"img": "https://avatars0.githubusercontent.com/u/298742?v=4&s=40",
73+
"handle": "trevorah",
74+
"name": "Andy Trevorah"
75+
},
76+
{
77+
"apiSpeakerUrl": "https://api.github.com/users/eddyerburgh",
78+
"speakerUrl": "https://github.com/eddyerburgh",
79+
"title": "Large-scale refactoring with codemods",
80+
"description": "<p>Refactoring is part of the process of maintaining an application, but large scale refactoring that are more complicated than a find and replace are time consuming. </p>\n<p>Codemods are a tool to refactor code by manipulating the abstract syntax tree (AST). In this talk I&#39;ll teach you what ASTs are, why we use ASTs in tools like Babel and eslint, and how to write a codemod that manipulates an AST.</p>\n<p><strong>About me</strong>&#10;I&#39;m a Vue core contributor, and software engineer at the BBC. <a href=\"https://twitter.com/EddYerburgh\">https://twitter.com/EddYerburgh</a></p>\n",
81+
"milestone": "November 28th 2018",
82+
"img": "https://avatars3.githubusercontent.com/u/13196123?v=4&s=40",
83+
"handle": "eddyerburgh",
84+
"name": "Edd Yerburgh"
85+
}
9086
];
9187

9288
const thisMonth = {
93-
title: "#78 - October 2018"
89+
title: "#79 - November 2018"
9490
};
9591

9692
const nextMonth = {
97-
date: "28th November 2018",
93+
date: "23rd January 2018",
9894

9995
speakers: [
10096
{
101-
name: "Edd Yerburgh",
102-
title: "Large-scale refactoring with codemods"
97+
name: "Errietta Kostala",
98+
title: "Build APIs with node, Lambda & Serverless"
10399
},
104100
{
105-
name: "?",
106-
title: "??? using NodeJS"
101+
name: "Shane Osbourne",
102+
title: "Rust for Javascript devs - your first Web Assembly App"
107103
}
108104

109105
]
@@ -236,12 +232,14 @@ export default class Presentation extends React.Component {
236232
<Image src={images.pusherLogo.replace("/", "")} margin="0px auto 40px" height="293px" />
237233
</Slide>
238234

239-
<Slide id={"halfstack-promo"}>
240-
<Fit><Image src={images.halfStackPoster.replace("/", "")} width="1000px" /></Fit>
235+
<Slide id={"cityJS-promo"}>
236+
<Heading size={3} textColor="secondary" >CityJs Conf</Heading>
237+
<Text textColor="secondary" italic margin={20}>cityjsconf.org</Text>
241238
</Slide>
242239

243-
<Slide id={"nodeconf-promo"}>
244-
<Fit><Image src={images.nodeconfPoster.replace("/", "")} width="1000px" /></Fit>
240+
<Slide id={"codefirstgirls-promo"}>
241+
<Heading size={3} textColor="secondary" >Code First Girls</Heading>
242+
<Text textColor="secondary" italic margin={20}>codefirstgirls.org.uk/become-an-instructor.html</Text>
245243
</Slide>
246244

247245
<SummarySlide id="ready"/>

0 commit comments

Comments
 (0)