Skip to content

Commit 204565d

Browse files
committed
may 2017 talks + synposes
1 parent d6dd4e4 commit 204565d

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

data/twitter.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"sstur_": {
8787
"username": "sstur_",
8888
"name": "Simon Sturmer",
89-
"description": "Purveyor of fine JS. React enthusiast. Founder at @KodeFox. Previously an engineer at Facebook.",
89+
"description": "Purveyor of fine JS. React enthusiast. Founder & CTO @KodeFox. Previously an engineer at Facebook.",
9090
"profileImage": "https://pbs.twimg.com/profile_images/2668960560/1e8b008aa1abacb201a7e466e17a8487_normal.jpeg",
9191
"url": "https://t.co/4o7aeX00tS"
9292
},
@@ -260,7 +260,7 @@
260260
},
261261
"pori_alex": {
262262
"username": "pori_alex",
263-
"name": "Alexander Hernandez",
263+
"name": "Alex Hernandez",
264264
"description": "Programmer. Amateur cook. 道 (Taoist). @pori on GitHub, Medium.",
265265
"profileImage": "https://pbs.twimg.com/profile_images/852293293635280897/_6LEppei_normal.jpg",
266266
"url": null
@@ -334,5 +334,12 @@
334334
"description": "",
335335
"profileImage": "https://pbs.twimg.com/profile_images/670846299617423360/UuGlEQiM_normal.jpg",
336336
"url": "https://t.co/Ge9lGZ6P6p"
337+
},
338+
"joshduck": {
339+
"username": "joshduck",
340+
"name": "josh🦆",
341+
"description": "Frontend web stuff. JavaScript, Node, React, Relay. Team lead at @ABCaustralia.",
342+
"profileImage": "https://pbs.twimg.com/profile_images/1248761620/27700_511032456790_208900213_486013_8291152_n_normal.jpg",
343+
"url": "https://t.co/IFJDtc1bSv"
337344
}
338345
}

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ <h2>Social Drinks</h2>
293293
<div class="ui grid {{className}}">
294294
<div class="four wide column">
295295
<h2>{{dateHuman}} Meetup</h2>
296-
<p>There were {{talks.length}} at the {{dateHuman}} meetup.</p>
296+
<p>There were {{talks.length}} talks at the {{dateHuman}} meetup.</p>
297297
</div>
298298
<div class="twelve wide column">
299299
<div class="ui link cards">

lib/tsvTalks.js

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ function parseTsv(tsv, twitterData){
4444
youtube: parseYoutube(row[5]),
4545
slides: row[6] && row[6].trim(),
4646
code: row[7] && row[7].trim(),
47+
synopsis: row[8],
4748
}));
4849
}
4950
function getUniqueUsers(data){

templates/talk.hbs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<div class="ui text container center aligned vertical stripe segment">
22
<h2 class="ui header">{{title}}</h2>
33
<p>A talk at the {{dateHuman}} BrisJS meetup</p>
4+
{{#if synopsis}}<p>{{synopsis}}</p>{{/if}}
45
</div>
56

67
<div class="ui vertical stripe segment">

0 commit comments

Comments
 (0)