-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
2202 lines (2202 loc) · 95.5 KB
/
data.json
File metadata and controls
2202 lines (2202 loc) · 95.5 KB
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
[
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 AM",
"groupname": "Product School Bangalore",
"name": "Webinar: PM in a Startup Setting by Alexa Product Lead",
"links": "https://www.meetup.com/PS-Bangalore/events/270041842/",
"attendee": "6 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "7:00 AM",
"groupname": "SouJava",
"name": "Live SouJava- Microservice Patterns - Implemented by Eclipse Microprofile",
"links": "https://www.meetup.com/SouJava/events/269602686/",
"attendee": "119 Javeiros going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "7:30 AM",
"groupname": "DevOps | CODE Event Series",
"name": "enterprise:CODE 2020",
"links": "https://www.meetup.com/DevOps-CODE-Event-Series/events/265114262/",
"attendee": "10 Mitglieder going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:00 AM",
"groupname": "DC Cybersecurity Training",
"name": "Certified CISO",
"links": "https://www.meetup.com/washington-dc-cybersecurity-training/events/267226528/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:00 AM",
"groupname": "DC Cybersecurity Training",
"name": "Certified Ethical Hacker (CEH)",
"links": "https://www.meetup.com/washington-dc-cybersecurity-training/events/267226705/",
"attendee": "3 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:00 AM",
"groupname": "Software Testing Training Courses (London)",
"name": "A4Q AI & SOFTWARE TESTING",
"links": "https://www.meetup.com/Software-Testing-Training-Courses-London/events/268855268/",
"attendee": "6 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:00 AM",
"groupname": "Agile Toulouse",
"name": "Agile & Coffee (Blagnac)",
"links": "https://www.meetup.com/Agile-Toulouse/events/mfddmrybcgbbc/",
"attendee": "11 Membres going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:30 AM",
"groupname": "Riyadh Women in Machine Learning & Data Science",
"name": "Women in Data Science (WiDS) PSU Riyadh,March 2,2020",
"links": "https://www.meetup.com/Riyadh-Women-in-Machine-Learning-and-Data-Science/events/jthbqrybcgbbc/",
"attendee": "11 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:30 AM",
"groupname": "Paris Android LiveCode",
"name": "Android Makers Virtual Edition 2020",
"links": "https://www.meetup.com/Paris-Android-LiveCode/events/269969663/",
"attendee": "9 Bugdroids going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:30 AM",
"groupname": "BeMyApp events - EMEA",
"name": "ANDROID MAKERS 2020 VIRTUAL EDITION",
"links": "https://www.meetup.com/BeMyApp-events/events/269970342/",
"attendee": "5 BeMyAppers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "8:30 AM",
"groupname": "Agile Baden (CH)",
"name": "Let’s take a mindful moment (weekly 25min mindfulness Mondays 8:30 ZOOM)",
"links": "https://www.meetup.com/Agile-Baden-CH/events/vsfmrrybcgbbc/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Agile-Lean Ireland",
"name": "Agile-Lean Ireland 2020",
"links": "https://www.meetup.com/Agile-Lean-Ireland/events/262121331/",
"attendee": "1 going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Advanced KubeFlow AI Meetup (San Francisco, Global)",
"name": "KubeFlow, TFX, GPU/TPU, Spark, TensorFlow, Kubernetes, Kafka, Scikit",
"links": "https://www.meetup.com/Advanced-KubeFlow/events/kdgwprybcgbbc/",
"attendee": "123 KubeFlow Experts going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Design Thinking 💥 Make it KLAP 💥",
"name": "Formation 1 jour - Vous donner des billes en facilitation - Animer un groupe",
"links": "https://www.meetup.com/Make-it-KLAP/events/264550995/",
"attendee": "9 KLAPERS going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Le Wagon Hong Kong - Coding Bootcamp",
"name": "Fullstack Coding Bootcamp Across the Border from Hong Kong",
"links": "https://www.meetup.com/Le-Wagon-Hong-Kong-Coding-Bootcamp/events/266041390/",
"attendee": "7 Wagoners going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Adventures with Agile",
"name": "ONLINE! Enterprise Agility Masterclass (ICP-ENT) - Georg Fasching & Sam Kiani",
"links": "https://www.meetup.com/AdventuresWithAgile/events/268602954/",
"attendee": "7 Agile Adventurers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Prefect Community",
"name": "Digital PyCon Sprint",
"links": "https://www.meetup.com/Prefect-Community/events/269553041/",
"attendee": "6 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Philadelphia Robotic Process Automation (RPA) Meetup Group",
"name": "Reboot Your Skills",
"links": "https://www.meetup.com/Philadelphia-Robotic-Process-Automation-RPA-Meetup-Group/events/269756721/",
"attendee": "9 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "IT talk Wroclaw",
"name": "DataArt Online Week",
"links": "https://www.meetup.com/DataArt-Wroclaw-IT-talk/events/269948847/",
"attendee": "6 IT-lovers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "GDG Kandahar",
"name": "Online: Introduction to Machine Learning",
"links": "https://www.meetup.com/gdgkandahar/events/270011549/",
"attendee": "12 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Learn Python NYC: Data Science, Data Analytics, Django",
"name": "PYTHON PROGRAMMING DATA ANALYTICS Day 1/5 ($1800 Pay at Door)",
"links": "https://www.meetup.com/Learn-Python-Free-Weekend-Evening-Class-New-York-NYC/events/plggprybcgbbc/",
"attendee": "3 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "Lisk Center Utrecht: Blockchain Meetup",
"name": "ONLINE Blockchain030 | Co-working Mondays",
"links": "https://www.meetup.com/LiskCenterUtrecht/events/267803510/",
"attendee": "7 Members going 5 spots left!"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "GDG Tiaret",
"name": "Firebase Study Jam 2020",
"links": "https://www.meetup.com/GDG-Tiaret/events/268269553/",
"attendee": "17 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "JavaScript and React for Beginners",
"name": "JavaScript Immersive Bootcamp",
"links": "https://www.meetup.com/JavaScript-and-React-nyc/events/269182876/",
"attendee": "4 Aspiring programmers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "SouthWest CMG - Performance Engineering & Capacity Planning",
"name": "ONLINE: Southwest CMG – Performance & Cost Optimization",
"links": "https://www.meetup.com/Southwest-Computer-Measurement-Group-SWCMG/events/269332943/",
"attendee": "9 IT Professionals going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "Python for Data Science and Machine Learning • Washington",
"name": "Online Python for Data Science Immersive",
"links": "https://www.meetup.com/Python-for-Data-Science-and-Machine-Learning-Washington/events/269525914/",
"attendee": "14 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "Python for Data Science and Machine Learning • Washington",
"name": "Online Python Immersive • Start a Career with Python (1 Week Course)",
"links": "https://www.meetup.com/Python-for-Data-Science-and-Machine-Learning-Washington/events/269525940/",
"attendee": "11 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "Python for Data Science and Machine Learning • Chicago",
"name": "Online Python Immersive • Start a Career with Python (1 Week Course)",
"links": "https://www.meetup.com/Chicago-Python-Meetup/events/269606865/",
"attendee": "3 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "AWS Polska",
"name": "AWSome Week 2020",
"links": "https://www.meetup.com/aws-polska/events/269815876/",
"attendee": "66 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "Startup & Developer - IBM Israel",
"name": "Online Workshop: Kubernetes, Docker, Containers for Beginners",
"links": "https://www.meetup.com/IBM-Startup-Developer-Tel-Aviv/events/269890614/",
"attendee": "28 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "North Texas Academy Promoting Lean-Agile Mindsets",
"name": "Lean Agile Mindset in Times of Crisis 5of5",
"links": "https://www.meetup.com/North-Texas-Academy-Promoting-Lean-Agile-Mindsets/events/269894091/",
"attendee": "3 Lean Agilist Leaders going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "NYC Startup Community",
"name": "Advice on Startup Funding and Accelerators",
"links": "https://www.meetup.com/Intro-to-the-NYC-Startup-Community/events/270047576/",
"attendee": "18 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "GDG-Damanhour",
"name": "IWD - International Women's Day - WTM",
"links": "https://www.meetup.com/GDG-Damanhour/events/268023714/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "Wien Legal Tech Meetup, FutureLaw",
"name": "Meet the Legal Techs of the Future-Law Digitale Initiative \"Corona\"",
"links": "https://www.meetup.com/Wien-Legal-Tech-FutureLaw/events/269891157/",
"attendee": "22 Mitglieder going 14 spots left!"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "GA Houston - Coding - Data - Design - Digital Marketing",
"name": "ASK ME ANYTHING: A LIFE OF A UX DESIGNER",
"links": "https://www.meetup.com/GA-Houston-Coding-Data-Design-Digital-Marketing/events/269972362/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "NASSCOM Pune Community Group",
"name": "Accelerate the Pace of Enterprise Data Estate Modernization",
"links": "https://www.meetup.com/meetup-group-zPzZQSDt/events/270022638/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "Memphis Technology User Groups",
"name": "Fighting It Together | Virtual Hackathon Kickoff",
"links": "https://www.meetup.com/memphis-technology-user-groups/events/270029992/",
"attendee": "8 Techies going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:15 AM",
"groupname": "Microsoft Azure Public Sector Meet-Up",
"name": "Learn How Azure NetApp Files Can Accelerate Your Company’s Move to the Cloud",
"links": "https://www.meetup.com/Microsoft-Azure-Public-Sector-Meet-Up/",
"attendee": "15 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "Product School San Francisco",
"name": "Product Management Live Chat by Product School CEO",
"links": "https://www.meetup.com/Product-Management-San-Francisco/",
"attendee": "5 member going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "Artificial Intelligence (AI) in Telecom",
"name": "Generative Adversarial Networks - Online Only",
"links": "https://www.meetup.com/Artificial-Intelligence-AI-in-Telecom/events/269503928/",
"attendee": "33 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "Large Scale Scrum (LeSS) in NYC",
"name": "2 more Certified Large Scale Scrum Basics (CLB) in April",
"links": "https://www.meetup.com/Large-Scale-Scrum-LeSS-in-NYC/events/269909503/",
"attendee": "18 LeSS Adopters and Supporters going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "Colorado Springs Blockchain",
"name": "Why the world needs DeFi with Alex Batlin & CryptoMondays London",
"links": "https://www.meetup.com/Colorado-Springs-Blockchain/events/269971786/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "GDG Los Angeles",
"name": "ONLINE: GDG Greater LA Community Lunch",
"links": "https://www.meetup.com/gdg-la/events/270030695/",
"attendee": "6 Developers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:45 AM",
"groupname": "Agile West Michigan",
"name": "The West Michigan Agile Community Meet Up",
"links": "https://www.meetup.com/Agile-West-Michigan/events/vplsgrybcgbbc/",
"attendee": "50 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "Permanent Beta",
"name": "Workflowy | Show and Tell met Martijn Aslander",
"links": "https://www.meetup.com/PermanentBeta/events/267510418/",
"attendee": "3 Members going 9 spots left!"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "Advanced KubeFlow Meetup (New York)",
"name": "[1 hr Free] PipelineAI, GPU, TPU, Spark, TensorFlow, Kubernetes, Kafka, Scikit",
"links": "https://www.meetup.com/Advanced-KubeFlow-Meetup-New-York/events/plbjrpybcgbbc/",
"attendee": "19 KubeFlow Experts going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "Montreal Vue.js",
"name": "009 - ORGA - Présentation du nouveau site vuemontreal.org",
"links": "https://www.meetup.com/Vue-js-Montreal/events/269903486/",
"attendee": "31 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "Large Scale Scrum (LeSS) in NYC",
"name": "Meet Dave Snowden",
"links": "https://www.meetup.com/Large-Scale-Scrum-LeSS-in-NYC/events/269918029/",
"attendee": "123 LeSS Adopters and Supporters going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "Zero Knowledge Toronto",
"name": "ZK-TOR 0x03 - At Home Edition - MPC-in-the-Head, another ZK approach",
"links": "https://www.meetup.com/Zero-Knowledge-Toronto/events/270030609/",
"attendee": "6 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "Microsoft Reactor Stockholm",
"name": "[Online session] How to set up the Growth Engine for your Startup",
"links": "https://www.meetup.com/Microsoft-Reactor-Stockholm/events/270040049/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "SAMSUNG RESEARCH, DEV and INNOVATION",
"name": "Software Engineer Hiring Event - Online Townhall Meeting",
"links": "https://www.meetup.com/Samsung-Devs-SanFrancisco/",
"attendee": "3 Samsung Devs going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:30 PM",
"groupname": "Agile People Management",
"name": "The Learning Organisation",
"links": "https://www.meetup.com/Agile-People-Management/events/266804164/",
"attendee": "6 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:30 PM",
"groupname": "IBM Tech@Home MEA",
"name": "Advanced Threat Intel & Proper Incident Qualification using AI",
"links": "https://www.meetup.com/IBM-Cloud-MEA/events/269731636/",
"attendee": "23 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:30 PM",
"groupname": "IBM Developer New York",
"name": "[Online] How to Build Solutions that Fight Back",
"links": "https://www.meetup.com/ibmcodenyc/events/269810813/",
"attendee": "28 Coders going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:30 PM",
"groupname": "Melbourne Silicon Beach",
"name": "Online Presentation | Trade Mark Registration, what is it & why should I bother?",
"links": "https://www.meetup.com/Melbourne-Silicon-Beach/events/269986006/",
"attendee": "26 Silicon Beachers going 14 spots left!"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:30 PM",
"groupname": "CTOs in London",
"name": "CTO's in London with Michael Anderson: Leading your Team Through this Crisis.",
"links": "https://www.meetup.com/CTOsinLondon/events/270040066/",
"attendee": "60 Leaders in Tech going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:30 PM",
"groupname": "IBM Cloud - New York",
"name": "How To Build Your Business on IBM Cloud - Containers",
"links": "https://www.meetup.com/IBM-Cloud-New-York/events/270051258/",
"attendee": "5 Cloud Enthusiasts going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "Miami Blockchain Society",
"name": "BlokTech x Longevity Genes: Blockchain, Aging, Supplements",
"links": "https://www.meetup.com/Miami-Blockchain-Society/events/268289011/",
"attendee": "9 Blockchainers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "IBM Developer Egypt",
"name": "Webinar (Arabic): Deploy a Python App Using Red Hat OpenShift",
"links": "https://www.meetup.com/IBM-Developer-Egypt/events/269601399/",
"attendee": "14 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "Connecticut BigData Group",
"name": "#AI Predictive Analytic Automation tools ONLINE FREE EVENT | IBM",
"links": "https://www.meetup.com/West-Haven-New-England-BigData-Group/events/269918777/",
"attendee": "9 Members going 11 spots left!"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "London Business Analytics Group",
"name": "Creating Shape Maps in Power BI (Option 1)",
"links": "https://www.meetup.com/London-Business-Analytics-Group/events/269948633/",
"attendee": "82 members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "Lisk Center Utrecht: Blockchain Meetup",
"name": "CATCH UP | LCU Community Project | Digital Identity SSI",
"links": "https://www.meetup.com/LiskCenterUtrecht/events/270039185/",
"attendee": "5 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "Microsoft BI & Power BI User Group - Finland",
"name": "Coffee Break: Microsoft BI/Data Platform online session (15 minutes)",
"links": "https://www.meetup.com/Microsoft-BI-Power-BI-User-Group-Finland/events/vtlvmrybcgbbc/",
"attendee": "7 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:00 PM",
"groupname": "Deep Reinforcement Learning (Silicon Valley)",
"name": "Certificate Program in Deep Reinforcement Learning (Online) - Session 1",
"links": "https://www.meetup.com/Deep-Reinforcement-Learning-Silicon-Valley/events/270049092/",
"attendee": "3 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "1:15 PM",
"groupname": "The Kiln",
"name": "Oh Sh*t it's Monday!'",
"links": "https://www.meetup.com/the-kiln/events/zgbjjrybcgbbc/",
"attendee": "3 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "IBM Tech@Home MEA",
"name": "IBM BPM Low Code Development",
"links": "https://www.meetup.com/IBM-Cloud-MEA/events/269744876/",
"attendee": "23 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "Startup Florence Oregon Coast",
"name": "Startup Sales & Marketing Tips",
"links": "https://www.meetup.com/Startup-Florence-Oregon-Coast/events/269862307/",
"attendee": "4 Entrepreneurs going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "API Banking Frankfurt",
"name": "Forward and Reverse",
"links": "https://www.meetup.com/API-Banking-Frankfurt/events/269932583/",
"attendee": "27 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "SAS User Group UK & Ireland",
"name": "SAS UK User Webinar Series -Python integration using SWAT & other tips...",
"links": "https://www.meetup.com/SUGUKI/events/269959367/",
"attendee": "17 SAS Users going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "Agile atelier",
"name": "Learn using Mural for online workshops - Part 1: Navigate - Add & format content",
"links": "https://www.meetup.com/Agile-atelier/events/270028883/",
"attendee": "7 Agilist(s) going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "Product Management Job Hunters San Francisco",
"name": "How to Break Into Product Management Without Prior Experience - Webinar",
"links": "https://www.meetup.com/Product-Management-Interview-Club-SF/events/270041366/",
"attendee": "4 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "2:00 PM",
"groupname": "Master of Storage",
"name": "Storage Insights Pro Introduction and Use Cases",
"links": "https://www.meetup.com/MasterOfStorage/events/270047480/",
"attendee": "24 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Office 365 & SharePoint User Group Finland #SPUGFI #TEAMSFI",
"name": "Teams Community Finland 20.4. Online tapaaminen #TeamsFi",
"links": "https://www.meetup.com/spugfi/events/268374917/",
"attendee": "35 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Haifa WordPress Meetup Group",
"name": "[Webinar] Haifa Volunteer WordPress Help Desk",
"links": "https://www.meetup.com/Haifa-WordPress-Meetup-Group/events/twdsqrybcgbbc/",
"attendee": "16 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Ethical and Trustworthy AI for Business",
"name": "Ethical and Trustworthy AI in Finance",
"links": "https://www.meetup.com/Trustworthy-AI-for-Business/events/269207604/",
"attendee": "29 Members going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Scrum Professionals",
"name": "Office Hours With Chris Sims",
"links": "https://www.meetup.com/ScrumProfessionals/events/269920155/",
"attendee": "9 scrum professionals going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Scrumvival Poznań",
"name": "Ogarnięty Scrum Master - czyli jak przygotować się do zdarzeń Scrum?",
"links": "https://www.meetup.com/scrumvival-poznan/events/269926173/",
"attendee": "2 Scrummers going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "CPHUX",
"name": "CPHUX Webinar // How to make a oneliner which describes you best",
"links": "https://www.meetup.com/CPHUXofficial/events/270039997/",
"attendee": "3 UX community member going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "UX Design et Marketing Digital",
"name": "Initiation au Design Thinking - atelier à distance",
"links": "https://www.meetup.com/Design-Thinking-Innovation/events/270041494/",
"attendee": "4 innovateurs going"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Fast Forward Design Thinking Hub SãoPaulo",
"name": "[curso online] Design Thinking em tempos de isolamento social",
"links": "https://www.meetup.com/Fast-Forward-Design-Thinking-Hub-SaoPaulo/events/270060685/",
"attendee": "12 Sprinters going 4 spots left!"
},
{
"date": "4/20/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:30 PM",
"groupname": "Product School San Francisco",
"name": "Webinar: Thinking Raw by Expedia Group Global PM",
"links": "https://www.meetup.com/Product-Management-San-Francisco/",
"attendee": "8 member going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Microsoft Reactor San Francisco",
"name": "Online Workshop: Meet the Azure Leaders series – Azure Linux VMs and Workloads",
"links": "https://www.meetup.com/Microsoft-Reactor-San-Francisco/events/269614539/",
"attendee": "4 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Metis: San Francisco Data Science",
"name": "Metis Corporate Training Series: Intro to Python Pt. 3",
"links": "https://www.meetup.com/Metis-San-Francisco-Data-Science/events/269843902/",
"attendee": "11 Aspiring Data Scientists going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Bay Area Computer Vision & Deep Learning Meetup",
"name": "AWS Machine learning SuperPowers",
"links": "https://www.meetup.com/Bay-area-computer-vision-and-deep-learning-meet-up/events/269900477/",
"attendee": "20 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Mountain View Kubernetes Meetup",
"name": "ONLINE EVENT: Making the Most of Helm 3 with Codefresh",
"links": "https://www.meetup.com/Mountain-View-Kubernetes-Meetup/events/269937988/",
"attendee": "21 Kubernauts going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Silicon Valley Entrepreneurs & Startups - SVE",
"name": "F50 Elevate Open House: Startup as usual #NewNormal",
"links": "https://www.meetup.com/sventrepreneurs/events/269993540/",
"attendee": "21 Founders,Entrepreneurs,Investors going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "Stanford High Performance Computing and Emerging Technology",
"name": "Stanford HPC-AI Advisory Council Conference ~ a virtual experience",
"links": "https://www.meetup.com/Stanford-High-Performance-Computing-and-Emerging-Technology/events/270051567/",
"attendee": "13 HPC Enthusiasts going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:00 AM",
"groupname": "San Jose Coding Bootcamp",
"name": "JavaScript Remote Study, San Jose Coding Bootcamp",
"links": "https://www.meetup.com/San-Jose-C0D3/events/phtpqrybcgbcc/",
"attendee": "4 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "9:30 AM",
"groupname": "The Founder Club SV/SF",
"name": "COVID-19 @ F50 Global Insights: Elevating HealthTech Innovation on Zoom Youtube",
"links": "https://www.meetup.com/Founder/events/kqngrrybcgbcc/",
"attendee": "5 Founders going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "Weave Online User Group",
"name": "GitOps powered management for multi-cluster Kubernetes across any cloud",
"links": "https://www.meetup.com/Weave-User-Group/events/269217604/",
"attendee": "68 Weave Users going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "10:00 AM",
"groupname": "VR/AR Association - Silicon Valley Chapter",
"name": "Smartglasses: How and when they will replace our smart phones and smart watches",
"links": "https://www.meetup.com/VR-AR-Association-Silicon-Valley/events/269946972/",
"attendee": "20 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "Lifograph San Francisco Business Networking",
"name": "NEEDS & LEADS - Lifograph Online Networking & Business Matching ($5/ticket)",
"links": "https://www.meetup.com/lifograph-san-francisco/events/269797980/",
"attendee": "9 Professionals going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:00 AM",
"groupname": "NADOG Silicon Valley",
"name": "DOGCAST! - Digital Transformation - Stage 3",
"links": "https://www.meetup.com/NADOG-SiliconValley/",
"attendee": "5 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "Product School Silicon Valley",
"name": "Product Management Live Chat by Amazon Web Services Senior PM",
"links": "https://www.meetup.com/productmanagementSV/events/268114773/",
"attendee": "9 Aspiring Product Managers going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "11:30 AM",
"groupname": "Product School San Francisco",
"name": "Webinar: How to Apply PM Principles to Your Life by Fitbit Sr PM",
"links": "https://www.meetup.com/Product-Management-San-Francisco/",
"attendee": "20 member going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "12:00 PM",
"groupname": "SF Bay Area Game Jamming & Game Design",
"name": "***VIRTUAL*** MADE Coworking",
"links": "https://www.meetup.com/SF-Bay-Area-Game-Jamming-Game-Design/events/pgmhcqybcgbcc/",
"attendee": "3 Jammers going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:00 PM",
"groupname": "Flatiron School SF | Coding, Data Science, UX/UI Design",
"name": "[Webinar] Future Focus: Learning at Any Age",
"links": "https://www.meetup.com/Flatiron-School-Bay-Area-San-Francisco/events/269406720/",
"attendee": "3 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:30 PM",
"groupname": "Product School San Francisco",
"name": "Webinar: Growth Optimization: Metrics & Frameworks by MasterClass Sr PM",
"links": "https://www.meetup.com/Product-Management-San-Francisco/",
"attendee": "20 member going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "3:30 PM",
"groupname": "Build With Code - San Francisco",
"name": "Web Development Fundamentals: HTML & CSS (Remote Only)",
"links": "https://www.meetup.com/build-with-code-SF/events/270048967/",
"attendee": "5 Members going"
},
{
"date": "4/21/20",
"state": "San-Francisco",
"category": "Technology,business",
"time": "4:00 PM",
"groupname": "Microsoft Reactor San Francisco",
"name": "Online Workshop - Overview of Django",
"links": "https://www.meetup.com/Microsoft-Reactor-San-Francisco/events/269894753/",
"attendee": "14 Members going"