-
Notifications
You must be signed in to change notification settings - Fork 7
/
list.json
1504 lines (1504 loc) · 38 KB
/
list.json
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
[
{
"title": "JS Remote Conf",
"url": "http://jsremoteconf.com/",
"where": "Online",
"when": "January 14–16, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "O’Reilly Design Conference",
"url": "http://oreil.ly/1NRw8kd",
"where": "San Francisco, CA, USA",
"when": "January 19–22, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "SVG Summit 2016",
"url": "http://environmentsforhumans.com/2016/svg-summit/",
"where": "Online",
"when": "January 21, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "Awwwards Conference – Amsterdam 2016",
"url": "http://conference.awwwards.com/amsterdam-2016/",
"where": "Amsterdam, Netherlands",
"when": "January 27–29, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "A Day of REST",
"url": "http://feelingrestful.com/",
"where": "London, UK",
"when": "January 28, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "VOXXED Days Berlin 2016",
"url": "https://voxxeddays.com/berlin16/",
"where": "Berlin, Germany",
"when": "January 28–29, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "PhoneGap Day US 2016",
"url": "http://pgday.phonegap.com/",
"where": "Lehi, UT, USA",
"when": "January 28–29, 2016",
"month": "January",
"submissionDeadline": ""
},
{
"title": "Agile Content Conf 2016",
"url": "https://2016.agilecontentconf.com/",
"where": "London, UK",
"when": "February 1–2, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "JFokus 2016",
"url": "http://www.jfokus.se/jfokus/",
"where": "Stockholm, Sweden",
"when": "February 8–10, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "SustainableUX",
"url": "http://sustainableux.com/",
"where": "Online",
"when": "February 9, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "ConveyUX 2016",
"url": "http://conveyux.com/",
"where": "Seattle, WA, USA",
"when": "February 9–11, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Webstock 2016",
"url": "http://www.webstock.org.nz/16/",
"where": "Wellington, New Zealand",
"when": "February 9–12, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "DevNexus 2016",
"url": "http://www.devnexus.com/",
"where": "Atlanta, GA, USA",
"when": "February 15–17, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Open Set Soul Edition 2016",
"url": "http://www.openset.nl/oskorea/opensetdutchdesignseoulsessions_en.html",
"where": "Seoul, South Korea",
"when": "February 15–27, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Mobile Growth Summit 2016",
"url": "http://bit.ly/MobileGrowthSummit16",
"where": "San Francisco, CA, USA",
"when": "February 17–18, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "World IA Day 2016",
"url": "http://www.2016.worldiaday.org/",
"where": "At locations on every continent",
"when": "February 20, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Bulgaria Web Summit 2016",
"url": "http://bulgariawebsummit.com/",
"where": "Sofia, Bulgaria",
"when": "February 20, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "The Rolling Scopes Conference",
"url": "http://2016.conf.rollingscopes.com/",
"where": "Minsk, Belarus",
"when": "February 20–21, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "React.js Conf",
"url": "http://conf.reactjs.com/",
"where": "San Francisco, CA, USA",
"when": "February 22–23, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "UX Riga 2016",
"url": "http://www.uxriga.lv/",
"where": "Riga, Latvia",
"when": "February 25, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Typoday 2016",
"url": "http://www.typoday.in/",
"where": "Bangalore, India",
"when": "February 25–27, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Planning for a Higher Ed Website Redesign",
"url": "http://www.academicimpressions.com/conference/planning-higher-ed-website-redesign",
"where": "Cincinnati, OH, USA",
"when": "February 29–March 2, 2016",
"month": "February",
"submissionDeadline": ""
},
{
"title": "Interaction16",
"url": "http://interaction16.ixda.org/",
"where": "Helsinki, Finland",
"when": "March 1–4, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Riga Dev Day 2016",
"url": "http://www.rigadevday.lv/",
"where": "Riga, Latvia",
"when": "March 2–4, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Voxxed Days Zurich",
"url": "https://voxxeddays.com/zurich16/",
"where": "Zurich, Switzerland",
"when": "March 3, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "MIDWEST PHP 2016",
"url": "http://2016.midwestphp.org/",
"where": "Minneapolis, MN, USA",
"when": "March 4–5, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "QCon London 2016",
"url": "http://qconlondon.com/",
"where": "London, UK",
"when": "March 7–11, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "O’Reilly Fluent Conference 2016",
"url": "http://conferences.oreilly.com/fluent/javascript-html-us",
"where": "San Francisco, CA",
"when": "March 8–10, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "UXHK 2016",
"url": "http://www.uxhongkong.com/",
"where": "Hong Kong, China",
"when": "March 11–12, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "SXSW 2016",
"url": "http://www.sxsw.com/",
"where": "Austin, TX, USA",
"when": "March 11–20, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Dev Bootcamp San Francisco March Info Session",
"url": "https://www.eventbrite.com/…san-francisco-march-info-session-tickets-22132155874?ref=ebapi",
"where": "United States,San Francisco",
"when": "March 14th, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "MobileTech Conference Spring 2016",
"url": "https://mobiletechcon.de/",
"where": "Munich, Germany",
"when": "March 14–17, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Ruby for Beginners",
"url": "https://www.eventbrite.com/e/ruby-for-beginners-tickets-21643963678?ref=ebapi",
"where": "United States,San Francisco",
"when": "March 15th, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "SmashingConf Oxford 2016",
"url": "http://www.smashingconf.com/",
"where": "Oxford, UK",
"when": "March 15–16, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "DIBI 2016",
"url": "http://dibiconference.com/",
"where": "Edinburgh, UK",
"when": "March 17–18, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Codemotion Roma 2016",
"url": "http://rome2016.codemotionworld.com/",
"where": "ItalyItaly,Rome",
"when": "March 18th–19th, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Phase 0 Virtual Information Session",
"url": "https://www.eventbrite.com/e/phase-0-virtual-information-session-tickets-22308315773",
"where": "Online conference",
"when": "March 19th, 2016",
"month": "March"
},
{
"title": "Ruby Remote Conf",
"url": "https://allremoteconfs.com/ruby-2016",
"where": "Online",
"when": "March 23-25, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "EmberConf 2016",
"url": "http://emberconf.com/",
"where": "Portland, OR, USA",
"when": "March 28–30, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "QCon SP 2016",
"url": "http://qconsp.com/",
"where": "São Paolo, Brazil",
"when": "March 28–April 1, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "UX in the City: Oxford 2016",
"url": "http://uxinthecity.net/2016/oxford/",
"where": "Oxford, UK",
"when": "March 31–April 1, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Workshop: Building JavaScript Applications with ReactJS",
"url": "http://www.whiteoctoberevents.co.uk/event/reactjs-workshop-march-16/",
"where": "England,London",
"when": "March 21st, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Dev Bootcamp March Virtual Info Session",
"url": "https://www.eventbrite.com/e/dev-bootcamp-march-virtual-info-session-tickets-22477541933",
"where": "Online conference",
"when": "March 24th, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Meet the TAG - London",
"url": "",
"where": "England,London",
"when": "March 29th, 2016, 6pm",
"month": "March",
"submissionDeadline": ""
},
{
"title": "RWD Summit 2016",
"url": "http://environmentsforhumans.com/2016/responsive-web-design-summit/",
"where": "Online conference",
"when": "March 29th–31st, 2016",
"month": "March",
"submissionDeadline": ""
},
{
"title": "Fronteers Spring Thing 2016",
"url": "https://fronteers.nl/spring",
"where": "Amsterdam, Netherlands",
"when": "April 1, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Space City JS 2016",
"url": "http://spacecity.codes/",
"where": "Houston, TX, USA",
"when": "April 2, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "MobCon Europe 2016",
"url": "http://mobcon.com/mobcon-europe/",
"where": "Sofia, Bulgaria",
"when": "April 4, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "An Event Apart 2016: Seattle",
"url": "http://aneventapart.com/event/seattle-2016",
"where": "Seattle, WA, USA",
"when": "April 4–6, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "SmashingConf San Francisco 2016",
"url": "http://smashingconf.com/sf-2016/",
"where": "San Francisco, CA, USA",
"when": "April 5–6, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Le Web a Quebec 2016 — 6e edition",
"url": "http://www.webaquebec.org/",
"where": "Quebec, Canada",
"when": "April 6–8, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "WebVisions New York City 2016",
"url": "http://www.webvisionsevent.com/",
"where": "New York City, NY, USA",
"when": "April 7, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Respond 2016",
"url": "http://www.webdirections.org/respond16/",
"where": "Melbourne, Australia",
"when": "April 11-12, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Lone Star PHP 2016",
"url": "http://lonestarphp.com/",
"where": "Dallas, TX, USA",
"when": "April 7–9, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Jazoon Techdays Spring 2016",
"url": "http://jazoon.com/",
"where": "Berne, Switzerland",
"when": "April 8, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Yggdrasil 2016",
"url": "http://yggdrasilkonferansen.no/",
"where": "Sandefjord, Norway",
"when": "April 11–12, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Now What? Conference 2016",
"url": "http://www.nowwhatconference.com/",
"where": "Sioux Falls, SD, USA",
"when": "April 13–14, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Peers Conference 2016",
"url": "http://peersconf.com/",
"where": "St. Petersburg, FL, USA",
"when": "April 13–15, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "ConvergeSE 2016",
"url": "http://convergese.com/",
"where": "Columbia, SC, USA",
"when": "April 13–15, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "ACE! 2016",
"url": "http://aceconf.com/",
"where": "Krakow, Poland",
"when": "April 14–15, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "From Business to Buttons",
"url": "http://frombusinesstobuttons.com/",
"where": "Stockholm, Sweden",
"when": "April 14–16, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "JSConf 2016",
"url": "https://jsconf.uy/",
"where": "Montevideo, Uruguay",
"when": "April 15–16, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "JavaScript Frameworks Day 2016",
"url": "http://frameworksdays.com/event/js-frameworks-day-2016",
"where": "Kiev, Ukraine",
"when": "April 16, 2016",
"month": "April"
},
{
"title": "Ancient City Ruby 2016",
"url": "",
"where": "United States,St. Augustine",
"when": "April 6th–8th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Lone Star PHP 2016",
"url": "",
"where": "United States,Addison",
"when": "April 7th–9th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Building a Real-time App with React and Firebase",
"url": "",
"where": "Online conference",
"when": "April 7th, 2016, 9am",
"month": "April",
"submissionDeadline": ""
},
{
"title": "CoderDojo Nürnberg #1",
"url": "",
"where": "Germany,Nuremberg",
"when": "April 10th 2016, 4pm",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Nürnberg Web Week 2016",
"url": "",
"where": "Germany,Nuremberg",
"when": "April 11th–18th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Accessibility Club #3",
"url": "http://accessibility-club.org/",
"where": "Germany,Nürnberg",
"when": "April 12th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Digital Croydon #8 Laura Elizabeth, Jason Bootle, Amy Whitney",
"url": "",
"where": "England,London Borough of Croydon",
"when": "April 14th, 2016, 6:30pm",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Using External Plugins with React",
"url": "http://www.oreilly.com/online-training/react-for-web-developers.html",
"where": "Online conference",
"when": "April 14th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Hexagon Geospatial IGNITE Session - Atlanta",
"url": "https://www.eventbrite.com/e/hexagon-geospatial-ignite-session-atlanta-tickets-22668441920?ref=ebapi",
"where": "United States,Norcross",
"when": "April 15th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "2016 DC-Baltimore Perl Workshop",
"url": "http://dcbpw.org/dcbpw2016/",
"where": "United States,Balitmore",
"when": "April 16th–17th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Workshop: Rapid API development with Node.js and LoopBack",
"url": "",
"where": "England,Oxford",
"when": "April 20th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Industry Conf",
"url": "https://industryconf.com/",
"where": "Newcastle upon Tyne, England",
"when": "April 20, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "MCE3",
"url": "http://mceconf.com/",
"where": "Warsaw, Poland",
"when": "April 21–22, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Render Conf",
"url": "http://www.render-conf.com/",
"where": "Oxford, England",
"when": "April 21-22, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Generate NYC 2016",
"url": "http://www.generateconf.com/new-york-2016",
"where": "New York City, NY, USA",
"when": "April 22, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "RSJS",
"url": "http://rsjs.org/2016/",
"where": "Porto Alegre, Brazil",
"when": "April 23, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "JSUnconf",
"url": "http://2016.jsunconf.eu/",
"where": "Hamburg, Germany",
"when": "April 23-24, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "JET Conference",
"url": "",
"where": "Belarus,Minsk",
"when": "April 25th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Future of Web Design London",
"url": "https://futureofwebdesign.com/london-2016/",
"where": "London, England",
"when": "April 25-27, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Open Vis Conf",
"url": "https://openvisconf.com/",
"where": "Boston, MA, USA",
"when": "April 25–26, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "M2M WORLD CONGRESS 2016",
"url": "http://www.m2mconference.com/",
"where": "London, UK",
"when": "April 26–27, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Squares Conference",
"url": "http://squaresconference.com/",
"where": "Dallas (Grapevine), Texas USA",
"when": "April 27-29, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Workshop: Angular 2",
"url": "",
"where": "England,London",
"when": "April 29th, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "JSDayES 2016",
"url": "http://jsday.es/",
"where": "Madrid, Spain",
"when": "April 29-30, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Front in Rio – HTML Edition",
"url": "http://frontinrio.com.br/",
"where": "Rio de Janeiro, Brazil",
"when": "April 30, 2016",
"month": "April",
"submissionDeadline": ""
},
{
"title": "Future Insights Live",
"url": "https://futureinsightslive.com/",
"where": "Chicago, Illinois USA",
"when": "May 2-5, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "ng-conf",
"url": "http://www.ng-conf.org/",
"where": "Salt Lake City, Utah USA",
"when": "May 4-6, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "IA Summit 2016",
"url": "http://2016.iasummit.org/",
"where": "Atlanta, GA, USA",
"when": "May 4–8, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Syntax Convention",
"url": "http://syntaxcon.com/",
"where": "Charleston, South Carolina USA",
"when": "May 6-7, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Beyond Tellerrand",
"url": "http://beyondtellerrand.com/",
"where": "Düsseldorf, Germany",
"when": "May 9-11, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "DRUPALCON",
"url": "https://events.drupal.org/neworleans2016",
"where": "New Orleans, LA, USA",
"when": "May 9–13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "CSSConf Budapest",
"url": "http://cssconfbp.rocks/",
"where": "Budapest, Hungary",
"when": "May 11, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "jsday",
"url": "http://2016.jsday.it/",
"where": "Verona, Italy",
"when": "May 11-12, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "UX Alive",
"url": "http://www.uxalive.com/",
"where": "Istanbul, Turkey",
"when": "May 11-13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "JsDay",
"url": "http://2016.jsday.it/",
"where": "Verona, Italy",
"when": "May 11–12, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "UX Alive",
"url": "http://www.uxalive.com/",
"where": "Istanbul, Turkey",
"when": "May 11–13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "JSConf Budapest",
"url": "http://jsconfbp.com/",
"where": "Budapest, Hungary",
"when": "May 12-13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Create Upstate",
"url": "http://createupstate.com/",
"where": "Syracuse, NY, USA",
"when": "May 12–13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Front",
"url": "http://www.frontutah.com/",
"where": "Salt Lake City, UT, USA",
"when": "May 12–13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "JSConf Budapest",
"url": "http://jsconfbp.com/",
"where": "Budapest, Hungary",
"when": "May 12–13, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "phpDay",
"url": "http://2016.phpday.it/",
"where": "Verona, Italy",
"when": "May 13–14, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "An Event Apart Boston",
"url": "http://aneventapart.com/event/boston-2016",
"where": "Boston, Massachusetts USA",
"when": "May 16-18, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "SDD Conf",
"url": "http://www.sddconf.com/",
"where": "London, UK",
"when": "May 16–20, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "OSCON",
"url": "http://conferences.oreilly.com/oscon/open-source-us",
"where": "Austin, TX, USA",
"when": "May 18–19, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "UX London",
"url": "http://2016.uxlondon.com/",
"where": "London, UK",
"when": "May 18–20, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Front-Trends",
"url": "http://front-trends.com/",
"where": "Warsaw, Poland",
"when": "May 18–20, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "PhoneGap Day EU 2016",
"url": "http://pgday.phonegap.com/eu2016/",
"where": "Amsterdam, Netherlands",
"when": "May 19-20, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Port 80",
"url": "http://port80events.co.uk/",
"where": "Newport, UK",
"when": "May 20, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "JandBeyong - An international Joomla! Conference",
"url": "http://JandBeyong.org/",
"where": "Barcelona, Spain",
"when": "May 20-22, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "GOTO Chicago",
"url": "http://gotocon.com/chicago-2016",
"where": "Chicago, IL, USA",
"when": "May 23–26, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "User Experience Lisbon",
"url": "https://www.ux-lx.com/",
"where": "Lisbon, Portugal",
"when": "May 24-27, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "DevSum16",
"url": "http://www.devsum.se/",
"where": "Stockholm, Sweden",
"when": "May 25-27, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Empire JS",
"url": "http://empirejs.org/",
"where": "New York City, New York USA",
"when": "May 26-27, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Frontend United",
"url": "http://frontendunited.org/",
"where": "Ghent, Belgium",
"when": "May 27-28, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "UpFront 2016",
"url": "http://upfrontconf.com/",
"where": "Manchester, UK",
"when": "May 27, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Sud Web 2016",
"url": "http://sudweb.fr/",
"where": "Bordeaux, France",
"when": "May 27–28, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "Webinale 2016",
"url": "https://webinale.de/",
"where": "Berlin, Germany",
"when": "May 29–June 02, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "UXPA 2016",
"url": "http://www.uxpa2016.org/",
"where": "Seattle, WA, USA",
"when": "May 31–June 03, 2016",
"month": "May",
"submissionDeadline": ""
},
{
"title": "CSSconf Nordic 2016",
"url": "http://cssconf.no/",
"where": "Oslo, Norway",
"when": "June 1, 2016",
"month": "June",
"submissionDeadline": ""
},
{
"title": "ScotlandCSS 2016",
"url": "http://scotlandcss.launchrock.com/",
"where": "Edinburgh, UK",
"when": "June 1, 2016",
"month": "June",
"submissionDeadline": ""
},
{
"title": "Web Rebels 2016",
"url": "https://www.webrebels.org/",
"where": "Oslo, Norway",
"when": "June 2–3, 2016",
"month": "June",
"submissionDeadline": ""
},
{
"title": "Soap! 2016",
"url": "http://soapconf.com/",
"where": "Krakow, Poland",
"when": "June 2–3, 2016",
"month": "June",
"submissionDeadline": ""
},
{