-
Notifications
You must be signed in to change notification settings - Fork 1
/
myEventArray.json
1000 lines (988 loc) · 43.3 KB
/
myEventArray.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
[
{
"created": 1468330122000,
"duration": 10800000,
"id": "232560779",
"name": "Front-End Coders - 9 April 2022 Meetup",
"rsvp_limit": 20,
"date_in_series_pattern": false,
"status": "upcoming",
"time": 1469858400000,
"local_date": "2022-04-09",
"local_time": "10am to 2pm",
"rsvp_close_offset": "PT16H",
"updated": 1470053358000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 22,
"venue": {
"id": 24574319,
"name": "Prodigious Office",
"lat": -20.26485252380371,
"lon": 57.48430633544922,
"repinned": false,
"address_1": "Maeva Tower Ebene",
"city": "Maeva Tower Ebene",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Maeva Tower Ebene, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/232560779/",
"description": "<p>3 Presentation + 1 Open Ended Q&A Session, [Intro: 10:00 - 10:10] [Presentation 1: 10:15 - 10:45] [Presentation 2: 10:50 - 11: 30] [Sponsors Segment Perhaps ?: 11.35 - 11:45] [Lunch: 11:45 - 12:45] [Presentation 3: 12:50 - 13:15] [Open Session: 13.20 - 14:00] </p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
},
{
"created": 1468330122000,
"duration": 10800000,
"id": "232560779",
"name": "#1 Front-End Mauritius Meetup July 2016",
"rsvp_limit": 23,
"date_in_series_pattern": false,
"status": "past",
"time": 1469858400000,
"local_date": "2016-07-30",
"local_time": "10:00",
"rsvp_close_offset": "PT16H",
"updated": 1470053358000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 22,
"venue": {
"id": 24574319,
"name": "Extension Interactive",
"lat": -20.26485252380371,
"lon": 57.48430633544922,
"repinned": false,
"address_1": "14 Avenue des Lataniers, Quatre Bornes",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/232560779/",
"description": "<p>Agenda:</p> <p>\u2022 10h00: Front-End developers Mauritius presentation<br/>\u2022 10h10: \"A reasonable coding approach to CSS and Sass\" by Umar Waliyullah<br/>\u2022 11h00: \"Vue.js Jumpstart\" by Humeira Diljore<br/>\u2022 11h45: \"Le futur, c'est maintenant avec CSS4\" by David Dias<br/>\u2022 12h30: Open discussions<br/>\u2022 13h00: END</p> ",
"visibility": "public",
"images": [
"/gallery/2016/july-30/highres_452614887.jpeg",
"/gallery/2016/july-30/highres_452614888.jpeg",
"/gallery/2016/july-30/highres_452614889.jpeg",
"/gallery/2016/july-30/highres_452614891.jpeg",
"/gallery/2016/july-30/highres_452614892.jpeg",
"/gallery/2016/july-30/highres_452614894.jpeg",
"/gallery/2016/july-30/highres_452614895.jpeg",
"/gallery/2016/july-30/highres_452614896.jpeg"
],
"member_pay_fee": false
},
{
"created": 1468330122000,
"duration": 10800000,
"id": "232561779",
"name": "#1 Front-End Mauritius Meetup September 2016",
"rsvp_limit": 23,
"date_in_series_pattern": false,
"status": "past",
"time": 1469858400000,
"local_date": "2016-09-30",
"local_time": "10:00",
"rsvp_close_offset": "PT16H",
"updated": 1470053358000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 22,
"venue": {
"id": 24574319,
"name": "Extension Interactive",
"lat": -20.26485252380371,
"lon": 57.48430633544922,
"repinned": false,
"address_1": "14 Avenue des Lataniers, Quatre Bornes",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/232560779/",
"description": "<p>Agenda:</p> <p>\u2022 10h00: Front-End developers Mauritius presentation<br/>\u2022 10h10: \"A reasonable coding approach to CSS and Sass\" by Umar Waliyullah<br/>\u2022 11h00: \"Vue.js Jumpstart\" by Humeira Diljore<br/>\u2022 11h45: \"Le futur, c'est maintenant avec CSS4\" by David Dias<br/>\u2022 12h30: Open discussions<br/>\u2022 13h00: END</p> ",
"visibility": "public",
"images": [
"/gallery/2016/sept-30/highres_453958027.jpeg",
"/gallery/2016/sept-30/highres_453958031.jpeg",
"/gallery/2016/sept-30/highres_453994900.jpeg",
"/gallery/2016/sept-30/highres_453994901.jpeg",
"/gallery/2016/sept-30/highres_453994902.jpeg",
"/gallery/2016/sept-30/highres_453994903.jpeg",
"/gallery/2016/sept-30/highres_453994904.jpeg",
"/gallery/2016/sept-30/highres_453995480.jpeg",
"/gallery/2016/sept-30/highres_453995481.jpeg"
],
"member_pay_fee": false
},
{
"created": 1515656714000,
"duration": 7200000,
"id": "246706424",
"name": "Front-End Coders Meetup",
"date_in_series_pattern": false,
"status": "cancelled",
"time": 1516437000000,
"local_date": "2018-01-20",
"local_time": "12:30",
"updated": 1516442856000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 32,
"venue": {
"id": 25689150,
"name": "LSL Digital",
"lat": -20.164649963378906,
"lon": 57.50151824951172,
"repinned": false,
"address_1": "Brown Sequard Street",
"city": "Port Louis",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/246706424/",
"description": "<p>**UPDATE**<br/>The Front-end Coders meetup scheduled for today has been postponed to next week due to bad weather conditions!</p> <p>We are holding our first 2018 meetup at the offices of LSL Digital in Port-Louis. It\u2019s a free event and everyone is welcome. Join us to discover presentations on topics including CSS grids and insights on how to freelance by members of our community and participate in coding activities. It is a great way to share ideas and meet like-minded people.</p> <p>Schedule and plan :<br/>12:30 - 12:50 : A keylogger using CSS only (Sun)<br/>13:00 - 13:20 : Going Freelance ( Cedric )<br/>13:30 - 13:50 : Discover CSS Grid<br/>14:00 - 14:30 : Open Q&A and Coding Challenges</p> <p>Food<br/>We will provide a light snacks for attendees. Vegetarian options will be available. Alternatively, there are local shops and cafes nearby.</p> <p>Tickets<br/>This is a free event and seats are limited. Please RSVP.</p> <p>Who are we?<br/>Front-End Coders is a global community for web professionals and students which focuses on education, innovation and networking.</p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
},
{
"created": 1516961721000,
"duration": 7200000,
"id": "247184015",
"name": "Front-End Coders Meetup",
"rsvp_limit": 30,
"date_in_series_pattern": false,
"status": "past",
"time": 1517646600000,
"local_date": "2018-02-03",
"local_time": "12:30",
"updated": 1517669519000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 30,
"venue": {
"id": 25689150,
"name": "LSL Digital",
"lat": -20.164649963378906,
"lon": 57.50151824951172,
"repinned": false,
"address_1": "Brown Sequard Street",
"city": "Port Louis",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/247184015/",
"description": "<p>We are holding our first 2018 meetup at the offices of LSL Digital in Port-Louis. It\u2019s a free event and everyone is welcome. Join us to discover presentations on topics including CSS grids and insights on how to freelance by members of our community and participate in coding activities. It is a great way to share ideas and meet like-minded people.</p> <p>Schedule and plan :<br/>12:30 - 12:50 : A keylogger using CSS only (Sun)<br/>13:00 - 13:20 : Going Freelance ( Cedric )<br/>13:30 - 13:50 : Discover CSS Grid<br/>14:00 - 14:30 : Open Q&A and Coding Challenges</p> <p>Tickets<br/>This is a free event but seats are limited. Please RSVP.</p> <p>Who are we?<br/>Front-End Coders is a global community for web professionals and students which focuses on education, innovation and networking.</p> ",
"how_to_find_us": "Above Radio One",
"visibility": "public",
"images": [
"/gallery/2018/feb-03/highres_468136655.jpeg",
"/gallery/2018/feb-03/highres_468136724.jpeg",
"/gallery/2018/feb-03/highres_468136749.jpeg",
"/gallery/2018/feb-03/highres_468136761.jpeg",
"/gallery/2018/feb-03/highres_468136765.jpeg",
"/gallery/2018/feb-03/highres_468136853.jpeg",
"/gallery/2018/feb-03/highres_468136868.jpeg",
"/gallery/2018/feb-03/highres_468136902.jpeg",
"/gallery/2018/feb-03/highres_468136923.jpeg",
"/gallery/2018/feb-03/highres_468136957.jpeg",
"/gallery/2018/feb-03/highres_468136986.jpeg",
"/gallery/2018/feb-03/highres_468137599.jpeg",
"/gallery/2018/feb-03/highres_468141802.jpeg",
"/gallery/2018/feb-03/highres_468141828.jpeg",
"/gallery/2018/feb-03/highres_468143995.jpeg",
"/gallery/2018/feb-03/highres_468144020.jpeg",
"/gallery/2018/feb-03/highres_468144035.jpeg",
"/gallery/2018/feb-03/highres_468144066.jpeg"
],
"member_pay_fee": false
},
{
"created": 1530625537000,
"duration": 12600000,
"id": "252398968",
"name": "TypeScript: A gentle introduction",
"rsvp_limit": 30,
"date_in_series_pattern": false,
"status": "past",
"time": 1537599600000,
"local_date": "2018-09-22",
"local_time": "11:00",
"updated": 1537614068000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 25,
"venue": {
"id": 24574319,
"name": "Extension Interactive",
"lat": -20.26485252380371,
"lon": 57.48430633544922,
"repinned": true,
"address_1": "14 Avenue des Lataniers, Quatre Bornes",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/252398968/",
"description": "<p>Session 1 : Introduction to TypeScript by Saamiyah - Front-end Coders<br/>Session 2: How KDE is perfect for you! by Privi - LUGM</p> <p>TypeScript is a typed superset of javascript. It can be used across the whole JavaScript ecosystem, and works well with frameworks such as Angular, React, Vue and NodeJS.</p> <p>It has been designed to meet the needs of JavaScript programming teams that build and maintain large JavaScript programs.</p> <p>Come join us to learn about TypeScript and improve your understanding of the language.</p> <p>Speaker: Saamiyah ~ Software developer @ Maureva LTD</p> <p>---------------------------------------------------------------<br/>How KDE is perfect for you!</p> <p>From the Big Bang to KDE</p> <p>An overview of the Technology underneath KDE and what makes it tick<br/>Advanced usage of a Desktop and what you have been missing all these years</p> <p>Introduction to plasma, plasmoids and qml</p> <p>If possible create a KDE Hello world app as well as a webapp.<br/>Speaker: Pritvi Jheengut - The one and only<br/>---------------------------------------------------------------</p> <p>Session 3 : Surprise !</p> ",
"how_to_find_us": "Call Sun, 57083334",
"visibility": "public",
"images": [
"/gallery/2018/sep-22/highres_474982918.jpeg",
"/gallery/2018/sep-22/highres_474982920.jpeg",
"/gallery/2018/sep-22/highres_474982922.jpeg",
"/gallery/2018/sep-22/highres_474982923.jpeg",
"/gallery/2018/sep-22/highres_474982926.jpeg"
],
"member_pay_fee": false
},
{
"created": 1550242177000,
"duration": 12600000,
"id": "258989793",
"name": "Front-End Coders x MSCC",
"rsvp_limit": 20,
"date_in_series_pattern": false,
"status": "past",
"time": 1550905200000,
"local_date": "2019-02-23",
"local_time": "11:00",
"rsvp_open_offset": "PT163H30M",
"rsvp_close_offset": "PT11H1M",
"updated": 1550921285000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 12,
"venue": {
"id": 26176152,
"name": "Makerspace",
"lat": -20.29543685913086,
"lon": 57.48204040527344,
"repinned": false,
"address_1": "Vingta Lane 1",
"address_2": "Modern",
"city": "Vacoas-Phoenix",
"country": "MU",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/258989793/",
"description": "<p>Location<br/>Makerspace / Generation Plus Ltd<br/>Vacoas-Phoenix<br/><a href=\"https://maps.app.goo.gl/Z9sYP\" class=\"linkified\">https://maps.app.goo.gl/Z9sYP</a></p> <p>Timing<br/>Start time: 11:00 am<br/>End time: 2:30 pm<br/>Lunch: 12:20 pm - 1:10 pm</p> <p>Slot details<br/>Total duration: 40 min<br/>Sections: setup - presentation - QnA</p> <p>Presentations - Speakers</p> <p>Christophe Ramsamy<br/>\u201cIntroduction to Heroku, or how to send your pet projects to the cloud\u201d</p> <p>Bilkiss Dulloo<br/>\u201cTranslating an angular application into a mobile app with ionic\u201d</p> <p>Rahul Thakoor<br/>\"Hardware programming for javascript developers?\"</p> ",
"how_to_find_us": "https://maps.app.goo.gl/Z9sYP",
"images": [
"/gallery/2019/feb-23/600_478910874.jpeg",
"/gallery/2019/feb-23/highres_478910874.jpeg",
"/gallery/2019/feb-23/highres_478910885.jpeg",
"/gallery/2019/feb-23/highres_478910918.jpeg",
"/gallery/2019/feb-23/highres_478912135.jpeg",
"/gallery/2019/feb-23/highres_478912152.jpeg",
"/gallery/2019/feb-23/highres_478912387.jpeg",
"/gallery/2019/feb-23/highres_478912485.jpeg",
"/gallery/2019/feb-23/highres_478913145.jpeg",
"/gallery/2019/feb-23/highres_478916228.jpeg",
"/gallery/2019/feb-23/highres_478916236.jpeg",
"/gallery/2019/feb-23/highres_478916239.jpeg",
"/gallery/2019/feb-23/highres_478916248.jpeg",
"/gallery/2019/feb-23/highres_478916262.jpeg",
"/gallery/2019/feb-23/highres_478916264.jpeg",
"/gallery/2019/feb-23/highres_478916270.jpeg",
"/gallery/2019/feb-23/highres_478916283.jpeg",
"/gallery/2019/feb-23/highres_478916284.jpeg",
"/gallery/2019/feb-23/highres_478916289.jpeg",
"/gallery/2019/feb-23/highres_478916301.jpeg",
"/gallery/2019/feb-23/highres_478916312.jpeg",
"/gallery/2019/feb-23/highres_478916330.jpeg",
"/gallery/2019/feb-23/highres_478916347.jpeg",
"/gallery/2019/feb-23/highres_478916353.jpeg",
"/gallery/2019/feb-23/highres_478916362.jpeg",
"/gallery/2019/feb-23/highres_478916367.jpeg",
"/gallery/2019/feb-23/highres_478921173.jpeg",
"/gallery/2019/feb-23/highres_478921191.jpeg",
"/gallery/2019/feb-23/highres_478921199.jpeg",
"/gallery/2019/feb-23/highres_478921208.jpeg"
],
"visibility": "public",
"member_pay_fee": false
},
{
"created": 1559317699000,
"duration": 16200000,
"id": "261929807",
"name": "Front-End Coders Monthly - JUNE",
"rsvp_limit": 30,
"date_in_series_pattern": false,
"status": "past",
"time": 1561181400000,
"local_date": "2019-06-22",
"local_time": "09:30",
"rsvp_close_offset": "PT18H",
"updated": 1561199079000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 20,
"venue": {
"id": 26434455,
"name": "Techsphere Labs",
"lat": -20.223800659179688,
"lon": 57.51654815673828,
"repinned": true,
"address_1": "Souvenir Street, Gentilly Rd, Moka",
"city": "Moka",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/261929807/",
"description": "<p>Front End Coders welcomes you to June's monthly meetup!<br/>Join us for front-end talks and some announcements about tech scene!</p> <p>Location<br/>Techsphere Labs,<br/>Moka<br/><a href=\"https://goo.gl/maps/b3mp3Aa57rfFFex8A\" class=\"linkified\">https://goo.gl/maps/b3mp3Aa57rfFFex8A</a></p> <p>Date: 22 June 2019</p> <p>Timing:<br/>Start: 9:30 am<br/>Finish: 2:00 pm<br/>Lunch: 12:30 pm - 1:15 pm</p> <p>No worries, lunch is on us! 😉</p> <p>Max capacity: 25 attendees</p> <p>Agenda:<br/>- Three presentations<br/>- Announcements</p> <p>Line-up, Topic - Speaker:<br/>CSS Name Spaces - Kushul Soomaree<br/>Web Components - Cedric Poilly<br/>Functional JavaScript - Christophe Ramsammy<br/>\"Tech Topic Discussions\" - Sandeep Ramgoolam</p> <p>Slot guidelines (40 min):<br/>- presentation duration: 30 min<br/>- Q & A duration: 10 min</p> ",
"how_to_find_us": "Please call Bilkiss for instructions at 5740 4845",
"visibility": "public",
"images": [
"/gallery/2019/jun-22/highres_482440641.jpeg",
"/gallery/2019/jun-22/highres_482440657.jpeg",
"/gallery/2019/jun-22/highres_482440670.jpeg",
"/gallery/2019/jun-22/highres_482451589.jpeg",
"/gallery/2019/jun-22/highres_482452367.jpeg",
"/gallery/2019/jun-22/highres_482452375.jpeg",
"/gallery/2019/jun-22/highres_482456961.jpeg",
"/gallery/2019/jun-22/highres_482456972.jpeg",
"/gallery/2019/jun-22/highres_482456978.jpeg",
"/gallery/2019/jun-22/highres_482456989.jpeg",
"/gallery/2019/jun-22/highres_482456993.jpeg",
"/gallery/2019/jun-22/highres_482755269.jpeg",
"/gallery/2019/jun-22/highres_482755278.jpeg",
"/gallery/2019/jun-22/highres_482755282.jpeg",
"/gallery/2019/jun-22/highres_482755300.jpeg",
"/gallery/2019/jun-22/highres_482755369.jpeg",
"/gallery/2019/jun-22/highres_482755374.jpeg",
"/gallery/2019/jun-22/highres_482755378.jpeg"
],
"member_pay_fee": false
},
{
"created": 1562752011000,
"duration": 7200000,
"id": "263025328",
"name": "Front-End Coders Monthly - JULY",
"rsvp_limit": 30,
"date_in_series_pattern": false,
"status": "past",
"time": 1563602400000,
"local_date": "2019-07-20",
"local_time": "10:00",
"rsvp_close_offset": "PT16H30M",
"updated": 1563613163000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 7,
"venue": {
"id": 26434455,
"name": "Techsphere Labs",
"lat": -20.2242374420166,
"lon": 57.5082893371582,
"repinned": true,
"address_1": "Souvenir Street, Gentilly Rd, Moka",
"city": "Moka",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/263025328/",
"description": "<p>Front End Coders welcomes you to July's monthly meetup!<br/>Join us for front-end presentations and tech discussions!</p> <p># Location:<br/>Techsphere Labs,<br/>Moka<br/><a href=\"https://goo.gl/maps/b3mp3Aa57rfFFex8A\" class=\"linkified\">https://goo.gl/maps/b3mp3Aa57rfFFex8A</a></p> <p>Date: 20 July 2019</p> <p># Timing:<br/>Start: 10:00<br/>Finish: 12:00</p> <p>Max capacity: 25 attendees</p> <p>Agenda:<br/>- Three presentations<br/>- Announcements</p> <p># Topic - Speaker</p> <p>\"Set up a blog with Netlify in less than 10 minutes. \" - Humeira Diljore</p> <p>\"What the Svelte!?\" - Jules Michaël</p> <p>\"Angular tips - solving some common problems\" - Bilkiss Dulloo</p> ",
"how_to_find_us": "Please call Bilkiss for instructions at 5740 4845",
"visibility": "public",
"images": [
"/gallery/2019/jul-20/highres_483282401.jpeg",
"/gallery/2019/jul-20/highres_483282431.jpeg",
"/gallery/2019/jul-20/highres_483282435.jpeg",
"/gallery/2019/jul-20/highres_483282441.jpeg",
"/gallery/2019/jul-20/highres_483282443.jpeg",
"/gallery/2019/jul-20/highres_483282446.jpeg",
"/gallery/2019/jul-20/highres_483282488.jpeg",
"/gallery/2019/jul-20/highres_483282499.jpeg",
"/gallery/2019/jul-20/highres_483282508.jpeg",
"/gallery/2019/jul-20/highres_483282516.jpeg",
"/gallery/2019/jul-20/highres_483282522.jpeg",
"/gallery/2019/jul-20/highres_483282524.jpeg",
"/gallery/2019/jul-20/highres_483282531.jpeg",
"/gallery/2019/jul-20/highres_483284536.jpeg",
"/gallery/2019/jul-20/highres_483284540.jpeg"
],
"member_pay_fee": false
},
{
"created": 1568567585000,
"duration": 18000000,
"id": "264869963",
"name": "Front-End Coders Monthly - SEPTEMBER",
"rsvp_limit": 30,
"date_in_series_pattern": false,
"status": "past",
"time": 1569045600000,
"local_date": "2019-09-21",
"local_time": "10:00",
"updated": 1569065201000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 12,
"venue": {
"id": 24574319,
"name": "Extension Interactive",
"lat": -20.26485252380371,
"lon": 57.48430633544922,
"repinned": false,
"address_1": "14 Avenue des Lataniers, Quatre Bornes",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/264869963/",
"description": "<p>Let's get ready for October! Front-End Coders is there you help you get ready for the Hacktoberfest & the Google DevFest! ✌🏼</p> <p># Location:<br/>Extension Interactive Maurice<br/>14 Avenue des Lataniers, Quatre Bornes<br/><a href=\"https://maps.app.goo.gl/qcgwPuGKRqnnpWnu9\" class=\"linkified\">https://maps.app.goo.gl/qcgwPuGKRqnnpWnu9</a></p> <p>Date: 21 September 2019</p> <p># Timing:<br/>Start: 10:00<br/>Finish: 15:00</p> <p>Max capacity: 25 attendees</p> <p># Agenda:<br/>- Presentation & preparations for Hacktoberfest, with Pritvi! 🤘🏼<br/>- Practice runs for Google DevFest: test your presentation & collect feedback. 😉</p> <p># FREE FOOD 🍕</p> ",
"visibility": "public",
"images": [
"/gallery/2019/sep-21/600_485064253.jpeg",
"/gallery/2019/sep-21/676x380.webp",
"/gallery/2019/sep-21/676x380 (1).jpg",
"/gallery/2019/sep-21/676x380 (1).png",
"/gallery/2019/sep-21/highres_485066938.jpeg",
"/gallery/2019/sep-21/highres_485067973.jpeg",
"/gallery/2019/sep-21/highres_485067977.jpeg",
"/gallery/2019/sep-21/highres_485067979.jpeg",
"/gallery/2019/sep-21/highres_485067984.jpeg"
],
"member_pay_fee": false
},
{
"created": 1579606509000,
"duration": 18000000,
"id": "268082737",
"name": "Front-End Coders Monthly - Jan 2020",
"rsvp_limit": 20,
"date_in_series_pattern": false,
"status": "cancelled",
"time": 1580538600000,
"local_date": "2020-02-01",
"local_time": "10:30",
"rsvp_close_offset": "PT30M",
"updated": 1580545281000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 14,
"venue": {
"id": 26822706,
"name": "Bocasay (Maurice)",
"lat": -20.245864868164062,
"lon": 57.490169525146484,
"repinned": true,
"address_1": "51A Rue du Savoir",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/268082737/",
"description": "<p>Hello Front-End Coders!<br/>Let's meet this Saturday and start 2020 with our first monthly meetup. ✌️</p> <p>Thanks to Bocasay (<a href=\"https://www.bocasay.com/\" class=\"linkified\">https://www.bocasay.com/</a>) & Tristan Hebert for hosting us!</p> <p>Location<br/>Bocasay (Maurice)<br/>51A Rue du Savoir, Ebene 72201<br/><a href=\"https://maps.app.goo.gl/dvHE768DM2zonnoq5\" class=\"linkified\">https://maps.app.goo.gl/dvHE768DM2zonnoq5</a></p> <p>Date: (POSTPONED) Tentatively Saturday 1st Feb</p> <p>Contact:<br/>Sandeep -[masked]<br/>Cedric -[masked]</p> <p>Timing:<br/>Start: 10:00<br/>Finish: 15:00</p> <p>Max capacity: 20 people</p> <p>Agenda:<br/>- Discuss the yearly organisation of Front-End Coders<br/>- Discuss potential activities as Front-End Coders for the DevCon<br/>- Discuss Contributing to the Devcon(2020) website<br/>- Practice runs for DevCon presentations</p> <p># FREE FOOD 🍕</p> ",
"how_to_find_us": "Opposite to the MCCI, in the building where there's a Sony outlet.",
"images": null,
"visibility": "public",
"member_pay_fee": false
},
{
"created": 1580312953000,
"duration": 16200000,
"id": "268295472",
"name": "Front-End Coders Monthly #1 - 15 Feb 2020",
"rsvp_limit": 20,
"date_in_series_pattern": false,
"status": "past",
"time": 1581748200000,
"local_date": "2020-02-15",
"local_time": "10:30",
"updated": 1581767515000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 20,
"venue": {
"id": 26822706,
"name": "Bocasay (Maurice)",
"lat": -20.245864868164062,
"lon": 57.490169525146484,
"repinned": true,
"address_1": "51A Rue du Savoir",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/268295472/",
"description": "<p>Hello Front-End Coders!<br/>Let's meet on the Saturday 15th of Feb and start 2020 with our first monthly meetup. ✌️</p> <p>Thanks to Bocasay (<a href=\"https://www.bocasay.com/\" class=\"linkified\">https://www.bocasay.com/</a>) & Tristan Hebert for hosting us!</p> <p>Location<br/>Bocasay (Maurice)<br/>51A Rue du Savoir, Ebene 72201<br/><a href=\"https://maps.app.goo.gl/dvHE768DM2zonnoq5\" class=\"linkified\">https://maps.app.goo.gl/dvHE768DM2zonnoq5</a></p> <p>Contact:<br/>Sandeep -[masked]<br/>Cedric -[masked]</p> <p>Timing:<br/>Start: 10:30<br/>Finish: 15:00</p> <p>Max capacity: 20 people</p> <p>Agenda:<br/>- Discuss the yearly organisation of Front-End Coders - Open Floor<br/>- Discuss Contributing to the Devcon(2020) website - Sandeep Ramgolam<br/>- Callbacks & Promises for asynchronous JavaScript - Cedric Poilly<br/>- Practice runs for DevCon presentations - FFA (We already have one. Others are most welcome)</p> <p># FREE FOOD 🍕</p> ",
"how_to_find_us": "Opposite to the MCCI, in the building where there's a Sony outlet.",
"images": null,
"visibility": "public",
"member_pay_fee": false
},
{
"created": 1582641194000,
"duration": 16200000,
"id": "268977842",
"name": "Front-End Coders Monthly #2 - 21 Mar 2020",
"rsvp_limit": 35,
"date_in_series_pattern": false,
"status": "cancelled",
"time": 1584772200000,
"local_date": "2020-03-21",
"local_time": "10:30",
"rsvp_open_offset": "PT336H",
"rsvp_close_offset": "PT25H30M",
"updated": 1584777927000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 20,
"venue": {
"id": 26883522,
"name": "Middlesex University Mauritius",
"lat": -20.280248641967773,
"lon": 57.39696502685547,
"repinned": true,
"address_1": "Coastal Rd, Flic en Flac",
"city": "Flic en Flac",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/268977842/",
"description": "<p>⚠️ UPDATES 15/03/2020 ⚠️<br/>---<br/>Due to the current situation and for safety reasons. We think it's best that we avoid gatherings right now. We have decided to postponed the next front-end coders meetup. The next date will be communicated on meetup as usual. Let us know if you would be interested in an online meetup ?</p> <p>Thank you for your understanding.<br/>Wash your hands and stay safe<br/>Front-end Coders Team<br/>---</p> <p>Hello Front-End Coders & Crafts(wo)men!</p> <p>Let's meet on the Saturday 21st of March for FEC's second monthly meetup: a joint event with the MSCC! 🥳🎉</p> <p>Thanks to Middlesex University Mauritius for hosting us!</p> <p>Location<br/><a href=\"https://goo.gl/maps/FMxhexL8qqAWLwDy7\" class=\"linkified\">https://goo.gl/maps/FMxhexL8qqAWLwDy7</a></p> <p>Contact:<br/>Sandeep -[masked]<br/>Cedric -[masked]</p> <p>Timing:<br/>Start: 10:30<br/>Finish: 15:00</p> <p>Max capacity:<br/>TBD</p> <p>Agenda:<br/>- VueJS Mauritius<br/>- JWT (JSON Web Token) from Back-End to Front-End (with Vue.js)<br/>- PWAs: Beyond The Service Worker (with Vue.js)<br/>- Basic Concept of React.js</p> <p># FREE FOOD 🍕</p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
},
{
"created": 1586864936000,
"duration": 5400000,
"id": "270040148",
"name": "Front-end Coders x Gophermu April Online Meetup",
"date_in_series_pattern": false,
"status": "past",
"time": 1587484800000,
"local_date": "2020-04-21",
"local_time": "20:00",
"updated": 1587494430000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 21,
"venue": {
"address_1": "online",
"id": 26906060,
"name": "Online event",
"repinned": false,
"country": "",
"localized_country_name": ""
},
"is_online_event": true,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/270040148/",
"description": "<p>Join us for an online meetup to talk about the front-end world and a few interesting topics !</p> <p>Also joining us will be GophersMU group to talk about go and do some small presentations.</p> <p># Topics<br/>- Exploring Vue Composition API (Sandeep)<br/>- Vue experience sharing (Kushul)<br/>- Go Routines (Jules)<br/>- A Telegram Bot in Go (Yusuf)</p> <p>Join on the following link:<br/><a href=\"https://meet.mscc.mu/FabulousFrontendFantasies\" class=\"linkified\">https://meet.mscc.mu/FabulousFrontendFantasies</a></p> <p>We only have simple rules:<br/>- Kindly mute your mic when you're not speaking<br/>- Use the chat to ask questions<br/>- Be nice<br/>- Be Friendly<br/>- Be Courteous</p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
},
{
"created": 1588330967000,
"duration": 7200000,
"id": "270381025",
"name": "Front-end Coders - May Online Meetup",
"date_in_series_pattern": false,
"status": "past",
"time": 1588690800000,
"local_date": "2020-05-05",
"local_time": "19:00",
"updated": 1588700187000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 9,
"venue": {
"address_1": "online",
"id": 26906060,
"name": "Online event",
"repinned": false,
"country": "",
"localized_country_name": ""
},
"is_online_event": true,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/270381025/",
"description": "<p>Join us for an online meetup to talk about the front-end world and a few interesting topics !</p> <p># Topics<br/>- NuxtJS Darkmode (Kushul)<br/>- Vue 3 Portals / Teleport (Sandeep)<br/>- Vite - vuejs, development without a bundler (Sandeep)<br/>- Open discussion</p> <p>Join on the following link:<br/><a href=\"https://meet.mscc.mu/FabulousFrontendFantasies\" class=\"linkified\">https://meet.mscc.mu/FabulousFrontendFantasies</a></p> <p>We only have simple rules:<br/>- Kindly mute your mic when you're not speaking<br/>- Use the chat to ask questions<br/>- Be nice<br/>- Be Friendly<br/>- Be Courteous</p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
},
{
"created": 1590824860000,
"duration": 7200000,
"id": "270971949",
"name": "Front-end Coders - June Online Meetup",
"date_in_series_pattern": false,
"status": "past",
"time": 1591110000000,
"local_date": "2020-06-02",
"local_time": "19:00",
"updated": 1591121605000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 15,
"venue": {
"address_1": "online",
"id": 26906060,
"name": "Online event",
"repinned": false,
"country": "",
"localized_country_name": ""
},
"is_online_event": true,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/270971949/",
"description": "<p>Join us for an online meetup to talk about the front-end world and a few interesting topics !</p> <p># Topics<br/>- Exploring the console object (Christophe)<br/>- Basic Concepts of React (Joshua IwuGod)<br/>- A gentle look into Cypress (Jordan Bienvenue)<br/>- Front-end Open Discussions (Sandeep)</p> <p>Join on the following link:<br/><a href=\"https://meet.mscc.mu/FabulousFrontendFantasies\" class=\"linkified\">https://meet.mscc.mu/FabulousFrontendFantasies</a></p> <p>We only have simple rules:<br/>- Kindly mute your mic when you're not speaking<br/>- Use the chat to ask questions<br/>- Be nice<br/>- Be Friendly<br/>- Be Courteous</p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
},
{
"created": 1594824159000,
"duration": 3600000,
"id": "271940927",
"name": "Front-end Coders - July Online Meetup",
"date_in_series_pattern": false,
"status": "past",
"time": 1595344500000,
"local_date": "2020-07-21",
"local_time": "19:15",
"updated": 1595350818000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 13,
"venue": {
"address_1": "online",
"id": 26906060,
"name": "Online event",
"repinned": false,
"country": "",
"localized_country_name": ""
},
"is_online_event": true,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/271940927/",
"description": "<p>Join us for an online meetup to talk about the front-end world and a few interesting topics!</p> <p># Topics<br/>- An introduction to Cypress with Vue (Jordan Bienvenue)<br/>- Do you think of accessibility when you build a website? ([guest speaker] Razvan Statescu AKA @the.dev.guy on Instagram)<br/>- Open Discussions about Front-end Topics ( Sandeep )</p> <p>Join on the following link:<br/><a href=\"https://meet.mscc.mu/FabulousFrontendFantasies\" class=\"linkified\">https://meet.mscc.mu/FabulousFrontendFantasies</a></p> <p>We only have simple rules:<br/>- Kindly mute your mic when you're not speaking<br/>- Use the chat to ask questions<br/>- Be nice<br/>- Be Friendly<br/>- Be Courteous</p> ",
"how_to_find_us": "https://meet.google.com/zwv-cquu-aqe",
"images": null,
"visibility": "public",
"member_pay_fee": false
},
{
"created": 1601316325000,
"duration": 10800000,
"id": "273573909",
"name": "Front-end Coders October Meetup",
"rsvp_limit": 25,
"date_in_series_pattern": false,
"status": "past",
"time": 1602307800000,
"local_date": "2020-10-10",
"local_time": "09:30",
"updated": 1602403604000,
"utc_offset": 14400000,
"waitlist_count": 0,
"yes_rsvp_count": 15,
"venue": {
"id": 26822706,
"name": "Bocasay (Maurice)",
"lat": -20.245864868164062,
"lon": 57.490169525146484,
"repinned": true,
"address_1": "51A Rue du Savoir",
"city": "Quatre Bornes",
"country": "mu",
"localized_country_name": "Mauritius"
},
"is_online_event": false,
"group": {
"created": 1434578707000,
"name": "Front-End Coders Mauritius",
"id": 18680604,
"join_mode": "open",
"lat": -20.260000228881836,
"lon": 57.470001220703125,
"urlname": "frontendcodersmauritius",
"who": "Front-End",
"localized_location": "Quatre Bornes, Mauritius",
"state": "",
"country": "mu",
"region": "en_US",
"timezone": "Indian/Mauritius"
},
"link": "https://www.meetup.com/frontendcodersmauritius/events/273573909/",
"description": "<p>A series of interesting talks to reignite the meetup vibes on the island !</p> <p>.topics {<br/>- ReactivityEverywhere.js - Giovanni Jules Mikeal<br/>- Developers are not just code writers - Cedric Poilly<br/>- to be announced soon!<br/>}</p> <p>Bocasay has been very kind and agreed to host us once again!</p> <p>to book your seat and let your friends know :D</p> <p>HEALTH AND SAFETY PRECAUTIONS:</p> <p>- Please wear a mask.<br/>- Use hand sanitizers at the entrance.<br/>- Social distancing rules apply inside the meetup.</p> ",
"visibility": "public",
"images": null,
"member_pay_fee": false
}
]