This repository has been archived by the owner on Jul 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
past.html
2271 lines (1683 loc) · 121 KB
/
past.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>NottsJS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="NottsJS is a meetup for developers and anyone else interested in development. We meet every 2nd Tuesday of the month to talk about Node, JavaScript and Full Stack development in the Nottingham area.">
<meta property="og:title" content="NottsJS - Nottingham's JavaScript Meetup">
<meta property="og:type" content="website">
<meta property="og:url" content="https://nottsjs.org">
<meta property="og:image" content="https://nottsjs.org/img/logo.png">
<meta property="og:site_name" content="NottsJS - Nottingham's JavaScript Meetup">
<meta property="og:description" content="NottsJS is a meetup for developers and anyone else interested in development. We meet every 2nd Tuesday of the month to talk about Node, JavaScript and Full Stack development in the Nottingham area.">
<meta name="twitter:site" content="@nottsjs">
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="NottsJS - Nottingham's JavaScript Meetup" />
<meta name="twitter:image" content="https://nottsjs.org/img/logo.png" />
<meta name="twitter:description" content="NottsJS is a meetup for developers and anyone else interested in development. We meet every 2nd Tuesday of the month to talk about Node, JavaScript and Full Stack development in the Nottingham area.">
<meta name="twitter:url" content="https://www.nottsjs.org">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12 m4 l3 center-align">
<div class="row">
<div class="col s4 offset-s4 m12">
<img class="logo hoverable responsive-img" src="./img/logo.png" alt="NottsJS Logo" />
</div>
</div>
<div class="row">
<div class="col s10 offset-s1">
<a class="black-text" href="https://goo.gl/maps/CANG94ZcpaL2">
<address>
<i class="material-icons valign-middle">place</i>34a Stoney Street,<br />Nottingham,<br />NG1 1NB
</address>
</a>
</div>
</div>
<div class="row sponsor-images">
<div class="col s3 offset-s2 m6 offset-m3">
<a href="https://www.wearejh.com/" target="_blank"><img class="responsive-img" src="./img/jhlogo.png" /></a>
</div>
<div class="col s5 m8 offset-m2">
<a href="https://rebelrecruiters.co.uk/" target="_blank"><img class="responsive-img" src="./img/rebel-logo.png" /></a>
</div>
<div class="col s4 offset-s4 m8 offset-m2">
<a href="https://www.nearform.com/" target="_blank"><img class="responsive-img" src="./img/nflogo.gif" /></a>
</div>
</div>
<p class="light">Would you like to sponsor us? <a class="black-text" href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="col s12 m8 l9 left-align">
<div class="row">
<div class="col s12">
<h3 class="header">Past events</h3>
<h5 class="header"><a href="./">View next event</a></h5>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2019-06-11-intro-to-vue-js/">Intro to Vue.js</a></h3>
<h6 class="light">Tuesday, June 11, 2019</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyzjbpb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>This talk will cover an overview of the core features and patterns of Vue.js. We’ll see some demos that show how easy it is to get started with the framework which will show the <a href="https://vuetifyjs.com/">Vuetify</a> material component framework, and the front end testing framework <a href="https://www.cypress.io/">Cypress.io</a>.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://github.com/iancrowther.png" alt="Ian Crowther Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/iancrowther">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/iancrowther">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="http://iancrowther.co.uk">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Ian Crowther</h5>
Ian is Node.js engineer who dabbles with DevOps & Frontend. He is a big fan of keeping things simple and adopting web standards.
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2019-05-14-ui-animation-in-react/">UI Animation in React</a></h3>
<h6 class="light">Tuesday, May 14, 2019</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyzhbsb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<blockquote>
<p>This talk will be given remotely.</p>
</blockquote>
<p>Small UI animations can make a big difference in the quality and ease of use of our apps. In this talk we’ll look at ways we can approach building small, effective animations using CSS, incorporating them into a theme, and using a helpful package to make useful, consistent animation easy to build.</p>
<p>We have some prizes to give away to attendees of this event! Be sure to attend to be in with a chance of winning a free pass for <a href="https://www.udemy.com/level-up-your-css-animation-skills/">Donovan’s Udemy course</a>!</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://github.com/donovanh.png" alt="Donovan Hutchinson Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/donovanh">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/donovanh">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://hop.ie">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Donovan Hutchinson</h5>
<p>Donovan Hutchinson has been creating web pages and apps for clients for over 20 years. He writes and builds CSS animation tutorials on <a href="https://cssanimation.rocks">CSSAnimation.rocks</a>, and has been published in Net Magazine, Smashing Magazine, Adobe Inspire, Modern Web and more.</p>
<p>As well as writing for online publications, Donovan writes and publishes books on front-end development and design, with a focus on animation and user experience.</p>
<p>You can find Donovan on Twitter, and follow CSS animation news at <a href="https://twitter.com/cssanimation">@cssanimation</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2019-04-09-serverless-node-js-in-gcp/">Serverless Node.js in GCP</a></h3>
<h6 class="light">Tuesday, April 9, 2019</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyzgbmb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<blockquote>
<p>This talk will be given remotely.</p>
</blockquote>
<p>Serverless is becoming mainstream, but sometimes it is being abused more than it is being used correctly.</p>
<p>In this talk David will explain his reasons to be careful on the use cases for serverless and showcase an example on how to build a identity verification system with a single lambda on GCP, integrating with the Vision API.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars2.githubusercontent.com/u/123962" alt="David Gonzalez Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/dgonzalez">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/dagonzago">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://medium.com/@nodearth">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">David Gonzalez</h5>
David Gonzalez is a DevOps consultant who enjoys coding as much as juggling containers. He is the author of <a href="https://www.packtpub.com/networking-and-servers/implementing-modern-devops">Implementing Modern DevOps</a> and one of the organizers of <a href="https://www.meetup.com/GDG-Cloud-Dublin/">Google Developer Group in Dublin</a>. When not coding, he is walking his dogs on the emerald lands of Ireland
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2019-03-12-javascript-seo-making-search-successful/">Javascript & SEO - Making Search Successful</a></h3>
<h6 class="light">Tuesday, March 12, 2019</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyzfbqb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>Modern websites using JavaScript to render page content (such as React, Angular, Vue etc) are now so common that it’s rare to find a website without at least some sort of JavaScript modifying the DOM. This can lead to unexpected results in searches, with little or no support for your website’s rendering code.</p>
<p>Search engines such as Google have very specific support for rending your website during a crawl. Edd will run through how Googlebot works, how JavaScript websites can improve their rankings, and present some examples.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars1.githubusercontent.com/u/45422275" alt="Edd Wilson Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://twitter.com/eddjtw">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://www.impression.co.uk/">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Edd Wilson</h5>
Edd is a SEO specialist from Nottingham. He has 9 years experience in helping websites succeed organic search and has been working for Impression (an award winning agency) for 4 years. Outside of SEO, you’ll find Edd producing music, eating ramen and listening to podcasts.
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2019-02-12-securing-your-site-like-its-1999/">Securing your site like it's 1999</a></h3>
<h6 class="light">Tuesday, February 12, 2019</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyzdbqb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>Life in the early days of the web was hard. One day your HTML is disintegrating, the next you are fighting someone named “~Ninjad00d~” who has found a way to take over your forum system. Lessons in security in these days were hard learned.</p>
<p>These are the true stories from the early days of the web and how forums, chat rooms and online games were turned upside down for fun and profit. If you stick around after laughing at the misfortune of online pioneers, there will also be lessons about finding your way in a world that wants to exploit your every mistake.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars0.githubusercontent.com/u/1410204?v=4" alt="Katie Fenn Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/katiefenn">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/katie_fenn">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://www.katiefenn.co.uk/">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Katie Fenn</h5>
Katie is a senior software engineer from Sheffield.
She loves attending conferences, writing talks and building nifty things with the Web.
When not at work, you’ll most likely find her on a bike somewhere in the Peak District.
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2019-01-08-indie-what/">Indie What?</a></h3>
<h6 class="light">Tuesday, January 8, 2019</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyzcblb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>We are not in control of social networks, but we use them for most of our
interactions online. They get to decide how our content is shown, may not
provide us programmatic access to it, and try to run annoying adverts around it
(if they bother to create a “business plan”), then shut down in a couple of
years and your content is gone.</p>
<p>It can be difficult to decide to put content on websites we own because there
isn’t a ready made group of people to connect and share it with. By using
standards from the IndieWeb we can connect our personal sites with others to get
the benefits of a social network while owning our content.</p>
<p>In this talk, you’ll see how we can authenticate ourselves, share posts, reply
to and like content, and combine our personal sites with our existing social
network profiles.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars3.githubusercontent.com/u/146390?s=400&amp;v=4" alt="Joshua Hawxwell Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/hawx">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/hawx">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://hawx.me/">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Joshua Hawxwell</h5>
<p>Josh is an eccentric developer living in Nottingham with a background in mathematics and computing. He has a keen interest in many languages including JavaScript, Go, Elm and Ruby, but prefers to kick back with .NET in his day job.</p>
<p>Josh can usually be found creating small apps and tools for various personal interests such as media controls and photography - he never fails to surprise his followers on <a href="https://www.flickr.com/photos/hawx-/">Flickr</a>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2018-11-13-warriorjs-arena/">WarriorJS Arena!</a></h3>
<h6 class="light">Tuesday, November 13, 2018</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyxpbrb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<h3 id="bring-your-laptop">Bring your laptop!</h3>
<p><img src="./img/warriorjs-logo.svg" alt="WarriorJS Logo" class="responsive-img" style="background-color: rgb(32, 35, 42); padding: 20px;" /></p>
<p>This month we will be running a fun and collaborative practical session with
<a href="https://warrior.js.org/">WarriorJS</a>.</p>
<blockquote>
<p>An exciting game of programming and Artificial Intelligence</p>
</blockquote>
<p>WarriorJS is a coding challenge structured around the concept of a dungeon
crawler game where the programmer plays a warrior attempting to solve challenges
in each level.</p>
<p>Players will to take turns in each attempt at solving the current level in
<a href="https://codingdojo.org/RandoriKata/">Randori Kata</a> style, with teams of up to 4
people and one laptop rotating through the driver seat.</p>
<p>We hope you enjoy this chance to code purely for fun (sorry, no prizes!)</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars1.githubusercontent.com/u/5011956?v=4" alt="David Wood Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/Codesleuth">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/codesleuth">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://codesleuth.co.uk">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">David Wood</h5>
<p>Dave is a Software Developer at <a href="https://nearform.com">NearForm</a>, and organiser of NottsJS.</p>
<blockquote>
<p>Use more Node.js</p>
</blockquote>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2018-10-09-performance-of-images-and-video-delivery/">Performance of Images and Video Delivery</a></h3>
<h6 class="light">Tuesday, October 9, 2018</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/qhnpfqyxnbmb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>The average website page weight is 50% images and 25% video. As the images and
videos delivered to mobile devices get larger and larger, the load time of
websites gets slower and slower. Further complicating matters, there are
thousands of screens and devices with varying resolutions and CPU power that
receive this content.</p>
<p>In this talk, we’ll examine strategies to send the perfect image or video to
every device, ensuring a fast, beautiful rendering of your content. We’ll look
at how to test our content, and describe responsive images, delivering
progressive images, and finally optimizing all of this content for fast delivery
to each screen.</p>
<p>Attendees will walk away with a better understanding of how to efficiently
deliver beautiful images to every device that accesses their content.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars3.githubusercontent.com/u/1514288?v=4" alt="Doug Sillars Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/dougsillars">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/dougsillars">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://dougsillars.com/">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Doug Sillars</h5>
<p>Doug is is a freelance mobile performance expert, having helped thousands of developers speed up their mobile apps and websites.</p>
<p>A <a href="https://developers.google.com/experts/">Google Developer Expert</a> and the author of O’Reilly’s <a href="http://shop.oreilly.com/product/0636920035053.do">High Performance Android Apps</a>, Doug has spoken at developer conferences in the US and Europe, and blogs regularly on his website.</p>
<p>He is currently working as a freelance digital nomad, traveling with his family in Europe.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2018-09-11-building-bots-with-the-web-speech-api/">Building Bots with the Web Speech API</a></h3>
<h6 class="light">Tuesday, September 11, 2018</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/sfwwlpyxmbpb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>We’re entering a promising new era of computing.</p>
<p>The advance of machine learning and artificial intelligence is reviving interest
in conversational interfaces. This creates the potential for conversation as
the new mode of interaction with technology.</p>
<p>The big problem is recognizing spoken input has been mostly solved, but a new
challenge has arisen: how to build a user experience that’s modelled after
natural human conversation.</p>
<p>This talk outlines the basic mechanics of conversation, introduces core
principles to design by, and presents you with a practical UI to start creating
conversational experiences that engage, delight, and truly help your users.
We’ll also be building a voice enabled bot using JavaScript!</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars3.githubusercontent.com/u/690132?v=4" alt="Alex Lakatos Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/AlexLakatos">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/lakatos88">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="http://alexlakatos.com/">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Alex Lakatos</h5>
<p>Alex Lakatos is a JavaScript Developer Advocate for
<a href="https://www.nexmo.com/">Nexmo</a>.</p>
<p>In his spare time he volunteers at Mozilla as a Tech Speaker and a <a href="https://reps.mozilla.org/u/alex_lakatos/">Reps
Mentor</a>.</p>
<p>JavaScript developer building on the open web, he has been pushing its
boundaries every day. You can check out his github profile or get in touch on
twitter. When he’s not programming in London, he likes to travel the world,
so it’s likely you’ll bump into him in an airport lounge.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2018-08-14-node-application-performance/">Node Application Performance</a></h3>
<h6 class="light">Tuesday, August 14, 2018</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/sfwwlpyxlbsb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>We all know the benefits performance has on our users, but what are some
<em>practical</em> ways we can improve application performance?</p>
<p>In this talk, we will focus on improving performance, as well as the different
tactics on how to decrease cold starts for your serverless containers.</p>
<p>We’ll look at improving TTFB (time to first byte) responses from your express
servers, and <em>much more!</em></p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars2.githubusercontent.com/u/2934976?v=4" alt="Josh Ghent Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/joshghent">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/joshghent">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://joshghent.com/">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">Josh Ghent</h5>
<p>By day, Josh is a software developer working for <a href="https://cloudcall.com">CloudCall</a>.
By night, he plugs away on <a href="https://blog.joshghent.com">his blog</a> and open source projects.</p>
<p>He also enjoys Formula 1, learning Korean, and writing bios in the third person.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2018-07-10-warriorjs-arena/">WarriorJS Arena!</a></h3>
<h6 class="light">Tuesday, July 10, 2018</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/251694525/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p><em>Note that this event was cancelled due to attendance concerns. It will be rescheduled!</em></p>
<h3 id="bring-your-laptop">Bring your laptop!</h3>
<p>This month we will be running a fun and collaborative practical session with
<a href="https://warrior.js.org/">WarriorJS</a>.</p>
<blockquote>
<p>An exciting game of programming and Artificial Intelligence</p>
</blockquote>
<p>WarriorJS is a coding challenge structured around the concept of a dungeon
crawler game where the programmer plays a warrior attempting to solve challenges
in each level.</p>
<p>Players will to take turns in each attempt at solving the current level in
<a href="https://codingdojo.org/RandoriKata/">Randori Kata</a> style, with teams of up to 4
people and one laptop rotating through the driver seat.</p>
<p>We hope you enjoy this chance to code purely for fun (sorry, no prizes!)</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars1.githubusercontent.com/u/5011956?v=4" alt="David Wood Picture" class="circle responsive-img" />
</div>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<a href="https://github.com/Codesleuth">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://twitter.com/codesleuth">
<svg class="logo" viewBox="0 0 24 24">
<path fill="black" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"></path>
</svg>
</a>
<a href="https://codesleuth.co.uk">
<svg class="logo" viewBox="-2 -2 24 24">
<path fill="black" d="M19.175,4.856L15.138,0.82c-0.295-0.295-0.817-0.295-1.112,0L8.748,6.098c-0.307,0.307-0.307,0.805,0,1.112l1.462,1.462l-1.533,1.535L7.215,8.746c-0.307-0.307-0.805-0.307-1.112,0l-5.278,5.276c-0.307,0.307-0.307,0.805,0,1.112l4.037,4.037c0.154,0.153,0.355,0.23,0.556,0.23c0.201,0,0.403-0.077,0.556-0.23l5.28-5.276c0.148-0.148,0.23-0.347,0.23-0.556c0-0.209-0.083-0.409-0.23-0.556l-1.464-1.464l1.533-1.535l1.462,1.462c0.153,0.153,0.355,0.23,0.556,0.23c0.201,0,0.402-0.077,0.556-0.23l5.278-5.278c0.147-0.147,0.23-0.347,0.23-0.556C19.406,5.203,19.322,5.004,19.175,4.856zM9.585,13.339l-4.167,4.164l-2.925-2.925l4.166-4.164l0.906,0.905l-0.67,0.668c-0.307,0.307-0.307,0.805,0,1.112c0.154,0.153,0.356,0.23,0.556,0.23c0.203,0,0.403-0.077,0.556-0.23l0.67-0.668L9.585,13.339z M13.341,9.578l-0.906-0.906l0.663-0.662c0.307-0.307,0.307-0.805,0-1.112c-0.307-0.307-0.805-0.307-1.112,0L11.322,7.56l-0.906-0.906l4.166-4.166l2.925,2.925L13.341,9.578z"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col s12 m8 l9">
<h5 class="title">David Wood</h5>
<p>Dave is a Software Developer at <a href="https://nearform.com">nearForm</a>,
and an organiser of NottsJS.</p>
<blockquote>
<p>Use more Node.js</p>
</blockquote>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel talk">
<h3 class="header light"><a href="./events/2018-06-12-saving-the-world-with-json-schema/">Saving the World with JSON Schema!</a></h3>
<h6 class="light">Tuesday, June 12, 2018</h6>
<a class="btn waves-effect waves-light yellow black-text top-button" href="https://www.meetup.com/NottsJS/events/sfwwlpyxjbqb/">
View on Meetup<i class="material-icons left">reply</i>
</a>
<div class="flow-text">
<p>This month’s speaker is Rob from
<a href="http://opendataservices.coop/">opendataservices.coop</a>, a tech cooperative which
helps people and organisations publish and use open data in a variety of fields
from international development, government procurement, to philanthropy.</p>
<p>The goal is to help organisations have an impact on the world - to make taxes go
further, to stop corruption, increase the effectiveness of aid, and to help make
sure that charity money goes where it’s needed most.</p>
<p>Underpinning all of this JSON Schema (and some XML Schema, if you dig around the
back of the closet).</p>
<p>In this talk we’ll hear from Rob about how cooperatives are awesome, what open
data is, and why it’s such a good thing. We will see some examples of where
standardised open data has improved lives, and learn about the open data of
Nottingham.</p>
</div>
<hr />
<div class="row profile">
<div class="col s12 m4 l3">
<div class="row">
<div class="col s8 offset-s2">
<div class="avatar">
<img src="https://avatars0.githubusercontent.com/u/641009?s=400&amp;v=4" alt="Rob Redpath Picture" class="circle responsive-img" />
</div>