-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
1626 lines (1277 loc) · 82.5 KB
/
events.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>Events · 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/events">
<meta property="og:title" content="Events">
<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/0gO9CVoI6osZSIXcWzAbf0ibT2c=/1200x400/http://photos3.meetupstatic.com/photos/event/8/4/7/8/highres_366333912.jpeg"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://phpsw.uk/events">
<meta name="twitter:title" content="Events">
<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/0gO9CVoI6osZSIXcWzAbf0ibT2c=/1200x400/http://photos3.meetupstatic.com/photos/event/8/4/7/8/highres_366333912.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="events">
<link rel="stylesheet" href="rev/201702092249/css/vendor.css">
<link rel="stylesheet" href="rev/201702092249/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="active">
<a href="events">Events</a>
</li>
<li class="">
<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/0gO9CVoI6osZSIXcWzAbf0ibT2c=/1200x400/http-/photos3.meetupstatic.com/photos/event/8/4/7/8/highres_366333912.jpeg')"></div>
<div class="hero__overlay"></div>
</div>
<main>
<div class="container">
<header class="page-header">
<h1> Events
</h1>
</header>
<div class="events row">
<div class="col-sm-8">
<h2>
Recent events
</h2>
<article id="event-237357254" class="event event--past">
<header class="event__header">
<h3>
<a href="events/237357254-new-skills">New Skills</a>
<small>
<time datetime="2017-02-08T18:45:00+00:00">
February 2017
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In February we're hosting a night of talks on picking up new skills. We'll be at DeskLodge this month. Our talks this month: As always, a big thanks to our meetup sponsors Ents24, Brightpearl,...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/237357254-new-skills">
<div style="background-image: url('../images.phpsw.uk/XJz8lP2KYF5Hkt62EH9EXUlAO2g=/160x80/http-/photos4.meetupstatic.com/photos/event/5/f/e/8/highres_458184552.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<section id="past-events" class="events__past">
<h2>Past events</h2>
<h3>2017</h3>
<article id="event-236606412" class="event event--past">
<header class="event__header">
<h3>
<a href="events/236606412-new-year-coding-resolutions">New Year Coding Resolutions</a>
<small>
<time datetime="2017-01-11T18:45:00+00:00">
January 2017
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In January we're hosting a night of talks on coding resolutions for the new year. We've got a couple of talks lined up so far, but if you're interested in giving a talk (any length), please let us know....
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/236606412-new-year-coding-resolutions">
<div style="background-image: url('../images.phpsw.uk/I2gRdCyKKXVH00wZSRhxgb_Kkto=/160x80/http-/photos4.meetupstatic.com/photos/event/4/9/b/3/highres_457458867.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<h3>2016</h3>
<article id="event-235793734" class="event event--past">
<header class="event__header">
<h3>
<a href="events/235793734-end-of-year-social-2016">End of Year Social 2016</a>
<small>
<time datetime="2016-12-13T19:00:00+00:00">
December 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
We're finishing off 2016 as we have done for the last couple of years and that's with a social. The evening will be taking place in a pub - we're just waiting for final confirmation and then we'll announce...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/235793734-end-of-year-social-2016">
<div style="background-image: url('../images.phpsw.uk/YSfvX6lex9DqYj58iScaYBRoueg=/160x80/http-/photos2.meetupstatic.com/photos/event/4/3/6/e/highres_457277262.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-235102426" class="event event--past">
<header class="event__header">
<h3>
<a href="events/235102426-lightning-talks">Lightning Talks</a>
<small>
<time datetime="2016-11-09T18:30:00+00:00">
November 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In November the ever popular lightning talks return. If you want to talk then let us know! The speakers we've already got booked include.... BaseKit have kindly offered to host the evening...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/235102426-lightning-talks">
<div style="background-image: url('../images.phpsw.uk/cXtkbebiij1YwH5MRYINzvtm70E=/160x80/http-/photos4.meetupstatic.com/photos/event/a/9/5/d/highres_455923357.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-234476250" class="event event--past">
<header class="event__header">
<h3>
<a href="events/234476250-decoupling">Decoupling</a>
<small>
<time datetime="2016-10-12T17:30:00+00:00">
October 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In October we're hosting a night of talks around the theme of Decoupling. This month we'll be at BrightPearl. We've got 2 talks lined up already (and if you want to do a talk (full or lightening)...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/234476250-decoupling">
<div style="background-image: url('../images.phpsw.uk/yJYaCA5hmVlZZS5h4wKvgkwbcE4=/160x80/http-/photos1.meetupstatic.com/photos/event/8/a/c/c/highres_455015532.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-233853545" class="event event--past">
<header class="event__header">
<h3>
<a href="events/233853545-security">Security</a>
<small>
<time datetime="2016-09-14T17:30:00+00:00">
September 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In September we're hosting a night of talks about security. This month we'll be at BaseKit. We've got 3 talks lined up for this month! BaseKit have kindly offered to host the evening at...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/233853545-security">
<div style="background-image: url('../images.phpsw.uk/JprQmeAosb_3Wln9Cy0bRX-mlHk=/160x80/http-/photos3.meetupstatic.com/photos/event/d/8/2/1/highres_454135329.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-233043526" class="event event--past">
<header class="event__header">
<h3>
<a href="events/233043526-devops">DevOps</a>
<small>
<time datetime="2016-08-10T17:30:00+00:00">
August 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In August we're hosting a night of DevOps related talks. If you've got a lightning talk you're interested in giving - let us know! Thanks to our sponsors for their continued support of PHPSW. Brightpearl have...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/233043526-devops">
<div style="background-image: url('../images.phpsw.uk/fxKqnlPR4E_-b-N-QDWVISB94H8=/160x80/http-/photos4.meetupstatic.com/photos/event/1/f/c/highres_453000508.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-232342654" class="event event--past">
<header class="event__header">
<h3>
<a href="events/232342654-its-not-all-about-code">It's Not All About Code</a>
<small>
<time datetime="2016-07-13T17:30:00+00:00">
July 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In July we're hosting a night of talks which aren't specifically about writing code. Thanks to our sponsors for their continued support of PHPSW. We're heading to Desklodge this month. If you're...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/232342654-its-not-all-about-code">
<div style="background-image: url('../images.phpsw.uk/Y32qSUh3Mc3b0OBPn1wtRQc6Bjo=/160x80/http-/photos2.meetupstatic.com/photos/event/5/f/9/c/highres_452124476.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-231442183" class="event event--past">
<header class="event__header">
<h3>
<a href="events/231442183-tips-and-tricks">Tips and Tricks</a>
<small>
<time datetime="2016-06-08T17:30:00+00:00">
June 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In June we're hosting a night of Tips and Tricks with lightening talks from many speakers, including.... BaseKit have kindly offered to host the evening at their office, and as always...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/231442183-tips-and-tricks">
<div style="background-image: url('../images.phpsw.uk/ug1mPQjW2AJa1AkwqffdHO-CXHo=/160x80/http-/photos2.meetupstatic.com/photos/event/6/c/1/highres_450901729.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-230654971" class="event event--past">
<header class="event__header">
<h3>
<a href="events/230654971-upgrades">Upgrades</a>
<small>
<time datetime="2016-05-11T17:30:00+00:00">
May 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
In May we're hosting a night about Upgrades! We're trying out a new venue this month - Desk Lodge. Desklodge is the new venue we're trying out. If you're looking for private offices, hot-desks...
</div>
</div>
</header>
</article>
<article id="event-229737809" class="event event--past">
<header class="event__header">
<h3>
<a href="events/229737809-clean-code">Clean Code</a>
<small>
<time datetime="2016-04-13T17:30:00+00:00">
April 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In April we're hosting a night about Clean Code! We're at BaseKit's new office this month. - Mission (Im)possible: Quality Decoupled Code with Drupal 7 Marek Matulka, Software Engineer at SensioLabsUK...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/229737809-clean-code">
<div style="background-image: url('../images.phpsw.uk/nGWRRiVY9OXWtOWSYn2klH5258o=/160x80/http-/photos3.meetupstatic.com/photos/event/8/3/5/c/highres_448893628.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-229183260" class="event event--past">
<header class="event__header">
<h3>
<a href="events/229183260-built-on-php">Built On PHP</a>
<small>
<time datetime="2016-03-09T18:30:00+00:00">
March 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In March we're doing something a little different and taking a look at using projects which are built on PHP. Sift Digital have kindly offered to host the evening at their office. Afterwards we'll...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/229183260-built-on-php">
<div style="background-image: url('../images.phpsw.uk/XZonDtkiFpdanF9gBh-ah3mcJ3s=/160x80/http-/photos2.meetupstatic.com/photos/event/3/d/2/9/highres_448035657.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-228496580" class="event event--past">
<header class="event__header">
<h3>
<a href="events/228496580-testing">Testing</a>
<small>
<time datetime="2016-02-10T18:30:00+00:00">
February 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In February we're hosting a night about Testing! We're at BaseKit's new office this month. If you have a talk you'd like to give (lightning or full length), we've got room for a third, so get in touch....
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/228496580-testing">
<div style="background-image: url('../images.phpsw.uk/EvCwkf-blomCJUjoZc9jf9TnFf0=/160x80/http-/photos1.meetupstatic.com/photos/event/b/3/2/2/highres_445725858.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-227424666" class="event event--past">
<header class="event__header">
<h3>
<a href="events/227424666-profiling-and-benchmarking">Profiling & Benchmarking</a>
<small>
<time datetime="2016-01-13T18:30:00+00:00">
January 2016
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In January we're hosting a night about Profiling & Benchmarking! MixRadio have kindly offered to host the evening at their office, and provide drinks and pizza. Don't forget to check them...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/227424666-profiling-and-benchmarking">
<div style="background-image: url('../images.phpsw.uk/KaduyyoucAY4tydVQ0823Y8K9tA=/160x80/http-/photos1.meetupstatic.com/photos/event/4/c/0/0/highres_445879456.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<h3>2015</h3>
<article id="event-227016878" class="event event--past">
<header class="event__header">
<h3>
<a href="events/227016878-phpub-quiz-2015">PHPub Quiz 2015</a>
<small>
<time datetime="2015-12-09T19:00:00+00:00">
December 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
For the end of 2015 it's a welcome return to our now annual tech-themed Pub Quiz. The questions will be techy, but not too serious, geeky, or necessarily, even PHP-orientated. There'll be a bar tab along...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/227016878-phpub-quiz-2015">
<div style="background-image: url('../images.phpsw.uk/0dsBEKK_-K3raFSol36NC5fkRN0=/160x80/http-/photos4.meetupstatic.com/photos/event/c/b/d/7/highres_444532183.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-226551846" class="event event--past">
<header class="event__header">
<h3>
<a href="events/226551846-git-and-open-source">Git & Open Source</a>
<small>
<time datetime="2015-11-11T18:30:00+00:00">
November 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In November we're hosting a night about Git and Open Source! MixRadio have kindly offered to host the evening at their office, and provide drinks and pizza. Don't forget to check them out- and...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/226551846-git-and-open-source">
<div style="background-image: url('../images.phpsw.uk/0HJFJHWtBKjR0NhtBnY15kiSNlU=/160x80/http-/photos3.meetupstatic.com/photos/event/5/2/8/2/highres_444081122.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-225148132" class="event event--past">
<header class="event__header">
<h3>
<a href="events/225148132-lightning-talks">Lightning talks</a>
<small>
<time datetime="2015-10-14T17:30:00+00:00">
October 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In October we're hosting an evening of 5-10 minute lightning talks! We're still looking for submissions, and by speaking you earn yourself a chance to win 1 of 3 tickets to this year's fantastic All Your...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/225148132-lightning-talks">
<div style="background-image: url('../images.phpsw.uk/j2PDwYOBdGDOGKzGkOQI-PAGYyI=/160x80/http-/photos4.meetupstatic.com/photos/event/a/4/6/a/highres_448362090.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-224872129" class="event event--past">
<header class="event__header">
<h3>
<a href="events/224872129-generators-and-regex">Generators & Regex</a>
<small>
<time datetime="2015-09-09T17:30:00+00:00">
September 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In September we're hosting a night of generators and regex! JUST EAT have kindly offered to host the evening at their fantastic new office, as well as provide drinks and pizza. Don't forget to...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/224872129-generators-and-regex">
<div style="background-image: url('../images.phpsw.uk/qZbdxENCv7_vlkzDoj6rLOSKW6U=/160x80/http-/photos3.meetupstatic.com/photos/event/7/3/a/7/highres_445649607.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-224220700" class="event event--past">
<header class="event__header">
<h3>
<a href="events/224220700-testing">Testing</a>
<small>
<time datetime="2015-08-12T17:30:00+00:00">
August 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In August we're hosting a night of talks about testing! MixRadio have kindly offered to host the evening at their office, and provide drinks and pizza. Don't forget to check them out- and if you're...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/224220700-testing">
<div style="background-image: url('../images.phpsw.uk/CCrmPbVqY_zAyV_iON46ZX9qm4s=/160x80/http-/photos1.meetupstatic.com/photos/event/9/4/9/f/highres_446798047.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-222843562" class="event event--past">
<header class="event__header">
<h3>
<a href="events/222843562-ecommerce">eCommerce</a>
<small>
<time datetime="2015-07-08T18:00:00+00:00">
July 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In July we're hosting a night of talks about eCommerce! Brightpearl have kindly offered to host the evening at their office, and provide drinks and pizza. Don't forget to check them out- and if you're...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/222843562-ecommerce">
<div style="background-image: url('../images.phpsw.uk/xc7orrfja2MLbahXyLojft0nEZc=/160x80/http-/photos4.meetupstatic.com/photos/event/5/5/c/b/highres_441501963.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-222842964" class="event event--past">
<header class="event__header">
<h3>
<a href="events/222842964-coding-practices">Coding practices</a>
<small>
<time datetime="2015-06-17T17:30:00+00:00">
June 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In June we're hosting a night of talks about coding practices. MixRadio have kindly offered to host the evening at their office, and provide drinks and pizza. Don't forget to check them out- and...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/222842964-coding-practices">
<div style="background-image: url('../images.phpsw.uk/BKVDpsQrXnaWCf38yOuT0ER2L7U=/160x80/http-/photos2.meetupstatic.com/photos/event/d/e/e/0/highres_438837056.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-221484453" class="event event--past">
<header class="event__header">
<h3>
<a href="events/221484453-frameworks">Frameworks</a>
<small>
<time datetime="2015-05-13T17:30:00+00:00">
May 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
In May we're hosting a night of talks about frameworks! MixRadio have kindly offered to host the evening at their office, and provide drinks and pizza. Don't forget to check them out- and if you're...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/221484453-frameworks">
<div style="background-image: url('../images.phpsw.uk/efg1BzO7ezmNRt7JXoYtD3mAl5w=/160x80/http-/photos2.meetupstatic.com/photos/event/9/1/7/f/highres_437437247.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-221484360" class="event event--past">
<header class="event__header">
<h3>
<a href="events/221484360-lightning-talks">Lightning talks</a>
<small>
<time datetime="2015-04-08T18:00:00+00:00">
April 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
After the success of the night last year, this month, we're hosting another night of 5-10 minute lightning talks, this time at Brightpearl! Brightpearl have kindly offered to host the evening,...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/221484360-lightning-talks">
<div style="background-image: url('../images.phpsw.uk/X8SSYKNvlM3LKyAfLWawHZ5nNk0=/160x80/http-/photos2.meetupstatic.com/photos/event/a/4/a/0/highres_448362144.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-220864828" class="event event--past">
<header class="event__header">
<h3>
<a href="events/220864828-wordpress-beyond-the-wild-west">WordPress beyond The Wild West</a>
<small>
<time datetime="2015-03-11T19:00:00+00:00">
March 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
We're trying something a little different this month – a joint night with the new and upcoming WordPress usergroup, Bristol WordPress People. Do check them out and join their group if you're interested...
</div>
</div>
</header>
</article>
<article id="event-220161444" class="event event--past">
<header class="event__header">
<h3>
<a href="events/220161444-running-php-fast">Running PHP fast</a>
<small>
<time datetime="2015-02-11T19:00:00+00:00">
February 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
This month is all about monitoring, analysing and optimising the performance of your PHP apps! We'll talk about finding bottlenecks in your stack, tuning your Nginx and general performance hotspots in...
</div>
</div>
</header>
</article>
<article id="event-219548416" class="event event--past">
<header class="event__header">
<h3>
<a href="events/219548416-server-orchestration">Server orchestration</a>
<small>
<time datetime="2015-01-14T19:00:00+00:00">
January 2015
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
A light topic to ease us into the new year ;) in January we're hosting a night of talks on simplifying server orchestration and containerisation! BaseKit have kindly offered to host the evening at their...
</div>
</div>
</header>
</article>
<h3>2014</h3>
<article id="event-215370812" class="event event--past">
<header class="event__header">
<h3>
<a href="events/215370812-phpub-quiz">PHPub quiz</a>
<small>
<time datetime="2014-12-10T19:00:00+00:00">
December 2014
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
We're trying something different to round off 2014, in December, we'll be hosting a tech-themed pub quiz to celebrate how we've redefined PHPSW this year! The questions will be techy, but not too serious,...
</div>
</div>
</header>
</article>
<article id="event-215366502" class="event event--past">
<header class="event__header">
<h3>
<a href="events/215366502-security-and-deployment">Security & deployment</a>
<small>
<time datetime="2014-11-12T19:00:00+00:00">
November 2014
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
Talks on security and deployment! Brightpearl have kindly offered to host the evening, providing food, beers and their office as the venue. Don't forget to check them out- and if you're...
</div>
</div>
</header>
</article>
<article id="event-208017562" class="event event--past">
<header class="event__header">
<h3>
<a href="events/208017562-lightning-talks">Lightning talks</a>
<small>
<time datetime="2014-10-08T18:00:00+00:00">
October 2014
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-8 col-sm-9">
As a change of pace, in October we'll be hosting a night of 5-10 minute lightning talks at BaseKit! BaseKit have kindly offered to host the evening at their office, and as always there'll be...
</div>
<div class="col-xs-4 col-sm-3">
<a href="events/208017562-lightning-talks">
<div style="background-image: url('../images.phpsw.uk/Jw0cbqmWAAot_YweMbviV9URE88=/160x80/http-/photos3.meetupstatic.com/photos/event/c/9/e/7/highres_436131687.jpeg'); background-size: cover; height: 65px; background-position: 50% 50%;">
</div>
</a>
</div>
</div>
</header>
</article>
<article id="event-201441732" class="event event--past">
<header class="event__header">
<h3>
<a href="events/201441732-design-patterns">Design patterns</a>
<small>
<time datetime="2014-09-10T18:00:00+00:00">
September 2014
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
As we return to our normal slot of the second Wednesday of the month, in September we're hosting a night of talks on design patterns! BaseKit have kindly offered to host the evening at their...
</div>
</div>
</header>
</article>
<article id="event-195104522" class="event event--past">
<header class="event__header">
<h3>
<a href="events/195104522-testing-and-ci">Testing & CI</a>
<small>
<time datetime="2014-08-20T18:00:00+00:00">
August 2014
</time>
</small>
</h3>
<div class="row">
<div class="col-xs-12">
Talks on testing and continuous integration. Brightpearl have kindly offered to host the evening, providing food, beers and their office as the venue. Don't forget to check them out- and if...
</div>
</div>