-
Notifications
You must be signed in to change notification settings - Fork 0
/
talks.html
2519 lines (2067 loc) · 173 KB
/
talks.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>Talks · 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/talks">
<meta property="og:title" content="Talks">
<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/xqvi_FkeuZB3CJ5WGaycDM0GyC8=/1200x400/http://photos3.meetupstatic.com/photos/event/c/9/c/a/highres_436131658.jpeg"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://phpsw.uk/talks">
<meta name="twitter:title" content="Talks">
<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/xqvi_FkeuZB3CJ5WGaycDM0GyC8=/1200x400/http://photos3.meetupstatic.com/photos/event/c/9/c/a/highres_436131658.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="talks">
<link rel="stylesheet" href="rev/201702092308/css/vendor.css">
<link rel="stylesheet" href="rev/201702092308/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="">
<a href="speakers">Speakers</a>
</li>
<li class="">
<a href="sponsors">Sponsors</a>
</li>
<li class="active">
<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/xqvi_FkeuZB3CJ5WGaycDM0GyC8=/1200x400/http-/photos3.meetupstatic.com/photos/event/c/9/c/a/highres_436131658.jpeg')"></div>
<div class="hero__overlay"></div>
</div>
<main>
<div class="container">
<header class="page-header">
<h1> Talks
</h1>
</header>
<h2 class="sr-only">Featured</h2>
<div class="talks row">
<div id="talk-222843562-building-and-selling-modules-for-magento-ecommerce" class="talk talk--featured col-sm-6 col-md-4">
<h3>
<a href="talks/building-and-selling-modules-for-magento-ecommerce" class="talk__title">
<span>Building and selling modules for Magento eCommerce</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div id="video-222843562-building-and-selling-modules-for-magento-ecommerce" class="video video--small">
<iframe
src="https://www.youtube.com/embed/oSpKBaz-Pgo?rel=0&showinfo=0"
frameborder="0" scrolling="no"
allowfullscreen mozallowfullscreen webkitallowfullscreen
>
</iframe>
<a href="https://www.youtube.com/watch?v=oSpKBaz-Pgo" class="js-hidden">
View on YouTube
<i class="fa fa-external-link"></i>
</a>
</div>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/christos-constantinou"><span class="fn">Christos Constantinou</span></a>, Full stack JavaScript developer
</div>
</div>
<hr> <a href="events/222843562-ecommerce">eCommerce</a><small>, July 2015</small>
</div>
<div id="talk-222843562-moltin" class="talk talk--featured col-sm-6 col-md-4">
<h3>
<a href="talks/moltin" class="talk__title">
<span>Moltin</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div id="video-222843562-moltin" class="video video--small">
<iframe
src="https://www.youtube.com/embed/a23sc8HnV90?rel=0&showinfo=0"
frameborder="0" scrolling="no"
allowfullscreen mozallowfullscreen webkitallowfullscreen
>
</iframe>
<a href="https://www.youtube.com/watch?v=a23sc8HnV90" class="js-hidden">
View on YouTube
<i class="fa fa-external-link"></i>
</a>
</div>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/drew-mclellan"><span class="fn">Drew McLellan</span></a>, Lead developer on Perch CMS and publisher of <a href="http://24ways.org">24 ways</a>
</div>
</div>
<hr> <a href="events/222843562-ecommerce">eCommerce</a><small>, July 2015</small>
</div>
<div class="clearfix visible-xs visible-sm"></div>
<div id="talk-222842964-embracing-change" class="talk talk--featured col-sm-6 col-md-4">
<h3>
<a href="talks/embracing-change" class="talk__title">
<span>Embracing change</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div id="video-222842964-embracing-change" class="video video--small">
<iframe
src="https://www.youtube.com/embed/9cjlaeoRW3g?rel=0&showinfo=0"
frameborder="0" scrolling="no"
allowfullscreen mozallowfullscreen webkitallowfullscreen
>
</iframe>
<a href="https://www.youtube.com/watch?v=9cjlaeoRW3g" class="js-hidden">
View on YouTube
<i class="fa fa-external-link"></i>
</a>
</div>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/jakub-zalas"><span class="fn">Jakub Zalas</span></a>, Symfony core team member
</div>
</div>
<hr> <a href="events/222842964-coding-practices">Coding practices</a><small>, June 2015</small>
</div>
<div class="clearfix hidden-xs hidden-sm"></div>
<div id="talk-222842964-go-mad-for-monads" class="talk talk--featured col-sm-6 col-md-4">
<h3>
<a href="talks/go-mad-for-monads" class="talk__title">
<span>Go mad for Monads</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div id="video-222842964-go-mad-for-monads" class="video video--small">
<iframe
src="https://www.youtube.com/embed/F5fUgXFSH0Q?rel=0&showinfo=0"
frameborder="0" scrolling="no"
allowfullscreen mozallowfullscreen webkitallowfullscreen
>
</iframe>
<a href="https://www.youtube.com/watch?v=F5fUgXFSH0Q" class="js-hidden">
View on YouTube
<i class="fa fa-external-link"></i>
</a>
</div>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/warren-seymour"><span class="fn">Warren Seymour</span></a>, Software Developer at <a href="http://radify.io">Radify</a>
</div>
</div>
<hr> <a href="events/222842964-coding-practices">Coding practices</a><small>, June 2015</small>
</div>
<div class="clearfix visible-xs visible-sm"></div>
<div id="talk-222842964-extremely-defensive-php" class="talk talk--featured col-sm-6 col-md-4">
<h3>
<a href="talks/extremely-defensive-php" class="talk__title">
<span>Extremely defensive PHP</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div id="video-222842964-extremely-defensive-php" class="video video--small">
<iframe
src="https://www.youtube.com/embed/8d2AtAGJPno?rel=0&showinfo=0"
frameborder="0" scrolling="no"
allowfullscreen mozallowfullscreen webkitallowfullscreen
>
</iframe>
<a href="https://www.youtube.com/watch?v=8d2AtAGJPno" class="js-hidden">
View on YouTube
<i class="fa fa-external-link"></i>
</a>
</div>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/marco-pivetta"><span class="fn">Marco Pivetta</span></a>, Software Consultant at <a href="https://roave.com">Roave</a>, Doctrine core team member & ZF2 contributor
</div>
</div>
<hr> <a href="events/222842964-coding-practices">Coding practices</a><small>, June 2015</small>
</div>
<div id="talk-221484453-a-slim-3-primer" class="talk talk--featured col-sm-6 col-md-4">
<h3>
<a href="talks/a-slim-3-primer" class="talk__title">
<span>A Slim 3 primer</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div id="video-221484453-a-slim-3-primer" class="video video--small">
<iframe
src="https://www.youtube.com/embed/3bXRrv7gp4U?rel=0&showinfo=0"
frameborder="0" scrolling="no"
allowfullscreen mozallowfullscreen webkitallowfullscreen
>
</iframe>
<a href="https://www.youtube.com/watch?v=3bXRrv7gp4U" class="js-hidden">
View on YouTube
<i class="fa fa-external-link"></i>
</a>
</div>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/rob-allen"><span class="fn">Rob Allen</span></a>, Software Engineer, ZF contributor and author of <a href="http://www.manning.com/allen">Zend Framework in Action</a>
</div>
</div>
<hr> <a href="events/221484453-frameworks">Frameworks</a><small>, May 2015</small>
</div>
<div class="clearfix visible-xs visible-sm"></div>
<div class="clearfix hidden-xs hidden-sm"></div>
</div>
<div class="row">
<div class="col-sm-8">
<div id="talks" class="talks
talks--talks
">
<h2>Further viewing</h2>
<ul class="list">
<li><div id="talk-235102426-nigel-talks-crap-for-a-bit" class="talk talk--padded">
<h3>
<a href="talks/nigel-talks-crap-for-a-bit" class="talk__title">
<span>Nigel talks CRAP for a bit</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/nigel-dunn"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/SgZjlepP1Kma5sXrrFAYvrEijd8=/36x36/http-/photos4.meetupstatic.com/photos/member/b/b/b/4/highres_131268052.jpeg" alt="Nigel Dunn">
</div><span class="fn">Nigel Dunn</span></a> </div>
</div>
<div class="talk__description">
</div>
</div>
</li>
<li><div id="talk-235102426-memcache" class="talk talk--padded">
<h3>
<a href="talks/memcache" class="talk__title">
<span>Memcache </span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/adrian-groves"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/DUXlpzoMmqJfpLfzA0bFTY6Yx-c=/36x36/http-/photos2.meetupstatic.com/photos/member/9/d/c/b/highres_252040395.jpeg" alt="Adrian Groves">
</div><span class="fn">Adrian Groves</span></a> </div>
</div>
<div class="talk__description">
</div>
</div>
</li>
<li><div id="talk-235102426-mental-health" class="talk talk--padded">
<h3>
<a href="talks/mental-health" class="talk__title">
<span>Mental Health</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/tom-robertshaw"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/oyVBWRSLWFjloR4JhWNmpmVVw1s=/36x36/http-/photos3.meetupstatic.com/photos/member/2/7/a/c/highres_242950156.jpeg.png" alt="Tom Robertshaw">
</div><span class="fn">Tom Robertshaw</span></a>, director of <a href="https://www.meanbee.com/">Meanbee</a>
</div>
</div>
<div class="talk__description">
<p>It's easier in the world of today, especially as developers, to push ourselves too hard. Our community, like many, has seen an increasing number of stories about burnout and illnesses such as anxiety and depression. During this talk, Tom is going to share a little of his own story and the methods of managing it that he has found useful. </p>
</div>
</div>
</li>
<li><div id="talk-235102426-bringing-functional-php-into-the-fold" class="talk talk--padded">
<h3>
<a href="talks/bringing-functional-php-into-the-fold" class="talk__title">
<span>Bringing Functional PHP into the Fold</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/tom-harding"><span class="fn">Tom Harding</span></a> </div>
</div>
<div class="talk__description">
<p>Immutability, unit testability, even the humble array_map - it's clear to see that functional programming has put down roots in PHP. So, what comes next? Tom introduces the idea of monoid folds, explains how it can help us to produce more readable and extensible business logic, and probably ends up defending Haskell in a room full of hecklers.</p>
</div>
</div>
</li>
<li><div id="talk-235102426-modern-drupal-development-with-composer" class="talk talk--padded">
<h3>
<a href="talks/modern-drupal-development-with-composer" class="talk__title">
<span>Modern Drupal Development with Composer</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/oliver-davies"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/lZHtgs7v2kV4zCii4qZ4613wssY=/36x36/http-/avatars.phpsw.uk/twitter/opdavies-size=original" alt="Oliver Davies">
</div><span class="fn">Oliver Davies</span></a> </div>
</div>
<div class="talk__description">
<p>Building a Drupal application? You no longer need to download archives to add new modules or update core, or deal with Drupal specific tools to manage your codebase.With Drupal "getting off the island" there has been an increase in the adoption of common PHP tools within the Drupal ecosystem.In this lightning talk, I’ll show how to build a Drupal application using Composer for dependency management.</p>
</div>
</div>
</li>
<li><div id="talk-235102426-how-pen-testing-helped-me-as-a-developer" class="talk talk--padded">
<h3>
<a href="talks/how-pen-testing-helped-me-as-a-developer" class="talk__title">
<span>How pen testing helped me as a Developer</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/paul-marks"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/qjviydl9CbB9uWsO74h3-BWDQLA=/36x36/http-/photos3.meetupstatic.com/photos/member/b/d/8/2/highres_248748514.jpeg" alt="Paul Marks">
</div><span class="fn">Paul Marks</span></a> </div>
</div>
<div class="talk__description">
</div>
</div>
</li>
<li><div id="talk-235102426-a-junior-s-guide-to-changing-the-world" class="talk talk--padded">
<h3>
<a href="talks/a-junior-s-guide-to-changing-the-world" class="talk__title">
<span>A Junior’s Guide to Changing The World</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/lucia-velasco"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/HgLDgmZsAVa0ZU_yY7xZxYsr7Ys=/36x36/http-/photos3.meetupstatic.com/photos/member/5/7/7/4/highres_259522388.jpeg" alt="Lucia Velasco">
</div><span class="fn">Lucia Velasco</span></a> </div>
</div>
<div class="talk__description">
<p>Lucia's PHPSW debut will be a soft skills talk about the strategies she's picked up on using conversation to tackle problems and effect positive change in your working environment</p>
</div>
</div>
</li>
<li><div id="talk-235102426-mitigating-ddos-attacks-with-terraform" class="talk talk--padded">
<h3>
<a href="talks/mitigating-ddos-attacks-with-terraform" class="talk__title">
<span>Mitigating DDOS Attacks With Terraform</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/andy-gale"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/7ph0y65-GnmEf062k1oW6wkLewc=/36x36/http-/photos3.meetupstatic.com/photos/member/b/9/5/6/highres_243167446.jpeg" alt="Andy Gale">
</div><span class="fn">Andy Gale</span></a> </div>
</div>
<div class="talk__description">
</div>
</div>
</li>
<li><div id="talk-234476250-solid-structure" class="talk talk--padded">
<h3>
<a href="talks/solid-structure" class="talk__title">
<span>Solid Structure</span><i class="fa fa-youtube-play"></i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/dan-ackroyd"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/Da7s7B6jgsVDh-k5n5-dAayOd3M=/36x36/http-/photos3.meetupstatic.com/photos/member/3/6/e/e/highres_103154062.jpeg" alt="Dan Ackroyd">
</div><span class="fn">Dan Ackroyd</span></a>, Independent C + PHP developer, Imagick maintainer. That guy with the beard.
</div>
</div>
<div class="talk__description">
<p>Dan is going to attempt to explain how to build modern testable application using a DIC container. </p>
<p>He’ll also talk about the limits of what can be written as clean code that makes you happy and you should handle having horrible untestable code. </p>
</div>
</div>
</li>
<li><div id="talk-233853545-securing-distributed-software" class="talk talk--padded">
<h3>
<a href="talks/securing-distributed-software" class="talk__title">
<span>Securing Distributed Software</span><i class="fa fa-youtube-play"></i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/drew-mclellan"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/99qWN-dA-iLCXQ28WIzPHByPvrM=/36x36/http-/photos2.meetupstatic.com/photos/member/2/5/1/3/highres_3549491.jpeg" alt="Drew McLellan">
</div><span class="fn">Drew McLellan</span></a>, Lead developer on Perch CMS and publisher of <a href="http://24ways.org/">24 ways</a>
</div>
</div>
<div class="talk__description">
<p>Managing the security of your own project is one thing - but what happens when your software is installed on tens of thousands of hosting accounts that you don’t control? Find out how those challenges are faced with Perch CMS, and what happened last year when an exploitable security bug with found within a default plugin.</p>
</div>
</div>
</li>
<li><div id="talk-230654971-dive-into-php-7" class="talk talk--padded">
<h3>
<a href="talks/dive-into-php-7" class="talk__title">
<span>Dive Into PHP 7</span><i class="fa fa-youtube-play"></i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/kat-zien"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/REP06EE4q0sW6UxflO6lorXXT28=/36x36/http-/avatars.phpsw.uk/twitter/kasiazien-size=original.jpeg" alt="Kat Zien">
</div><span class="fn">Kat Zien</span></a>, Keyboard wizard, currently busy writing Go and PHP at <a href="https://www.brightpearl.com/">Brightpearl</a>
</div>
</div>
<div class="talk__description">
<p>We all eventually gave up discussing that famous article describing PHP's bad design, bought our t-shirts and got on with our lives. Some of us decided to give Ruby a go. Or Go. We all know PHP is far from perfect but it's still one of the most popular languages on the web (thanks Wordpress!) so... just get on with it. Right?</p>
<p>Wrong! </p>
<p>There's a new kid in town. And it deserves your attention. Shame no more. Because PHP is not done yet!</p>
<p>Over 10 years since its last major release, PHP 7 is now out and available. Heck, we're at 7.0.5 already! All this hard work, sweat, tears and swearing in the community brought us significant performance improvements, drastically reduced memory consumption, a brand spanking new Zend Engine and a host of new language features to make PHP shine again.</p>
<p>Let's take a look at what's new. If you didn't get a chance to play around with PHP 7 yet I'll (hopefully) do the homework for you. If you're an expert already, looking forward to hearing what you think!</p>
</div>
</div>
</li>
<li><div id="talk-229737809-interface-segregation-the-forgotten-i-in-solid" class="talk talk--padded">
<h3>
<a href="talks/interface-segregation-the-forgotten-i-in-solid" class="talk__title">
<span>Interface segregation; the forgotten 'i' in SOLID</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/dan-ackroyd"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/Da7s7B6jgsVDh-k5n5-dAayOd3M=/36x36/http-/photos3.meetupstatic.com/photos/member/3/6/e/e/highres_103154062.jpeg" alt="Dan Ackroyd">
</div><span class="fn">Dan Ackroyd</span></a>, Independent C + PHP developer, Imagick maintainer. That guy with the beard
</div>
</div>
<div class="talk__description">
<p>When people give talks on the "S.O.L.I.D." design principles one ofthe letters that doesn't get enough attention is the "i" - the"interface segregation principle". This talk seeks to redress thatimbalance by going into a bit more in-depth into:</p>
<p>• An introduction to interface segregation and an explanation of howit make your code easier to test.</p>
<p>• Why in PHP we need to apply the principle more broadly, to maketypes be more specific, so that code is more reasonable.</p>
<p>• Me babbling on about emotions, and how good code is boring. Which is good!</p>
</div>
</div>
</li>
<li><div id="talk-229737809-mission-im-possible-quality-decoupled-code-with-drupal-7" class="talk talk--padded">
<h3>
<a href="talks/mission-im-possible-quality-decoupled-code-with-drupal-7" class="talk__title">
<span>Mission (Im)possible: Quality Decoupled Code with Drupal 7 </span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/marek-matulka"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/jx2uhXnJji1lmPe_tBP97IxI2mE=/36x36/http-/avatars.phpsw.uk/twitter/super_marek-size=original.jpeg" alt="Marek Matulka">
</div><span class="fn">Marek Matulka</span></a>, Software Engineer at <a href="https://sensiolabs.com/">SensioLabsUK</a>
</div>
</div>
<div class="talk__description">
<p>We're all excited about Drupal 8 coming up soon and we want to be ready for it! How can we make sure our code is ready for it? How can we build modules that are backwards compatible with D7 and future proofed for D8?</p>
<p>Learn how to build code decoupled from your platform and use it with Drupal or any other framework.</p>
</div>
</div>
</li>
<li><div id="talk-228496580-the-value-case-for-unit-tests" class="talk talk--padded">
<h3>
<a href="talks/the-value-case-for-unit-tests" class="talk__title">
<span>The Value Case for Unit Tests</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/dan-ackroyd"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/Da7s7B6jgsVDh-k5n5-dAayOd3M=/36x36/http-/photos3.meetupstatic.com/photos/member/3/6/e/e/highres_103154062.jpeg" alt="Dan Ackroyd">
</div><span class="fn">Dan Ackroyd</span></a>, Independent C + PHP developer, Imagick maintainer.
</div>
</div>
<div class="talk__description">
<p>Do you work at a company where there are not enough unit tests in place and things are constantly breaking? Or maybe you have a client that always wants new features to be delivered as soon as possible, without enough thought about maintaining code.</p>
<p>How do you persuade people that Unit Tests should be written? And that by writing them you will improve your code quality and make development be easier? And how many unit tests should you be writing anyway?</p>
</div>
</div>
</li>
<li><div id="talk-228496580-beyond-unit-testing" class="talk talk--padded">
<h3>
<a href="talks/beyond-unit-testing" class="talk__title">
<span>Beyond Unit Testing</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/dave-liddament"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/riSAAfAJqvqHUAlBr_usROV8DyA=/36x36/http-/photos2.meetupstatic.com/photos/member/9/2/c/4/highres_203797572.jpeg.png" alt="Dave Liddament">
</div><span class="fn">Dave Liddament</span></a>, Director and developer at <a href="http://www.lampbristol.com/">Lamp Bristol</a>.
</div>
</div>
<div class="talk__description">
<p>Unit testing is an essential part of any successful software project, but it's only half the testing story. This talk will examine the other half of the testing story. We'll see why we need more than just unit tests and how to write these extra tests.</p>
</div>
</div>
</li>
<li><div id="talk-227424666-profiling-your-php-application" class="talk talk--padded">
<h3>
<a href="talks/profiling-your-php-application" class="talk__title">
<span>Profiling your PHP application</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/michael-heap"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/S3azxVVwk23tzb5Dg6zT3ESJhBo=/36x36/http-/avatars.phpsw.uk/twitter/mheap-size=original.jpeg" alt="Michael Heap">
</div><span class="fn">Michael Heap</span></a>, Software Engineer at <a href="http://datasift.com/">DataSift</a>
</div>
</div>
<div class="talk__description">
<p>So, you've been through and changed all your double quotes to single quotes but your application still isn't running at the speed of light. What's going on? </p>
<p>Making an application scale is generally seen as something that only the most magical of developers can do, but it's easy once you have the correct tools. Fortunately for us, these tools are freely available online! <br>In this talk, we'll take a look at a few options that we have available to work out what our application is actually doing, help identify bottlenecks and fix them so that we can move on to the more important part of the project: delivering features.</p>
</div>
</div>
</li>
<li><div id="talk-227424666-benchmarking-in-php-and-phpbench" class="talk talk--padded">
<h3>
<a href="talks/benchmarking-in-php-and-phpbench" class="talk__title">
<span>Benchmarking in PHP and PHPBench</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/daniel-leech"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/-uPW0Sh4Jz1eshr2D7KsU83_jVY=/36x36/http-/avatars.phpsw.uk/twitter/dantleech-size=original.jpeg" alt="Daniel Leech">
</div><span class="fn">Daniel Leech</span></a>, Open source PHP developer involved in the Symfony CMF and is the developer of <a href="https://github.com/phpbench/phpbench">PHPBench</a>
</div>
</div>
<div class="talk__description">
<p>In this talk Daniel Leech will introduce benchmarking as it applies to PHP, discuss when it can be used and present a tool with which to do it, PHPBench.</p>
</div>
</div>
</li>
<li><div id="talk-225148132-building-static-sites-with-sculpin" class="talk talk--padded">
<h3>
<a href="talks/building-static-sites-with-sculpin" class="talk__title">
<span>Building Static Sites with Sculpin</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/oliver-davies"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/JrX-L3PU4VXPRqOZOah_63HRgA8=/36x36/http-/photos4.meetupstatic.com/photos/member/6/9/2/c/highres_255566924.jpeg" alt="Oliver Davies">
</div><span class="fn">Oliver Davies</span></a>, Senior Developer at <a href="https://microserve.io/">Microserve</a>
</div>
</div>
<div class="talk__description">
<p>Sculpin is a static site generator written in PHP. It converts Markdown files, Twig templates and standard HTML into a static HTML site that can be easily deployed.<br>This talk will cover a little of the background to Sculpin and what it is, and then will move into some demonstrations of how to build a Sculpin site and what it can do!</p>
</div>
</div>
</li>
<li><div id="talk-225148132-nobody-likes-you-jenkins" class="talk talk--padded">
<h3>
<a href="talks/nobody-likes-you-jenkins" class="talk__title">
<span>Nobody likes you Jenkins</span><i class="fa fa-youtube-play"></i><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/andy-gale"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/7ph0y65-GnmEf062k1oW6wkLewc=/36x36/http-/photos3.meetupstatic.com/photos/member/b/9/5/6/highres_243167446.jpeg" alt="Andy Gale">
</div><span class="fn">Andy Gale</span></a>, Devops Consultant at <a href="http://hellofutu.re/">Hello Future</a>
</div>
</div>
<div class="talk__description">
<p>Take the hassle out of CI by using online CI instead. Rid yourself of that high-maintenance chancer butler.</p>
</div>
</div>
</li>
<li><div id="talk-225148132-php-and-beanstalk" class="talk talk--padded">
<h3>
<a href="talks/php-and-beanstalk" class="talk__title">
<span>PHP & Beanstalk </span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/doug-fitzmaurice"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/jdoXOiBqE_sSzQu17l_2uJEDzKI=/36x36/http-/photos3.meetupstatic.com/photos/member/6/a/9/c/highres_208467292.jpeg" alt="Doug Fitzmaurice">
</div><span class="fn">Doug Fitzmaurice</span></a>, Developer at <a href="http://www.ents24.com/">Ents24</a>
</div>
</div>
<div class="talk__description">
<p>Beanstalk is a job queue, and you can use it to break apart PHP applications to handle long-running tasks and cope with scale.Learn how to use PHP for things it was never designed, without it all going wrong!</p>
</div>
</div>
</li>
<li><div id="talk-225148132-version-control-tips-and-tricks" class="talk talk--padded">
<h3>
<a href="talks/version-control-tips-and-tricks" class="talk__title">
<span>Version Control Tips & Tricks</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/tess-barnes"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/dvr2_rAOQu4vvjaZu0-mrDhj8Is=/36x36/http-/photos3.meetupstatic.com/photos/member/a/0/e/d/highres_250241197.jpeg" alt="Tess Barnes">
</div><span class="fn">Tess Barnes</span></a> </div>
</div>
<div class="talk__description">
<p>Nervous of version control? Don’t panic! you’re not on your own. I've put together a run down of some of my tricks and ‘good citizen’ techniques to avoid the worst kinds of conflicts and deal with the remaining ones as efficiently as possible. Branching policies, basic conflict resolution, proactive diffs can all ease the pain of a tricky integration.</p>
</div>
</div>
</li>
<li><div id="talk-225148132-code-review-with-gerrit" class="talk talk--padded">
<h3>
<a href="talks/code-review-with-gerrit" class="talk__title">
<span>Code Review with Gerrit</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>
<div class="
talk__speakers
">
<div class="talk__speakers__speaker">
<a href="speakers/dave-liddament"><div class="avatar avatar--small">
<img src="../images.phpsw.uk/riSAAfAJqvqHUAlBr_usROV8DyA=/36x36/http-/photos2.meetupstatic.com/photos/member/9/2/c/4/highres_203797572.jpeg.png" alt="Dave Liddament">
</div><span class="fn">Dave Liddament</span></a>, Director and developer at <a href="http://www.lampbristol.com/">Lamp Bristol</a>.
</div>
</div>
<div class="talk__description">
<p>Quick intro to integrating code review using Gerrit into your workflow.</p>
</div>
</div>
</li>
<li><div id="talk-224872129-how-i-learned-to-stop-worrying-and-love-regular-expressions" class="talk talk--padded">
<h3>
<a href="talks/how-i-learned-to-stop-worrying-and-love-regular-expressions" class="talk__title">
<span>How I learned to stop worrying and love Regular Expressions</span><i><svg xmlns="http://www.w3.org/2000/svg" class="slides" fill="black" preserveAspectRatio="xMidYMid meet" viewBox="0 0 160 140">
<path d="M70 11 l0 5 -32 -0 -32 -0 0 9.5 0 9.5 4.5 -0 4.5 -0 0 45.5 0 45.5 17.5 -0c9.6 -0 17.5 0.3 17.5 0.6 0 0.3 -2.9 5.3 -6.3 11.2 -3.5 5.9 -6.9 11.7 -7.6 12.9l-1.2 2.3 12.4 -0 12.4 -0 8.5 -13.3c5.9 -9.3 9 -13.2 10.3 -13.2 1.4 -0 4.2 3.8 9.8 13.3l8 13.2 14.4 -0c14.3 -0 14.4 -0 13.2 -2.1 -0.6 -1.2 -4.2 -7.3 -8 -13.5l-6.8 -11.4 17.4 -0 17.5 -0 0 -45.5 0 -45.5 5 -0 5 -0 0 -9.5 0 -9.5 -32 -0 -32 -0 0 -5 0 -5 -10 -0 -10 -0 0 5zm66 64.5l0 42.5 -56 -0 -56 -0 0 -42.5 0 -42.5 56 -0 56 -0 0 42.5z"/>
<path d="M33 75.5 l0 32.5 46.5 -0 46.5 -0 0 -32.5 0 -32.5 -46.5 -0 -46.5 -0 0 32.5z"/>
</svg>
</i></a>
</h3>