-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakers.html
1211 lines (1099 loc) · 83.3 KB
/
speakers.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 class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Speakers · PHPSW · South West UK PHP User Group</title>
<meta name="description" content="PHP User Group, meets 2nd Wednesday of every month, in Bristol, UK, talking PHP and related technologies.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:site_name" content="PHPSW">
<meta property="og:type" content="website">
<meta property="og:url" content="https://phpsw.uk/speakers">
<meta property="og:title" content="Speakers">
<meta property="og:description" content="PHP User Group, meets 2nd Wednesday of every month, in Bristol, UK, talking PHP and related technologies.">
<meta property="og:image" content="https://images.phpsw.uk/SwItNmMEEPLtx9y_mNgXVg-5XiA=/1200x400/http://photos1.meetupstatic.com/photos/event/6/a/f/0/highres_434247376.jpeg"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://phpsw.uk/speakers">
<meta name="twitter:title" content="Speakers">
<meta name="twitter:description" content="PHP User Group, meets 2nd Wednesday of every month, in Bristol, UK, talking PHP and related technologies.">
<meta name="twitter:image" content="https://images.phpsw.uk/SwItNmMEEPLtx9y_mNgXVg-5XiA=/1200x400/http://photos1.meetupstatic.com/photos/event/6/a/f/0/highres_434247376.jpeg">
<meta name="twitter:site" content="@phpsw">
<meta name="twitter:creator" content="@phpsw">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="shortcut icon" href="https://phpsw.uk/favicon.ico">
<link rel="canonical" href="speakers">
<link rel="stylesheet" href="rev/201702092252/css/vendor.css">
<link rel="stylesheet" href="rev/201702092252/css/main.css">
</head>
<body>
<header class="header">
<div class="container">
<h1>
<a href="index">
<span class="sr-only">PHPSW</span>
<svg xmlns="http://www.w3.org/2000/svg" class="logo logo--global" preserveAspectRatio="xMidYMid meet" viewBox="0 0 436 212">
<path class="logo__php" d="M86.574997 69.474998l-46.018997 0l-19.9 100.743996l23.630999 0l4.975002 -26.118988l22.388 0c21.143997 1.2 44.8 -16.2 44.8 -46.019005c0.000999 -17.4 -9.9 -27.4 -29.8 -28.606003zm-17.412994 55.968002l-14.925003 0l6.219002 -37.312004l16.168999 0c8.706001 0 14.9 3.7 14.9 11.194c-1.243004 21.1 -11.2 24.9 -22.4 26.118004z M111.962997 144.100006l19.899002 -100.742996l23.632004 0l-4.975998 26.119003l22.388 0c19.899994 1.2 27.4 11.2 24.9 23.630997l-8.706009 50.992996l-24.875 0l8.706009 -46.018997c1.243988 -6.2 1.2 -9.9 -7.5 -9.949997l-18.655991 0l-11.193008 55.968994l-23.630997 0z M255.237 69.474998l-46.018997 0l-19.900009 100.743996l23.632004 0l4.975006 -26.118988l22.388 0c21.143997 1.2 44.8 -16.2 44.8 -46.019005c0 -17.4 -10 -27.4 -29.9 -28.606003zm-17.412003 55.968002l-14.925003 0l6.218994 -37.312004l16.167999 0c8.707001 0 14.9 3.7 14.9 11.194c-1.243988 21.1 -11.2 24.9 -22.4 26.118004z" fill="#1E1E1E"/>
<g class="logo__sw">
<path class="logo__sw__rhomboid" d="M414.498169 142.375l-115.998169 0l12.5 -75l116 0" fill="#2A8EBD"/>
<path class="logo__sw__text" d="M317.558777 118.025002c2.764008 1.7 6.6 3 11 2.971001c3.800018 0 7.3 -1.8 7.3 -5.389c0 -2.7 -2 -4.4 -6.3 -6.633003c-4.904999 -2.6 -9.6 -6.4 -9.6 -12.367996c0 -9.4 8.2 -15.1 18.3 -15.131004c5.597015 0 8.9 1.2 10.9 2.279999l-3.108002 8.291c-1.520996 -0.8 -4.8 -2.1 -8.6 -2.003998c-4.629028 0 -7 2.3 -7 4.836998c0 2.8 2.8 4.4 6.8 6.633003c5.665009 3 9.2 6.8 9.2 12.366997c0 10.4 -8.6 15.7 -18.9 15.684006c-6.425995 -0.1 -11.1 -1.7 -13.3 -3.316002l3.317993 -8.222z M357.56076 128.804001l-1.79599 -46.568001l10.087006 0l0 20.727997c0 5.7 -0.1 10.9 -0.3 15.131004l0.138 0c1.65802 -4.6 3.3 -9.3 5.5 -14.993004l8.360016 -20.865997l10.916992 0l-0.139008 20.795998c-0.069 5.6 -0.2 10.2 -0.5 14.786003l0.138 0c1.589996 -4.8 3.3 -9.8 5.2 -14.854004l8.015991 -20.727997l10.502014 0l-20.520996 46.568001l-10.848999 0l-0.276001 -19.069c-0.069 -5.5 0.1 -10.2 0.3 -15.476997l-0.139008 0c-1.65799 5 -3.3 10 -5.6 15.683998l-8.015991 18.862l-11.054016 0z" fill="white"/>
</g>
</svg>
</a>
</h1>
<div class="balloons">
<svg xmlns="http://www.w3.org/2000/svg" class="balloon balloon--small" fill="#1E1E1E" viewBox="0 0 1015 1268" preserveAspectRatio="xMidYMid meet">
<path d="M289.5 18.6 c-19 4.2 -32.6 13.1 -62.9 41.2l-13 11.9 -7 1.3c-12.4 2.2 -33.7 7.7 -46.1 12 -24.2 8.4 -43.3 19.2 -57.9 33.1 -21.6 20.4 -32.9 44.6 -38 81.7 -3.3 23.7 -3.7 48.5 -3.4 229.2l0.3 178.5 2.3 5.8c3.4 8.4 11.7 16.9 20.6 21.1 10.2 4.9 19.7 6.7 34.6 6.7 22.2 -0 37.1 -5 47.3 -16 6.9 -7.5 9.7 -14.4 10.6 -26.6 0.8 -10.3 0.6 -10.7 5.1 13.7 1.6 9.3 4.4 24.2 6 33.3 1.7 9.1 4.4 23.9 6 33 1.7 9.1 4.4 23.9 6 33 1.7 9.1 4.3 23.8 6 32.7 8.9 48.5 33 182.2 33 182.9 0 0.5 -8.2 0.9 -18.2 0.9 -20.4 -0 -22 0.4 -27.2 7.3 -2.3 2.9 -2.6 4.3 -2.6 10.8 0 8 1.2 10.9 6.2 14.9 5.1 3.9 9.3 5 19.7 5l10 -0 0.5 3.2c0.7 4.2 3 23.4 5.6 45.8 1 9.6 3.3 29 4.9 43 8.1 68.3 11.3 95.6 12.6 108 0.9 7.4 2.2 18.7 3 25 0.8 6.3 2.4 19.8 3.5 30 1.1 10.2 2.2 19.5 2.5 20.8l0.5 2.2 216.6 -0c172.3 -0 216.5 -0.3 216.8 -1.3 0.5 -1.8 4.5 -34.9 6.2 -51.2 0.8 -7.7 2.1 -18.7 2.9 -24.5 0.8 -5.8 2.2 -17 3 -25 0.8 -8 2.2 -19.5 3 -25.5 0.8 -6.1 2.1 -17.3 3 -25 0.8 -7.7 2.4 -21.2 3.5 -30 3.4 -27.6 11 -92.6 11 -94.5 0 -0.6 3.4 -1 9 -1 10.2 -0 13.3 -1.1 19.3 -6.8l3.7 -3.6 0 -9.1c0 -9 0 -9.1 -3.2 -12.1 -6.5 -6 -7.8 -6.4 -20.3 -6.4l-11.5 -0 0 -2.7c0 -1.5 1.4 -10.8 3 -20.7 5.3 -31.5 8.8 -52.5 12 -72.1 1.7 -10.5 4.2 -25.5 5.5 -33.5 1.3 -8 4 -24.4 6 -36.5 2 -12.1 4.7 -28.5 6 -36.5 6.4 -38.1 7.7 -46.2 9.1 -55.5 0.8 -5.5 1.6 -10.5 1.8 -11.1 0.2 -0.6 4.4 -1.4 9.6 -1.7 25.4 -1.8 51 -10.6 65.2 -22.4 10.3 -8.5 16.6 -18.4 19.9 -31 1.8 -7.3 1.9 -12.1 1.9 -125.9l0 -118.2 3.4 -8.8c3.7 -9.6 6.6 -20.4 8.8 -32.4 1.7 -9.8 1.7 -51.2 0 -63.5 -4 -28.5 -11.3 -53 -22.2 -75.4l-6.9 -14.1 22.7 -0 22.8 -0 4.9 5.1c11 11.2 31.5 22.7 44.7 25 8.1 1.3 18.3 0.2 24.1 -2.7 4.1 -2.1 9.5 -7.1 11.4 -10.7 1.4 -2.7 2 -12.7 0.9 -14.5 -0.2 -0.4 2.4 -2.1 5.9 -3.6 7.9 -3.4 15 -10.6 16.1 -16.1 1.9 -10.1 -7.1 -20 -22.3 -24.5 -4 -1.2 -4.3 -1.6 -4.3 -4.9 0 -8.9 -5.1 -16.5 -13.6 -20.2 -8.8 -3.9 -22.3 -3.4 -33.1 1.2 -7.4 3.2 -18.2 10.9 -26.7 19.1l-7.9 7.8 -37.4 -0 -37.4 -0 -8.7 -7.8c-17.6 -15.7 -30.5 -24.4 -51.7 -34.8 -16.4 -8 -32.7 -13.9 -50.5 -18.4 -27.3 -6.9 -44.8 -9 -81 -9.7 -28 -0.6 -151.9 1.2 -160.5 2.3 -4.1 0.5 -4.1 0.5 -10.4 -7.6 -10.9 -13.8 -25.2 -23.8 -41.6 -29 -5.2 -1.7 -10.3 -2.4 -20 -2.7 -15.2 -0.6 -22.8 0.7 -36.4 6.2l-9 3.6 -6.8 -3.5c-11.5 -5.7 -19.5 -7.8 -32.3 -8.2 -8 -0.3 -13.6 0.1 -18.5 1.2zm-37.8 369.4l2.2 -0 0.4 91.7c0.3 101.2 0 96.1 6.7 109.2 10 19.9 32 33.5 63.6 39.3 5.8 1 6.8 1.6 10 5.5 1.9 2.3 3.7 5.8 4 7.5 0.2 1.8 1.8 13.6 3.4 26.3 1.7 12.6 4.4 33 6 45.2 1.7 12.3 4.3 32.3 5.9 44.5 1.7 12.3 4.1 30.8 5.5 41.3 1.5 10.4 3.2 24.2 4 30.5 0.8 6.3 3.7 28.4 6.5 49 2.8 20.6 5.3 40.3 5.7 43.8l0.7 6.2 -52.6 -0c-41.8 -0 -52.6 -0.3 -53 -1.3 -0.3 -0.7 -1.2 -6 -2.2 -11.7 -0.9 -5.8 -2.7 -16.4 -4 -23.5 -1.3 -7.2 -2.6 -15 -3 -17.5 -0.3 -2.5 -1.9 -11.9 -3.5 -21 -1.6 -9.1 -4.3 -24.8 -6 -35 -1.7 -10.2 -4.2 -24.8 -5.6 -32.5 -1.3 -7.7 -3 -17.8 -3.8 -22.5 -1.7 -10.3 -4.7 -27.7 -8.7 -51 -1.6 -9.6 -4.1 -24.3 -5.5 -32.5 -1.4 -8.3 -3.8 -22.4 -5.4 -31.5 -5.2 -30.2 -9 -52.4 -10.5 -61.5 -0.8 -5 -3.1 -18.2 -5.1 -29.5 -2 -11.3 -3.7 -22.5 -3.9 -25 -0.6 -8.5 -11.6 -67.5 -13.2 -70.8 -1.5 -2.9 -1.5 -4.5 -0.5 -13.3 3.7 -31.4 14.5 -49.9 33.5 -57.1 5.6 -2.1 17.5 -3.8 22.7 -3.2 1.9 0.2 4.5 0.4 5.7 0.4zm309.3 98c5.2 0.5 10 1 10.7 1 0.9 -0 1.3 11.1 1.6 43.7 0.4 46.4 0.5 47.2 5.5 58.7 1.2 2.6 3.8 7.1 5.9 9.9l3.7 5 -1.7 15.1c-1 8.3 -3.1 26.3 -4.7 40.1 -1.6 13.7 -4.3 36.6 -6 50.7 -11.3 96 -14.4 122.4 -18.1 154.3 -1.7 14.3 -4.1 34.3 -5.2 44.5l-2.2 18.5 -71.7 0.3c-39.5 0.1 -71.8 -0 -71.8 -0.3 0 -0.2 -0.6 -5.3 -1.4 -11.2 -0.8 -5.9 -1.8 -13.7 -2.1 -17.3 -0.4 -3.6 -1.9 -17.1 -3.5 -30 -1.6 -12.9 -4.3 -35.7 -6 -50.5 -1.7 -14.9 -4.2 -35.6 -5.5 -46 -1.3 -10.5 -2.7 -22.2 -3 -26 -0.4 -3.9 -1.7 -15.1 -3 -25 -1.3 -9.9 -2.6 -21.4 -3 -25.5 -0.4 -4.1 -1.5 -13.8 -2.6 -21.4 -2.6 -19.2 -2.9 -17.7 3.4 -16 14.6 3.8 25.9 4.9 52.2 4.9 22.4 -0 27.7 -0.4 38.4 -2.3 24.9 -4.5 43 -12.4 55.1 -24.2 7.3 -7.1 11 -12.7 14.9 -22.9l2.6 -6.6 0.3 -61.8 0.3 -61.9 3.7 0.6c2 0.4 8 1.1 13.2 1.6zm69.3 141.5c2.9 0.8 10.2 2.3 16.4 3.4 9.9 1.7 11.7 2.3 15.5 5.4 13 10.6 36.7 18.7 62.2 21.3 7.6 0.8 7.3 0.1 5.1 12.5 -1.5 8.8 -6.9 40.6 -15.5 91.4 -10.1 59.4 -15 88.6 -21.5 126.7 -3.6 21.2 -6.5 38.9 -6.5 39.2 0 0.3 -23 0.6 -51.1 0.6 -48.1 -0 -51 -0.1 -50.5 -1.8 0.3 -0.9 1 -6.4 1.6 -12.2 0.7 -5.8 2.2 -18.8 3.5 -29 1.3 -10.2 2.7 -21.2 3 -24.5 0.6 -5.7 3.3 -27.7 9 -73 4.6 -36.3 7.5 -60.8 9.5 -78 1.1 -9.4 2.6 -21.7 3.4 -27.5 0.8 -5.8 1.8 -13.4 2.1 -17 0.8 -8.2 4.4 -34.7 5.1 -37.8 0.3 -1.6 1 -2.2 2 -1.8 0.8 0.3 3.8 1.2 6.7 2.1z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="balloon balloon--large" fill="#1E1E1E" viewBox="0 0 1015 1268" preserveAspectRatio="xMidYMid meet">
<path d="M289.5 18.6 c-19 4.2 -32.6 13.1 -62.9 41.2l-13 11.9 -7 1.3c-12.4 2.2 -33.7 7.7 -46.1 12 -24.2 8.4 -43.3 19.2 -57.9 33.1 -21.6 20.4 -32.9 44.6 -38 81.7 -3.3 23.7 -3.7 48.5 -3.4 229.2l0.3 178.5 2.3 5.8c3.4 8.4 11.7 16.9 20.6 21.1 10.2 4.9 19.7 6.7 34.6 6.7 22.2 -0 37.1 -5 47.3 -16 6.9 -7.5 9.7 -14.4 10.6 -26.6 0.8 -10.3 0.6 -10.7 5.1 13.7 1.6 9.3 4.4 24.2 6 33.3 1.7 9.1 4.4 23.9 6 33 1.7 9.1 4.4 23.9 6 33 1.7 9.1 4.3 23.8 6 32.7 8.9 48.5 33 182.2 33 182.9 0 0.5 -8.2 0.9 -18.2 0.9 -20.4 -0 -22 0.4 -27.2 7.3 -2.3 2.9 -2.6 4.3 -2.6 10.8 0 8 1.2 10.9 6.2 14.9 5.1 3.9 9.3 5 19.7 5l10 -0 0.5 3.2c0.7 4.2 3 23.4 5.6 45.8 1 9.6 3.3 29 4.9 43 8.1 68.3 11.3 95.6 12.6 108 0.9 7.4 2.2 18.7 3 25 0.8 6.3 2.4 19.8 3.5 30 1.1 10.2 2.2 19.5 2.5 20.8l0.5 2.2 216.6 -0c172.3 -0 216.5 -0.3 216.8 -1.3 0.5 -1.8 4.5 -34.9 6.2 -51.2 0.8 -7.7 2.1 -18.7 2.9 -24.5 0.8 -5.8 2.2 -17 3 -25 0.8 -8 2.2 -19.5 3 -25.5 0.8 -6.1 2.1 -17.3 3 -25 0.8 -7.7 2.4 -21.2 3.5 -30 3.4 -27.6 11 -92.6 11 -94.5 0 -0.6 3.4 -1 9 -1 10.2 -0 13.3 -1.1 19.3 -6.8l3.7 -3.6 0 -9.1c0 -9 0 -9.1 -3.2 -12.1 -6.5 -6 -7.8 -6.4 -20.3 -6.4l-11.5 -0 0 -2.7c0 -1.5 1.4 -10.8 3 -20.7 5.3 -31.5 8.8 -52.5 12 -72.1 1.7 -10.5 4.2 -25.5 5.5 -33.5 1.3 -8 4 -24.4 6 -36.5 2 -12.1 4.7 -28.5 6 -36.5 6.4 -38.1 7.7 -46.2 9.1 -55.5 0.8 -5.5 1.6 -10.5 1.8 -11.1 0.2 -0.6 4.4 -1.4 9.6 -1.7 25.4 -1.8 51 -10.6 65.2 -22.4 10.3 -8.5 16.6 -18.4 19.9 -31 1.8 -7.3 1.9 -12.1 1.9 -125.9l0 -118.2 3.4 -8.8c3.7 -9.6 6.6 -20.4 8.8 -32.4 1.7 -9.8 1.7 -51.2 0 -63.5 -4 -28.5 -11.3 -53 -22.2 -75.4l-6.9 -14.1 22.7 -0 22.8 -0 4.9 5.1c11 11.2 31.5 22.7 44.7 25 8.1 1.3 18.3 0.2 24.1 -2.7 4.1 -2.1 9.5 -7.1 11.4 -10.7 1.4 -2.7 2 -12.7 0.9 -14.5 -0.2 -0.4 2.4 -2.1 5.9 -3.6 7.9 -3.4 15 -10.6 16.1 -16.1 1.9 -10.1 -7.1 -20 -22.3 -24.5 -4 -1.2 -4.3 -1.6 -4.3 -4.9 0 -8.9 -5.1 -16.5 -13.6 -20.2 -8.8 -3.9 -22.3 -3.4 -33.1 1.2 -7.4 3.2 -18.2 10.9 -26.7 19.1l-7.9 7.8 -37.4 -0 -37.4 -0 -8.7 -7.8c-17.6 -15.7 -30.5 -24.4 -51.7 -34.8 -16.4 -8 -32.7 -13.9 -50.5 -18.4 -27.3 -6.9 -44.8 -9 -81 -9.7 -28 -0.6 -151.9 1.2 -160.5 2.3 -4.1 0.5 -4.1 0.5 -10.4 -7.6 -10.9 -13.8 -25.2 -23.8 -41.6 -29 -5.2 -1.7 -10.3 -2.4 -20 -2.7 -15.2 -0.6 -22.8 0.7 -36.4 6.2l-9 3.6 -6.8 -3.5c-11.5 -5.7 -19.5 -7.8 -32.3 -8.2 -8 -0.3 -13.6 0.1 -18.5 1.2zm-37.8 369.4l2.2 -0 0.4 91.7c0.3 101.2 0 96.1 6.7 109.2 10 19.9 32 33.5 63.6 39.3 5.8 1 6.8 1.6 10 5.5 1.9 2.3 3.7 5.8 4 7.5 0.2 1.8 1.8 13.6 3.4 26.3 1.7 12.6 4.4 33 6 45.2 1.7 12.3 4.3 32.3 5.9 44.5 1.7 12.3 4.1 30.8 5.5 41.3 1.5 10.4 3.2 24.2 4 30.5 0.8 6.3 3.7 28.4 6.5 49 2.8 20.6 5.3 40.3 5.7 43.8l0.7 6.2 -52.6 -0c-41.8 -0 -52.6 -0.3 -53 -1.3 -0.3 -0.7 -1.2 -6 -2.2 -11.7 -0.9 -5.8 -2.7 -16.4 -4 -23.5 -1.3 -7.2 -2.6 -15 -3 -17.5 -0.3 -2.5 -1.9 -11.9 -3.5 -21 -1.6 -9.1 -4.3 -24.8 -6 -35 -1.7 -10.2 -4.2 -24.8 -5.6 -32.5 -1.3 -7.7 -3 -17.8 -3.8 -22.5 -1.7 -10.3 -4.7 -27.7 -8.7 -51 -1.6 -9.6 -4.1 -24.3 -5.5 -32.5 -1.4 -8.3 -3.8 -22.4 -5.4 -31.5 -5.2 -30.2 -9 -52.4 -10.5 -61.5 -0.8 -5 -3.1 -18.2 -5.1 -29.5 -2 -11.3 -3.7 -22.5 -3.9 -25 -0.6 -8.5 -11.6 -67.5 -13.2 -70.8 -1.5 -2.9 -1.5 -4.5 -0.5 -13.3 3.7 -31.4 14.5 -49.9 33.5 -57.1 5.6 -2.1 17.5 -3.8 22.7 -3.2 1.9 0.2 4.5 0.4 5.7 0.4zm309.3 98c5.2 0.5 10 1 10.7 1 0.9 -0 1.3 11.1 1.6 43.7 0.4 46.4 0.5 47.2 5.5 58.7 1.2 2.6 3.8 7.1 5.9 9.9l3.7 5 -1.7 15.1c-1 8.3 -3.1 26.3 -4.7 40.1 -1.6 13.7 -4.3 36.6 -6 50.7 -11.3 96 -14.4 122.4 -18.1 154.3 -1.7 14.3 -4.1 34.3 -5.2 44.5l-2.2 18.5 -71.7 0.3c-39.5 0.1 -71.8 -0 -71.8 -0.3 0 -0.2 -0.6 -5.3 -1.4 -11.2 -0.8 -5.9 -1.8 -13.7 -2.1 -17.3 -0.4 -3.6 -1.9 -17.1 -3.5 -30 -1.6 -12.9 -4.3 -35.7 -6 -50.5 -1.7 -14.9 -4.2 -35.6 -5.5 -46 -1.3 -10.5 -2.7 -22.2 -3 -26 -0.4 -3.9 -1.7 -15.1 -3 -25 -1.3 -9.9 -2.6 -21.4 -3 -25.5 -0.4 -4.1 -1.5 -13.8 -2.6 -21.4 -2.6 -19.2 -2.9 -17.7 3.4 -16 14.6 3.8 25.9 4.9 52.2 4.9 22.4 -0 27.7 -0.4 38.4 -2.3 24.9 -4.5 43 -12.4 55.1 -24.2 7.3 -7.1 11 -12.7 14.9 -22.9l2.6 -6.6 0.3 -61.8 0.3 -61.9 3.7 0.6c2 0.4 8 1.1 13.2 1.6zm69.3 141.5c2.9 0.8 10.2 2.3 16.4 3.4 9.9 1.7 11.7 2.3 15.5 5.4 13 10.6 36.7 18.7 62.2 21.3 7.6 0.8 7.3 0.1 5.1 12.5 -1.5 8.8 -6.9 40.6 -15.5 91.4 -10.1 59.4 -15 88.6 -21.5 126.7 -3.6 21.2 -6.5 38.9 -6.5 39.2 0 0.3 -23 0.6 -51.1 0.6 -48.1 -0 -51 -0.1 -50.5 -1.8 0.3 -0.9 1 -6.4 1.6 -12.2 0.7 -5.8 2.2 -18.8 3.5 -29 1.3 -10.2 2.7 -21.2 3 -24.5 0.6 -5.7 3.3 -27.7 9 -73 4.6 -36.3 7.5 -60.8 9.5 -78 1.1 -9.4 2.6 -21.7 3.4 -27.5 0.8 -5.8 1.8 -13.4 2.1 -17 0.8 -8.2 4.4 -34.7 5.1 -37.8 0.3 -1.6 1 -2.2 2 -1.8 0.8 0.3 3.8 1.2 6.7 2.1z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="balloon balloon--medium" fill="#1E1E1E" viewBox="0 0 1015 1268" preserveAspectRatio="xMidYMid meet">
<path d="M289.5 18.6 c-19 4.2 -32.6 13.1 -62.9 41.2l-13 11.9 -7 1.3c-12.4 2.2 -33.7 7.7 -46.1 12 -24.2 8.4 -43.3 19.2 -57.9 33.1 -21.6 20.4 -32.9 44.6 -38 81.7 -3.3 23.7 -3.7 48.5 -3.4 229.2l0.3 178.5 2.3 5.8c3.4 8.4 11.7 16.9 20.6 21.1 10.2 4.9 19.7 6.7 34.6 6.7 22.2 -0 37.1 -5 47.3 -16 6.9 -7.5 9.7 -14.4 10.6 -26.6 0.8 -10.3 0.6 -10.7 5.1 13.7 1.6 9.3 4.4 24.2 6 33.3 1.7 9.1 4.4 23.9 6 33 1.7 9.1 4.4 23.9 6 33 1.7 9.1 4.3 23.8 6 32.7 8.9 48.5 33 182.2 33 182.9 0 0.5 -8.2 0.9 -18.2 0.9 -20.4 -0 -22 0.4 -27.2 7.3 -2.3 2.9 -2.6 4.3 -2.6 10.8 0 8 1.2 10.9 6.2 14.9 5.1 3.9 9.3 5 19.7 5l10 -0 0.5 3.2c0.7 4.2 3 23.4 5.6 45.8 1 9.6 3.3 29 4.9 43 8.1 68.3 11.3 95.6 12.6 108 0.9 7.4 2.2 18.7 3 25 0.8 6.3 2.4 19.8 3.5 30 1.1 10.2 2.2 19.5 2.5 20.8l0.5 2.2 216.6 -0c172.3 -0 216.5 -0.3 216.8 -1.3 0.5 -1.8 4.5 -34.9 6.2 -51.2 0.8 -7.7 2.1 -18.7 2.9 -24.5 0.8 -5.8 2.2 -17 3 -25 0.8 -8 2.2 -19.5 3 -25.5 0.8 -6.1 2.1 -17.3 3 -25 0.8 -7.7 2.4 -21.2 3.5 -30 3.4 -27.6 11 -92.6 11 -94.5 0 -0.6 3.4 -1 9 -1 10.2 -0 13.3 -1.1 19.3 -6.8l3.7 -3.6 0 -9.1c0 -9 0 -9.1 -3.2 -12.1 -6.5 -6 -7.8 -6.4 -20.3 -6.4l-11.5 -0 0 -2.7c0 -1.5 1.4 -10.8 3 -20.7 5.3 -31.5 8.8 -52.5 12 -72.1 1.7 -10.5 4.2 -25.5 5.5 -33.5 1.3 -8 4 -24.4 6 -36.5 2 -12.1 4.7 -28.5 6 -36.5 6.4 -38.1 7.7 -46.2 9.1 -55.5 0.8 -5.5 1.6 -10.5 1.8 -11.1 0.2 -0.6 4.4 -1.4 9.6 -1.7 25.4 -1.8 51 -10.6 65.2 -22.4 10.3 -8.5 16.6 -18.4 19.9 -31 1.8 -7.3 1.9 -12.1 1.9 -125.9l0 -118.2 3.4 -8.8c3.7 -9.6 6.6 -20.4 8.8 -32.4 1.7 -9.8 1.7 -51.2 0 -63.5 -4 -28.5 -11.3 -53 -22.2 -75.4l-6.9 -14.1 22.7 -0 22.8 -0 4.9 5.1c11 11.2 31.5 22.7 44.7 25 8.1 1.3 18.3 0.2 24.1 -2.7 4.1 -2.1 9.5 -7.1 11.4 -10.7 1.4 -2.7 2 -12.7 0.9 -14.5 -0.2 -0.4 2.4 -2.1 5.9 -3.6 7.9 -3.4 15 -10.6 16.1 -16.1 1.9 -10.1 -7.1 -20 -22.3 -24.5 -4 -1.2 -4.3 -1.6 -4.3 -4.9 0 -8.9 -5.1 -16.5 -13.6 -20.2 -8.8 -3.9 -22.3 -3.4 -33.1 1.2 -7.4 3.2 -18.2 10.9 -26.7 19.1l-7.9 7.8 -37.4 -0 -37.4 -0 -8.7 -7.8c-17.6 -15.7 -30.5 -24.4 -51.7 -34.8 -16.4 -8 -32.7 -13.9 -50.5 -18.4 -27.3 -6.9 -44.8 -9 -81 -9.7 -28 -0.6 -151.9 1.2 -160.5 2.3 -4.1 0.5 -4.1 0.5 -10.4 -7.6 -10.9 -13.8 -25.2 -23.8 -41.6 -29 -5.2 -1.7 -10.3 -2.4 -20 -2.7 -15.2 -0.6 -22.8 0.7 -36.4 6.2l-9 3.6 -6.8 -3.5c-11.5 -5.7 -19.5 -7.8 -32.3 -8.2 -8 -0.3 -13.6 0.1 -18.5 1.2zm-37.8 369.4l2.2 -0 0.4 91.7c0.3 101.2 0 96.1 6.7 109.2 10 19.9 32 33.5 63.6 39.3 5.8 1 6.8 1.6 10 5.5 1.9 2.3 3.7 5.8 4 7.5 0.2 1.8 1.8 13.6 3.4 26.3 1.7 12.6 4.4 33 6 45.2 1.7 12.3 4.3 32.3 5.9 44.5 1.7 12.3 4.1 30.8 5.5 41.3 1.5 10.4 3.2 24.2 4 30.5 0.8 6.3 3.7 28.4 6.5 49 2.8 20.6 5.3 40.3 5.7 43.8l0.7 6.2 -52.6 -0c-41.8 -0 -52.6 -0.3 -53 -1.3 -0.3 -0.7 -1.2 -6 -2.2 -11.7 -0.9 -5.8 -2.7 -16.4 -4 -23.5 -1.3 -7.2 -2.6 -15 -3 -17.5 -0.3 -2.5 -1.9 -11.9 -3.5 -21 -1.6 -9.1 -4.3 -24.8 -6 -35 -1.7 -10.2 -4.2 -24.8 -5.6 -32.5 -1.3 -7.7 -3 -17.8 -3.8 -22.5 -1.7 -10.3 -4.7 -27.7 -8.7 -51 -1.6 -9.6 -4.1 -24.3 -5.5 -32.5 -1.4 -8.3 -3.8 -22.4 -5.4 -31.5 -5.2 -30.2 -9 -52.4 -10.5 -61.5 -0.8 -5 -3.1 -18.2 -5.1 -29.5 -2 -11.3 -3.7 -22.5 -3.9 -25 -0.6 -8.5 -11.6 -67.5 -13.2 -70.8 -1.5 -2.9 -1.5 -4.5 -0.5 -13.3 3.7 -31.4 14.5 -49.9 33.5 -57.1 5.6 -2.1 17.5 -3.8 22.7 -3.2 1.9 0.2 4.5 0.4 5.7 0.4zm309.3 98c5.2 0.5 10 1 10.7 1 0.9 -0 1.3 11.1 1.6 43.7 0.4 46.4 0.5 47.2 5.5 58.7 1.2 2.6 3.8 7.1 5.9 9.9l3.7 5 -1.7 15.1c-1 8.3 -3.1 26.3 -4.7 40.1 -1.6 13.7 -4.3 36.6 -6 50.7 -11.3 96 -14.4 122.4 -18.1 154.3 -1.7 14.3 -4.1 34.3 -5.2 44.5l-2.2 18.5 -71.7 0.3c-39.5 0.1 -71.8 -0 -71.8 -0.3 0 -0.2 -0.6 -5.3 -1.4 -11.2 -0.8 -5.9 -1.8 -13.7 -2.1 -17.3 -0.4 -3.6 -1.9 -17.1 -3.5 -30 -1.6 -12.9 -4.3 -35.7 -6 -50.5 -1.7 -14.9 -4.2 -35.6 -5.5 -46 -1.3 -10.5 -2.7 -22.2 -3 -26 -0.4 -3.9 -1.7 -15.1 -3 -25 -1.3 -9.9 -2.6 -21.4 -3 -25.5 -0.4 -4.1 -1.5 -13.8 -2.6 -21.4 -2.6 -19.2 -2.9 -17.7 3.4 -16 14.6 3.8 25.9 4.9 52.2 4.9 22.4 -0 27.7 -0.4 38.4 -2.3 24.9 -4.5 43 -12.4 55.1 -24.2 7.3 -7.1 11 -12.7 14.9 -22.9l2.6 -6.6 0.3 -61.8 0.3 -61.9 3.7 0.6c2 0.4 8 1.1 13.2 1.6zm69.3 141.5c2.9 0.8 10.2 2.3 16.4 3.4 9.9 1.7 11.7 2.3 15.5 5.4 13 10.6 36.7 18.7 62.2 21.3 7.6 0.8 7.3 0.1 5.1 12.5 -1.5 8.8 -6.9 40.6 -15.5 91.4 -10.1 59.4 -15 88.6 -21.5 126.7 -3.6 21.2 -6.5 38.9 -6.5 39.2 0 0.3 -23 0.6 -51.1 0.6 -48.1 -0 -51 -0.1 -50.5 -1.8 0.3 -0.9 1 -6.4 1.6 -12.2 0.7 -5.8 2.2 -18.8 3.5 -29 1.3 -10.2 2.7 -21.2 3 -24.5 0.6 -5.7 3.3 -27.7 9 -73 4.6 -36.3 7.5 -60.8 9.5 -78 1.1 -9.4 2.6 -21.7 3.4 -27.5 0.8 -5.8 1.8 -13.4 2.1 -17 0.8 -8.2 4.4 -34.7 5.1 -37.8 0.3 -1.6 1 -2.2 2 -1.8 0.8 0.3 3.8 1.2 6.7 2.1z"/>
</svg>
</div>
<div class="js-nav-toggle js-shown">
<button
class="navbar-toggle collapsed"
aria-label="Toggle Navigation"
data-target="#nav"
data-toggle="collapse"
type="button"
role="button"
>
<span class="lines"></span>
</button>
</div>
</div>
</header>
<div class="content">
<nav id="nav" class="navbar navbar-default navbar-collapse collapse" role="navigation">
<div class="container">
<ul class="nav navbar-nav">
<li class="">
<a href="index">Home</a>
</li>
<li class="">
<a href="events">Events</a>
</li>
<li class="active">
<a href="speakers">Speakers</a>
</li>
<li class="">
<a href="sponsors">Sponsors</a>
</li>
<li class="">
<a href="talks">Talks</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="hidden-xs hidden-sm">
<a href="http://www.meetup.com/php-sw/members">
<i class="fa fa-group"></i>
579 members
</a>
</li>
<li class="hidden-xs hidden-sm">
<a href="http://www.meetup.com/php-sw/about/comments/?op=all">
<i class="fa fa-thumbs-o-up"></i>
4.7/5 from 139 ratings
</a>
</li>
<li>
<a href="https://twitter.com/phpsw" title="Follow us on Twitter (@phpsw)">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<div>
<a href="http://www.meetup.com/php-sw" class="btn btn-primary navbar-btn" style="margin: 8px" title="Find us on Meetup">
Join group
</a>
</div>
</li>
</ul>
</div>
</nav>
<div class="hero hero--default">
<div class="hero__image" style="background-image: url('../images.phpsw.uk/SwItNmMEEPLtx9y_mNgXVg-5XiA=/1200x400/http-/photos1.meetupstatic.com/photos/event/6/a/f/0/highres_434247376.jpeg')"></div>
<div class="hero__overlay"></div>
</div>
<main>
<div class="container">
<header class="page-header">
<h1> Speakers
</h1>
</header>
<div class="row">
<div class="col-sm-8">
<h2>Alumni</h2>
<ul class="speakers list list--inline">
<li>
<a
href="speakers/an-introduction-to-the-symfony-console-componentmike-lovely"
title="- An introduction to the Symfony Console ComponentMike Lovely, developer at SimpleWeb"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/65CT_l8i-stQVuoG2LrwKuwTEx4=/72x72/http-/photos2.meetupstatic.com/photos/member/2/6/e/6/highres_250509958.jpeg" alt="- An introduction to the Symfony Console ComponentMike Lovely">
</div>
<span class="fn" style="display: block; margin: 10px">
- An introduction to the Symfony Console ComponentMike Lovely
</span> </a>
</li>
<li>
<a
href="speakers/get-going-with-a-new-language-a-a-href-https-twitter-com-kasiazien-kat-zien"
title="- Get GOing with a new language</a><a href="https://twitter.com/kasiazien">Kat Zien, Keyboard wizard, currently busy writing Go and PHP at Brightpearl</a>"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/65CT_l8i-stQVuoG2LrwKuwTEx4=/72x72/http-/photos2.meetupstatic.com/photos/member/2/6/e/6/highres_250509958.jpeg" alt="- Get GOing with a new language</a><a href="https://twitter.com/kasiazien">Kat Zien">
</div>
<span class="fn" style="display: block; margin: 10px">
- Get GOing with a new language</a><a href="https://twitter.com/kasiazien">Kat Zien
</span> </a>
</li>
<li>
<a
href="speakers/go-faster-with-ansiblerichard-donkin"
title="- Go Faster with AnsibleRichard Donkin"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/wcOOTVaFFs_Hf1FAKHh8JmjcBKY=/72x72/http-/photos1.meetupstatic.com/photos/member/c/5/d/c/highres_77030652.jpeg" alt="- Go Faster with AnsibleRichard Donkin">
</div>
<span class="fn" style="display: block; margin: 10px">
- Go Faster with AnsibleRichard Donkin
</span> </a>
</li>
<li>
<a
href="speakers/hard-core-soft-skills-a-href-https-www-meetup-com-php-sw-members-14618145-luke-bailey"
title="- Hard Core Soft Skills <a href="https://www.meetup.com/php-sw/members/14618145/">Luke Bailey, developer at Deep Blue Sky.</a>"
>
<span class="fn" style="display: block; margin: 10px">
- Hard Core Soft Skills <a href="https://www.meetup.com/php-sw/members/14618145/">Luke Bailey
</span> </a>
</li>
<li>
<a
href="speakers/it-started-with-a-patch-a-href-https-twitter-com-opdavies-oliver-davies"
title="- It started with a patch... <a href="https://twitter.com/opdavies">Oliver Davies, senior developer at Appnovation.</a>"
>
<span class="fn" style="display: block; margin: 10px">
- It started with a patch... <a href="https://twitter.com/opdavies">Oliver Davies
</span> </a>
</li>
<li>
<a
href="speakers/a-href-http-www-meetup-com-php-sw-members-31894252-lee-stone"
title="<a href="http://www.meetup.com/php-sw/members/31894252/">Lee Stone, Web Team Lead at Gradwell"
>
<span class="fn" style="display: block; margin: 10px">
<a href="http://www.meetup.com/php-sw/members/31894252/">Lee Stone
</span> </a>
</li>
<li>
<a
href="speakers/adam-nicholls"
title="Adam Nicholls, Goram & Vincent"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/dulG8w1Ndd8HDo1-BrfTgfPJeZA=/72x72/http-/photos1.meetupstatic.com/photos/member/3/f/9/a/member_175696282.jpeg" alt="Adam Nicholls">
</div>
<span class="fn" style="display: block; margin: 10px">
Adam Nicholls
</span> </a>
</li>
<li>
<a
href="speakers/ade-slade"
title="Ade Slade, PHP Developer at BaseKit"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/5HNrFzJcj03ZM8q1LfJ52stgjdE=/72x72/http-/photos1.meetupstatic.com/photos/member/2/b/f/5/highres_241511253.jpeg" alt="Ade Slade">
</div>
<span class="fn" style="display: block; margin: 10px">
Ade Slade
</span> </a>
</li>
<li>
<a
href="speakers/adrian-groves"
title="Adrian Groves"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/MQTOhAxV6q2pKCrHXselTJoOIKQ=/72x72/http-/photos2.meetupstatic.com/photos/member/9/d/c/b/highres_252040395.jpeg" alt="Adrian Groves">
</div>
<span class="fn" style="display: block; margin: 10px">
Adrian Groves
</span> </a>
</li>
<li>
<a
href="speakers/andy-gale"
title="Andy Gale"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/F4w-XHA8WXodJNteLswjMMlNzJg=/72x72/http-/photos3.meetupstatic.com/photos/member/b/9/5/6/highres_243167446.jpeg" alt="Andy Gale">
</div>
<span class="fn" style="display: block; margin: 10px">
Andy Gale
</span> </a>
</li>
<li>
<a
href="speakers/billie-thompson"
title="Billie Thompson, Contracting Software Developer, currently working with Transform UK at the Home Office"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/lYQvUH8pT4BW8OzkICfwQgyi5To=/72x72/http-/avatars.phpsw.uk/twitter/PurpleBooth-size=original.jpeg" alt="Billie Thompson">
</div>
<span class="fn" style="display: block; margin: 10px">
Billie Thompson
</span> </a>
</li>
<li>
<a
href="speakers/carl-hughes"
title="Carl Hughes, Freelance Web Developer"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/JU8TRH71jLPXsf8K8ARg4KjYT1U=/72x72/http-/photos4.meetupstatic.com/photos/member/a/f/f/2/highres_94125042.jpeg" alt="Carl Hughes">
</div>
<span class="fn" style="display: block; margin: 10px">
Carl Hughes
</span> </a>
</li>
<li>
<a
href="speakers/chris-caplan"
title="Chris Caplan, IT Support Technician at Ultimate Finance Group"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/A1HNjWnTWBrPk7RDw08-1x-gJEM=/72x72/http-/photos4.meetupstatic.com/photos/member/1/d/3/a/highres_259027482.jpeg" alt="Chris Caplan">
</div>
<span class="fn" style="display: block; margin: 10px">
Chris Caplan
</span> </a>
</li>
<li>
<a
href="speakers/chris-hall"
title="Chris Hall, freelance and contract web and data developer, specialising in Drupal and PHP."
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/QXnAnq1zdMmTZjgvXgnWKOGJhHI=/72x72/http-/avatars.phpsw.uk/twitter/cwork_chris-size=original.jpeg" alt="Chris Hall">
</div>
<span class="fn" style="display: block; margin: 10px">
Chris Hall
</span> </a>
</li>
<li>
<a
href="speakers/christos-constantinou"
title="Christos Constantinou, Full stack JavaScript developer"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/VCfYnZ6TCOfuc3MB2yisZPICgdI=/72x72/http-/photos4.meetupstatic.com/photos/member/3/f/f/3/highres_16996371.jpeg" alt="Christos Constantinou">
</div>
<span class="fn" style="display: block; margin: 10px">
Christos Constantinou
</span> </a>
</li>
<li>
<a
href="speakers/clement-debiaune"
title="Clément Debiaune, Freelance"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/vJT5v6JSitG5wk0hy68r1E5skSM=/72x72/http-/avatars.phpsw.uk/twitter/EUnibozu-size=original" alt="Clément Debiaune">
</div>
<span class="fn" style="display: block; margin: 10px">
Clément Debiaune
</span> </a>
</li>
<li>
<a
href="speakers/craig-marvelley"
title="Craig Marvelley, Head of Platform at Bipsync"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/U_wBVNjDzBxjkjsmeK9RVt0djCA=/72x72/http-/photos4.meetupstatic.com/photos/member/c/0/0/a/highres_24229162.jpeg" alt="Craig Marvelley">
</div>
<span class="fn" style="display: block; margin: 10px">
Craig Marvelley
</span> </a>
</li>
<li>
<a
href="speakers/dan-ackroyd"
title="Dan Ackroyd, Independent C + PHP developer, Imagick maintainer. That guy with the beard."
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/72UHjrOQF8x-DwZcFd1RpgziAWY=/72x72/http-/photos3.meetupstatic.com/photos/member/3/6/e/e/highres_103154062.jpeg" alt="Dan Ackroyd">
</div>
<span class="fn" style="display: block; margin: 10px">
Dan Ackroyd
</span> </a>
</li>
<li>
<a
href="speakers/daniel-leech"
title="Daniel Leech, Open source PHP developer involved in the Symfony CMF and is the developer of PHPBench"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/mq0DKI2kSzYH0v7ArWpPFgtVGK4=/72x72/http-/avatars.phpsw.uk/twitter/dantleech-size=original.jpeg" alt="Daniel Leech">
</div>
<span class="fn" style="display: block; margin: 10px">
Daniel Leech
</span> </a>
</li>
<li>
<a
href="speakers/dave-avent"
title="Dave Avent, Site Reliability Engineer at SeatMe (Yelp)"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/q51Dkc-yGxoKGoefclFMU5oaxHo=/72x72/http-/avatars.phpsw.uk/twitter/daveavent-size=original.jpeg" alt="Dave Avent">
</div>
<span class="fn" style="display: block; margin: 10px">
Dave Avent
</span> </a>
</li>
<li>
<a
href="speakers/dave-liddament"
title="Dave Liddament, Director and developer at Lamp Bristol."
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/bEh5uA_HVls8rbeM4OW82xVSy8I=/72x72/http-/photos2.meetupstatic.com/photos/member/9/2/c/4/highres_203797572.jpeg.png" alt="Dave Liddament">
</div>
<span class="fn" style="display: block; margin: 10px">
Dave Liddament
</span> </a>
</li>
<li>
<a
href="speakers/dave-marshall"
title="Dave Marshall, Software Sapper and Technical Manager at Childcare"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/43z7FBu3dXuBt1rZaJCJLg3Gy7k=/72x72/http-/avatars.phpsw.uk/twitter/davedevelopment-size=original.jpeg" alt="Dave Marshall">
</div>
<span class="fn" style="display: block; margin: 10px">
Dave Marshall
</span> </a>
</li>
<li>
<a
href="speakers/dave-tibbs"
title="Dave Tibbs, Systems Administrator at Brightpearl US, briefly in the UK!"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/ztIdTWjE-kJWCrISvtgkHwj7uoM=/72x72/http-/avatars.phpsw.uk/twitter/lowlysysadm1n-size=original.jpeg" alt="Dave Tibbs">
</div>
<span class="fn" style="display: block; margin: 10px">
Dave Tibbs
</span> </a>
</li>
<li>
<a
href="speakers/david-mckay"
title="David McKay, Organiser of Docker Glasgow & Scotland PHP"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/P8nCYUghqMMU-17MlTGNNOurx_8=/72x72/http-/avatars.phpsw.uk/twitter/rawkode-size=original.jpeg" alt="David McKay">
</div>
<span class="fn" style="display: block; margin: 10px">
David McKay
</span> </a>
</li>
<li>
<a
href="speakers/derick-rethans"
title="Derick Rethans, PHP Engineer/Evangelist on MongoDB, internals expert & author of Xdebug"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/zVeND6QHm0wtene5CURCeqij8MU=/72x72/http-/avatars.phpsw.uk/twitter/derickr-size=original.jpeg" alt="Derick Rethans">
</div>
<span class="fn" style="display: block; margin: 10px">
Derick Rethans
</span> </a>
</li>
<li>
<a
href="speakers/doug-fitzmaurice"
title="Doug Fitzmaurice, Developer at ENTS 24"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/xAazn60S0L-7xuXktlnyYDaJuB0=/72x72/http-/photos3.meetupstatic.com/photos/member/6/a/9/c/highres_208467292.jpeg" alt="Doug Fitzmaurice">
</div>
<span class="fn" style="display: block; margin: 10px">
Doug Fitzmaurice
</span> </a>
</li>
<li>
<a
href="speakers/drew-mclellan"
title="Drew McLellan, Lead developer on Perch CMS and publisher of 24 ways"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/P-v4IgALeXQShLICqCWmliqkUf8=/72x72/http-/photos2.meetupstatic.com/photos/member/2/5/1/3/highres_3549491.jpeg" alt="Drew McLellan">
</div>
<span class="fn" style="display: block; margin: 10px">
Drew McLellan
</span> </a>
</li>
<li>
<a
href="speakers/gareth-jones"
title="Gareth Jones, Software Developer at Brightpearl"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/dBk3o8JswyfSTkrOlDwKnt0bheQ=/72x72/http-/photos2.meetupstatic.com/photos/member/e/5/9/4/highres_84898772.jpeg.png" alt="Gareth Jones">
</div>
<span class="fn" style="display: block; margin: 10px">
Gareth Jones
</span> </a>
</li>
<li>
<a
href="speakers/gary-hockin"
title="Gary Hockin, Developer at Roave"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/4fGIigWp0NZJI72tvcnSNCoj7f0=/72x72/http-/photos1.meetupstatic.com/photos/member/1/6/c/a/highres_246065834.jpeg" alt="Gary Hockin">
</div>
<span class="fn" style="display: block; margin: 10px">
Gary Hockin
</span> </a>
</li>
<li>
<a
href="speakers/gavin-davies"
title="Gavin Davies, Software Developer at Radify and author of Deal With It: Attitude for Coders"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/pScEEBNa7oTXq7z7fFrUlpVR_U0=/72x72/http-/photos2.meetupstatic.com/photos/member/1/f/1/a/member_114787962.jpeg" alt="Gavin Davies">
</div>
<span class="fn" style="display: block; margin: 10px">
Gavin Davies
</span> </a>
</li>
<li>
<a
href="speakers/harald-zeitlhofer"
title="Harald Zeitlhofer, Technology Strategist at Dynatrace"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/cAz-i-Z_cFBW5qXiarjEhBrnDsw=/72x72/http-/avatars.phpsw.uk/twitter/hzeitlhofer-size=original.jpeg" alt="Harald Zeitlhofer">
</div>
<span class="fn" style="display: block; margin: 10px">
Harald Zeitlhofer
</span> </a>
</li>
<li>
<a
href="speakers/ian-smith"
title="Ian Smith, Director and developer at Lamp Bristol."
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/YvCDnoG9_Z_l5bN0BwtAidy6-mQ=/72x72/http-/avatars.phpsw.uk/twitter/ismithuk-size=original.jpeg" alt="Ian Smith">
</div>
<span class="fn" style="display: block; margin: 10px">
Ian Smith
</span> </a>
</li>
<li>
<a
href="speakers/jakub-zalas"
title="Jakub Zalas, Symfony core team member"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/WFEahjYhrJTsvpMGhpNLnQOD_70=/72x72/http-/photos3.meetupstatic.com/photos/member/c/c/1/2/highres_52612242.jpeg.png" alt="Jakub Zalas">
</div>
<span class="fn" style="display: block; margin: 10px">
Jakub Zalas
</span> </a>
</li>
<li>
<a
href="speakers/james-titcumb"
title="James Titcumb, founder of PHP Hampshire, Zend Certified Engineer and consultant developer for Roave"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/qh8k5n0Pyf4ETwL6E44cTD_O-0o=/72x72/http-/photos1.meetupstatic.com/photos/member/9/d/3/c/highres_134740252.jpeg.png" alt="James Titcumb">
</div>
<span class="fn" style="display: block; margin: 10px">
James Titcumb
</span> </a>
</li>
<li>
<a
href="speakers/jan-franciszek-kowalski"
title="Jan Franciszek Kowalski, Backend PHP Web Developer"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/B4RiFWnfN6oTchAGUOxzsFYPmwI=/72x72/http-/photos3.meetupstatic.com/photos/member/7/7/2/d/highres_246630509.jpeg" alt="Jan Franciszek Kowalski">
</div>
<span class="fn" style="display: block; margin: 10px">
Jan Franciszek Kowalski
</span> </a>
</li>
<li>
<a
href="speakers/jenny-wong"
title="Jenny Wong, Web Developer & Community Cheer Leader at Human Made"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/CJZWnz61eEPzDLqRgeo0aspX9dY=/72x72/http-/photos3.meetupstatic.com/photos/member/9/e/a/a/highres_242860618.jpeg" alt="Jenny Wong">
</div>
<span class="fn" style="display: block; margin: 10px">
Jenny Wong
</span> </a>
</li>
<li>
<a
href="speakers/jessica-rose"
title="Jessica Rose, Technologist and enthusiasm enthusiast"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/ThizJeb5wQzE2F2TjRcnPuCHKi8=/72x72/http-/avatars.phpsw.uk/twitter/jesslynnrose-size=original.jpeg" alt="Jessica Rose">
</div>
<span class="fn" style="display: block; margin: 10px">
Jessica Rose
</span> </a>
</li>
<li>
<a
href="speakers/jim-morrison"
title="Jim Morrison, Entrepreneur, CTO, coder and founder of Deep Blue Sky"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/5guOTLYadpVdeS0LIWD-5vFq2F4=/72x72/http-/avatars.phpsw.uk/twitter/jimbomorrison-size=original.jpeg" alt="Jim Morrison">
</div>
<span class="fn" style="display: block; margin: 10px">
Jim Morrison
</span> </a>
</li>
<li>
<a
href="speakers/jordi-boggiano"
title="Jordi Boggiano, Author of Composer, Monolog, php-console and frequent contributor to Symfony2, Twig and other OS projects"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/8NPDJX8UiKgk3-RTZJ_c0TvfLUE=/72x72/http-/photos3.meetupstatic.com/photos/member/b/f/b/a/highres_42709082.jpeg" alt="Jordi Boggiano">
</div>
<span class="fn" style="display: block; margin: 10px">
Jordi Boggiano
</span> </a>
</li>
<li>
<a
href="speakers/kat-zien"
title="Kat Zien, Software Developer at Brightpearl"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/I44tfN4aWLWBgUpD1GzwJDTp8CY=/72x72/http-/photos2.meetupstatic.com/photos/member/4/4/1/8/highres_219497432.jpeg" alt="Kat Zien">
</div>
<span class="fn" style="display: block; margin: 10px">
Kat Zien
</span> </a>
</li>
<li>
<a
href="speakers/kiel-doyle"
title="Kiel Doyle, PHP Developer at ASDAN"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/kQRqoWbQsD5EqvI_eAF82wcfXJ0=/72x72/http-/photos3.meetupstatic.com/photos/member/8/b/3/0/member_177035632.jpeg" alt="Kiel Doyle">
</div>
<span class="fn" style="display: block; margin: 10px">
Kiel Doyle
</span> </a>
</li>
<li>
<a
href="speakers/lee-stone"
title="Lee Stone, Web Team Lead at Gradwell"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/5ShLgrZtXUN2IA1-ghO62wkQMm0=/72x72/http-/photos1.meetupstatic.com/photos/member/6/5/2/e/highres_32485902.jpeg" alt="Lee Stone">
</div>
<span class="fn" style="display: block; margin: 10px">
Lee Stone
</span> </a>
</li>
<li>
<a
href="speakers/lucia-velasco"
title="Lucia Velasco"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/GtakWxMbF29dtsaJotQ9LuX8Ixg=/72x72/http-/photos3.meetupstatic.com/photos/member/5/7/7/4/highres_259522388.jpeg" alt="Lucia Velasco">
</div>
<span class="fn" style="display: block; margin: 10px">
Lucia Velasco
</span> </a>
</li>
<li>
<a
href="speakers/luke-sturgess-durden"
title="Luke Sturgess-Durden, Operations and Development Lead at Deep Blue Sky"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/LaDzeZqdx9Y4xcGkNJTSFA5a4No=/72x72/http-/photos4.meetupstatic.com/photos/member/e/1/8/1/highres_254637729.jpeg" alt="Luke Sturgess-Durden">
</div>
<span class="fn" style="display: block; margin: 10px">
Luke Sturgess-Durden
</span> </a>
</li>
<li>
<a
href="speakers/marco-pivetta"
title="Marco Pivetta, Software Consultant at Roave, Doctrine core team member & ZF2 contributor"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/rEQlbfyJbsgyd1FX6qpLBAJAW5k=/72x72/http-/photos3.meetupstatic.com/photos/member/7/5/6/3/highres_243450051.jpeg" alt="Marco Pivetta">
</div>
<span class="fn" style="display: block; margin: 10px">
Marco Pivetta
</span> </a>
</li>
<li>
<a
href="speakers/marek-matulka"
title="Marek Matulka, Software Engineer at SensioLabsUK"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/cIK7fcVMsxPTlrYn1bo5hTnI1oU=/72x72/http-/avatars.phpsw.uk/twitter/super_marek-size=original.jpeg" alt="Marek Matulka">
</div>
<span class="fn" style="display: block; margin: 10px">
Marek Matulka
</span> </a>
</li>
<li>
<a
href="speakers/mark-baker"
title="Mark Baker, Coordinator and Lead Developer of the PHPOffice library suite"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/FLP8LqmrRb3lphdrv8Q6rlh0eVY=/72x72/http-/avatars.phpsw.uk/twitter/mark_baker-size=original.jpeg" alt="Mark Baker">
</div>
<span class="fn" style="display: block; margin: 10px">
Mark Baker
</span> </a>
</li>
<li>
<a
href="speakers/mark-bradley"
title="Mark Bradley, PHP and Golang software engineer at Sainsburys"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/RS_1-XP_YS0GTkcJUHddfyiNXNE=/72x72/http-/avatars.phpsw.uk/twitter/braddle-size=original.jpeg" alt="Mark Bradley">
</div>
<span class="fn" style="display: block; margin: 10px">
Mark Bradley
</span> </a>
</li>
<li>
<a
href="speakers/michael-heap"
title="Michael Heap, Software Engineer at DataSift"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/D9_-jMarKgESyDRNgI2RwNsmUVo=/72x72/http-/avatars.phpsw.uk/twitter/mheap-size=original.jpeg" alt="Michael Heap">
</div>
<span class="fn" style="display: block; margin: 10px">
Michael Heap
</span> </a>
</li>
<li>
<a
href="speakers/nathan-mcbride"
title="Nathan McBride, Certified Magento Developer at Meanbee"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/KjL2y0PkyGlJmwsmCRFw7FqivH8=/72x72/http-/photos4.meetupstatic.com/photos/member/c/8/e/5/highres_253671429.jpeg.png" alt="Nathan McBride">
</div>
<span class="fn" style="display: block; margin: 10px">
Nathan McBride
</span> </a>
</li>
<li>
<a
href="speakers/nigel-dunn"
title="Nigel Dunn"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/HSjKPgdRjE0KUK6UNU087WtcaCM=/72x72/http-/photos4.meetupstatic.com/photos/member/b/b/b/4/highres_131268052.jpeg" alt="Nigel Dunn">
</div>
<span class="fn" style="display: block; margin: 10px">
Nigel Dunn
</span> </a>
</li>
<li>
<a
href="speakers/oliver-davies"
title="Oliver Davies, Senior Developer at Microserve"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/dqgUexKDT8KgFEwexjZzwOpRwss=/72x72/http-/photos4.meetupstatic.com/photos/member/6/9/2/c/highres_255566924.jpeg" alt="Oliver Davies">
</div>
<span class="fn" style="display: block; margin: 10px">
Oliver Davies
</span> </a>
</li>
<li>
<a
href="speakers/paul-dragoonis"
title="Paul Dragoonis, Lead Developer at Kainos, PHP internals and PHP-FIG voting member"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/zub8nvLFAAqpvhzECHFs7ooeQoA=/72x72/http-/photos1.meetupstatic.com/photos/member/9/0/2/7/highres_241716903.jpeg" alt="Paul Dragoonis">
</div>
<span class="fn" style="display: block; margin: 10px">
Paul Dragoonis
</span> </a>
</li>
<li>
<a
href="speakers/paul-marks"
title="Paul Marks"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/fHuOaU6LpNpkmGFqFakRenCE-xs=/72x72/http-/photos3.meetupstatic.com/photos/member/b/d/8/2/highres_248748514.jpeg" alt="Paul Marks">
</div>
<span class="fn" style="display: block; margin: 10px">
Paul Marks
</span> </a>
</li>
<li>
<a
href="speakers/phil-sturgeon"
title="Phil Sturgeon, Englishman temporarily not in New York. PHP Town Crier. Charity Biker. Cider Drinker. Troll Slayer."
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/ulEkP7knrlh7roBYER19cAZZC04=/72x72/http-/avatars.phpsw.uk/twitter/philsturgeon-size=original.jpeg" alt="Phil Sturgeon">
</div>
<span class="fn" style="display: block; margin: 10px">
Phil Sturgeon
</span> </a>
</li>
<li>
<a
href="speakers/philip-manavopoulos"
title="Philip Manavopoulos, Developer at Coull, builder of Doorbell.io"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/PC21ypUind1G-W4PQ4IVBP-TJQ8=/72x72/http-/photos3.meetupstatic.com/photos/member/e/8/0/highres_177303712.jpeg" alt="Philip Manavopoulos">
</div>
<span class="fn" style="display: block; margin: 10px">
Philip Manavopoulos
</span> </a>
</li>
<li>
<a
href="speakers/richard-jones"
title="Richard Jones, Systems Engineer at Future Publishing"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/VBRbGU9h1Dvn6ymwVIFZxNDxKjQ=/72x72/http-/photos4.meetupstatic.com/photos/member/c/2/f/3/member_11989907.jpeg" alt="Richard Jones">
</div>
<span class="fn" style="display: block; margin: 10px">
Richard Jones
</span> </a>
</li>
<li>
<a
href="speakers/rob-allen"
title="Rob Allen, Software Engineer, ZF contributor and author of Zend Framework in Action"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/78mVpGLcoB5-75NeQe5kjGtgwp0=/72x72/http-/photos1.meetupstatic.com/photos/member/9/5/4/e/highres_190778222.jpeg" alt="Rob Allen">
</div>
<span class="fn" style="display: block; margin: 10px">
Rob Allen
</span> </a>
</li>
<li>
<a
href="speakers/rob-haswell"
title="Rob Haswell, VP Engineering and Co-founder of ClusterHQ"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/89n--TTb1asZH2CMwCfHkRETak8=/72x72/http-/img1.meetupstatic.com/img/501554713870081192606960/nobody_50.png" alt="Rob Haswell">
</div>
<span class="fn" style="display: block; margin: 10px">
Rob Haswell
</span> </a>
</li>
<li>
<a
href="speakers/ross-bambrey"
title="Ross Bambrey, Director and developer at Lamp Bristol"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/1LBuHnuKOgqRn6hpeCDKA53F8SA=/72x72/http-/avatars.phpsw.uk/twitter/rrbambrey-size=original.jpeg" alt="Ross Bambrey">
</div>
<span class="fn" style="display: block; margin: 10px">
Ross Bambrey
</span> </a>
</li>
<li>
<a
href="speakers/steve-lacey"
title="Steve Lacey, Ruby, PHP & Python Developer at Simpleweb"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/DhWYTI57lEmvS-hT-lZ-zYQ_Y4I=/72x72/http-/photos2.meetupstatic.com/photos/member/6/e/3/4/highres_155008212.jpeg" alt="Steve Lacey">
</div>
<span class="fn" style="display: block; margin: 10px">
Steve Lacey
</span> </a>
</li>
<li>
<a
href="speakers/stu-herbert"
title="Stu Herbert, Freelance PHP / Architect / Quality Assurance at Ganbaro Digital"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/jSeyQ0t-a-XI125hYNeRE0OmH8A=/72x72/http-/photos1.meetupstatic.com/photos/member/b/7/2/c/highres_24046892.jpeg" alt="Stu Herbert">
</div>
<span class="fn" style="display: block; margin: 10px">
Stu Herbert
</span> </a>
</li>
<li>
<a
href="speakers/tess-barnes"
title="Tess Barnes"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/tqq8MJ0M-shz36mY3w5-cRNDDAo=/72x72/http-/photos3.meetupstatic.com/photos/member/a/0/e/d/highres_250241197.jpeg" alt="Tess Barnes">
</div>
<span class="fn" style="display: block; margin: 10px">
Tess Barnes
</span> </a>
</li>
<li>
<a
href="speakers/tom-adam"
title="Tom Adam, Developer at Instantiate"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/72UHjrOQF8x-DwZcFd1RpgziAWY=/72x72/http-/photos3.meetupstatic.com/photos/member/3/6/e/e/highres_103154062.jpeg" alt="Tom Adam">
</div>
<span class="fn" style="display: block; margin: 10px">
Tom Adam
</span> </a>
</li>
<li>
<a
href="speakers/tom-harding"
title="Tom Harding"
>
<span class="fn" style="display: block; margin: 10px">
Tom Harding
</span> </a>
</li>
<li>
<a
href="speakers/tom-holder"
title="Tom Holder, Technical Director at Simpleweb"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/EG4hppSUOj_MPk854Zi70LIsjlw=/72x72/http-/photos3.meetupstatic.com/photos/member/3/3/6/a/member_36253162.jpeg" alt="Tom Holder">
</div>
<span class="fn" style="display: block; margin: 10px">
Tom Holder
</span> </a>
</li>
<li>
<a
href="speakers/tom-robertshaw"
title="Tom Robertshaw, director of Meanbee"
>
<div class="avatar avatar--large">
<img src="../images.phpsw.uk/tOsAY9YxfJj_rsV4wLT4-vWzu-s=/72x72/http-/photos3.meetupstatic.com/photos/member/2/7/a/c/highres_242950156.jpeg.png" alt="Tom Robertshaw">
</div>