-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommunities.js
1003 lines (1002 loc) · 46.3 KB
/
communities.js
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
window.communities = [
{
name: "Rust Brisbane",
description: "We're interested in the Rust programming language. We aim to catch up monthly to discuss learning and using Rust, and to share news and discoveries from the Rust ecosystem. All are welcome, whether you're using Rust every day or just interested to check out something new!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-brisbane/",
coordinates: [153.0251, -27.4698],
country: "Australia",
continent: "Oceania"
},
{
name: "Rust Melbourne",
description: "This is a group for anyone interesting in the programming language Rust, whether they are just curious or using Rust day-to-day. All skill levels welcome!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-melbourne/",
coordinates: [144.9631, -37.8136],
country: "Australia",
continent: "Oceania"
},
{
name: "Rust Sydney",
description: "We're Rust users of all skill levels in Sydney.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-sydney",
coordinates: [151.2093, -33.8688],
country: "Australia",
continent: "Oceania"
},
{
name: "Belgium Rust User Group",
description: "Rust user group. This meetup will speak about Rust, the programming language. From simple to advanced usage.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/belgium-rust-user-group/",
coordinates: [4.3517, 50.8503],
country: "Belgium",
continent: "Europe"
},
{
name: "Rust in POA",
description: "Porto Alegre Rust community.",
image: "https://via.placeholder.com/150",
link: "https://rust-in-poa.github.io/",
coordinates: [-51.2177, -30.0346],
country: "Brazil",
continent: "South America"
},
{
name: "Rust Rio",
description: "O grupo do Rust Rio tem como objetivo compartilhar conhecimento entre a comunidade, desde pessoas experientes aos mais novos, que estejam afim de aprender, conhecer e/ou são hobbistas da linguagem.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-rio/",
coordinates: [-43.1729, -22.9068],
country: "Brazil",
continent: "South America"
},
{
name: "Rust São Paulo",
description: "Vamos compartilhar informações sobre Rust! Casos de uso, features, dicas, sugestões, formas para contribuir, etc.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-sao-paulo-meetup/",
coordinates: [-46.6333, -23.5505],
country: "Brazil",
continent: "South America"
},
{
name: "Ottawa Rust Language Meetup",
description: "We are interested in the powerful and safe language Rust. We will occasionally meet to share knowledge and ideas, discuss and learn Rust, and contribute to projects. People of all skill level are welcome, even if you are just curious about the language!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/meetup-group-bdcioynp/",
coordinates: [-75.6972, 45.4215],
country: "Canada",
continent: "North America"
},
{
name: "Rust Toronto",
description: "We are the Toronto Rust developer community. Connect with and learn from fellow Rustaceans of all skill and experience levels. We are trying to run regular meetups every 1-2 months.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-toronto/",
coordinates: [-79.3832, 43.6532],
country: "Canada",
continent: "North America"
},
{
name: "Vancouver Rust",
description: "The Vancouver Rust Meetup group is a group of programmers who are currently or interested in using Rust for personal or professional projects.We meet once a month for studying or talking about the language and its ecosystem. We do our best to start every meetup with a presentation on a specific topic that usually motivates passionate conversations.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/vancouver-rust/",
coordinates: [-123.1216, 49.2827],
country: "Canada",
continent: "North America"
},
{
name: "Rust Prague",
description: "Prague meetup for people interested in Rust, a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety :)",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-prague/",
coordinates: [14.4378, 50.0755],
country: "Czech Republic",
continent: "Europe"
},
{
name: "Copenhagen Rust Community",
description: "A place for aspiring and experienced Rust enthusiasts to come together to discover and discuss the latest Rust developments, showcase Rust projects and crates, network and meet each other in a supportive community.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/copenhagen-rust-community/",
coordinates: [12.5683, 55.6761],
country: "Denmark",
continent: "Europe"
},
{
name: "Rust Lyon",
description: "Ce meetup Rust Lyon a pour objectif de réunir des enthousiastes qui utilisent ou sont intéressé.e.s par le langage de programmation Rust, à Lyon et ses alentours.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-lyon/",
coordinates: [4.8357, 45.7640],
country: "France",
continent: "Europe"
},
{
name: "Rust Paris",
description: "Le groupe de meetup Rust parisien. Les crustacé.e.s de tout niveau sont les bienvenus, ou juste si vous êtes curieu.ses.x à propos du langage. ",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/Rust-Paris/",
coordinates: [2.3522, 48.8566],
country: "France",
continent: "Europe"
},
{
name: "Montpellier Rust Meetup",
description: "Venez découvrir et échanger sur le langage de programmation Rust ! Les 'Rustaceans' de tous niveaux sont les bienvenus, que vous soyez déjà pratiquant ou simplement curieux. ",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/montpellier-rust-meetup/",
coordinates: [3.8767, 43.6117],
country: "France",
continent: "Europe"
},
{
name: "Finland Rust-lang Group",
description: "We're a group of programmers around Finland enthusiastic about Rust, the blazingly fast and safe systems programming language developed by Mozilla. We have organized events in Helsinki and Tampere.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/finland-rust-meetup/",
coordinates: [24.9410, 60.1695],
country: "Finland",
continent: "Europe"
},
{
name: "Rust Cologne",
description: "We are interested in the emerging systems programming language Rust, from Mozilla. Rustaceans of all skill levels are welcome, even if you are just interested in the language. We want to get together to learn Rust and work on Rust projects of all kinds.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rustcologne/",
coordinates: [6.9603, 50.9375],
country: "Germany",
continent: "Europe"
},
{
name: "Rust Berlin",
description: "We are interested in the emerging systems language Rust, from Mozilla. Rusties of all skill levels are welcome, or even if you are just interested in the language. We want to get together to learn Rust and work on Rust projects of all kinds.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-berlin/",
coordinates: [13.4050, 52.5200],
country: "Germany",
continent: "Europe"
},
{
name: "Rust Hack and Learn Karlsruhe",
description: "Diese Treffen richten sich an alle, die Interesse an der Programmiersprache Rust haben. Bei uns ist jede(r) willkommen, von Interessierten und Neugierigen, über Programmieranfänger bis hin zu den absoluten Rust-Profis",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-hack-learn-karlsruhe/",
coordinates: [8.4037, 49.0069],
country: "Germany",
continent: "Europe"
},
{
name: "Rust Meetup Hamburg",
description: "Dieses Treffen ist fuer alle, die Interesse an der Programmiersprache Rust haben. Jede(r) ist hier willkommen, von vage Interessierten, über Anfänger, Fortgeschrittene bis hin zu den ganz Sattelfesten.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-meetup-hamburg/",
coordinates: [9.9937, 53.5511],
country: "Germany",
continent: "Europe"
},
{
name: "Rust - Modern Systems Programming Leipzig",
description: "Rust lernen, analysieren, verbessern, diskutieren - jeden dritten Dienstag im Monat.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-modern-systems-programming-in-leipzig/",
coordinates: [12.3731, 51.3397],
country: "Germany",
continent: "Europe"
},
{
name: "Rust Munich",
description: "Rust is a new exciting programming language with many innovative ideas and features. This group is for all people interesting in Rust in Munich (or outside).",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-munich/",
coordinates: [11.5820, 48.1351],
country: "Germany",
continent: "Europe"
},
{
name: "Rust Rhein-Main",
description: "A group for anyone interested in the Rust programming language. Both beginners and experienced Rust developers are welcome!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-rhein-main/",
coordinates: [8.6821, 50.1109],
country: "Germany",
continent: "Europe"
},
{
name: "The Rust Mobility - Hyderabad",
description: "The Rust Mobility (formerly Rust Language Hyderabad ) is the premiere place in Hyderabad to discuss or learn about the Rust Programming Language. Meet other developers that share your enthusiasm. Everyone is welcome, no prior experience with Rust is required! ",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-hyderabad/",
coordinates: [78.4867, 17.3850],
country: "India",
continent: "Asia"
},
{
name: "Rust Chennai",
description: "Rust is a systems programming language that provides safety and speed out of the box. If you're interested in getting into it, or you're already doing cool stuff with it, or you got into it and somehow lost it, or you hate it, be anything - let's meet up and talk about it once every month!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/mad-rs/",
coordinates: [80.2707, 13.0827],
country: "India",
continent: "Asia"
},
{
name: "Rustaceans Kenya",
description: "We are the Rust Programming Language community based in Kenya. We aim to increase adoption of Rust programming language through project collaboration and hosting virtual and physical meetups.",
image: "https://via.placeholder.com/150",
link: "https://github.com/orgs/RustaceansKenya/discussions",
coordinates: [36.8219, -1.2864],
country: "Kenya",
continent: "Africa"
},
{
name: "Vilnius Rust and Go",
description: "We are a team that shares our programming knowledge. Come to our events where we discuss the most relevant and useful topics. See schedules and register. We are happy to share our experience with you. Let's discover the secrets and creative ideas of Rust And Go together!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/vilnius-rust-go-meetup-group/",
coordinates: [25.2797, 54.6872],
country: "Lithuania",
continent: "Europe"
},
{
name: "Rust MX",
description: "Un grupo para programadores(as) en México que quieran intercambiar conocimientos sobre el lenguaje de programación de propósito general Rust.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-mx/",
coordinates: [-103.3496, 20.6597],
country: "Mexico",
continent: "North America"
},
{
name: "Xalapa Rust",
description: "Grupo de usuarios de #rust-lang en Xalapa, Veracruz. México.",
image: "https://via.placeholder.com/150",
link: "https://xalaparust.github.io/",
coordinates: [-96.9136, 19.5438],
country: "Mexico",
continent: "North America"
},
{
name: "RustNL",
description: "We organize talks and workshops about Rust, the programming language that empowers everyone to build reliable and efficient software. Rust Nederland organizes meetups all around NL, hence the name of the group.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-amsterdam/",
coordinates: [4.9041, 52.3676],
country: "Netherlands",
continent: "Europe"
},
{
name: "RustSchool Rotterdam",
description: "Join us and learn Rust at RustSchool Rotterdam. RustSchool is an open source project run by volunteers with two goals: to create high quality programming curriculum and to host community learning events.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rustschool-rotterdam/",
coordinates: [4.4792, 51.9225],
country: "Netherlands",
continent: "Europe"
},
{
name: "Wellington Rust Meetup",
description: "This meetup exists to support the local Rust community. We're interested in Rust and its goals of empowering everyone to build safe, reliable software.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/wellington-rust-meetup/",
coordinates: [174.7762, -41.2865],
country: "New Zealand",
continent: "Oceania"
},
{
name: "Rust AKL",
description: "For avid Rust devs, newcomers and generally those interested in learning more about Rust and beyond!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-akl/",
coordinates: [174.7633, -36.8485],
country: "New Zealand",
continent: "Oceania"
},
{
name: "Rust Oslo",
description: "We're a group of folks interested in the Rust programming language! Developers of all skill levels are welcome, whether you are a Rust expert or have yet to write your first line of Rust code.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-oslo/",
coordinates: [10.7522, 59.9139],
country: "Norway",
continent: "Europe"
},
{
name: "Rust Warsaw",
description: "After a break, we’re reuniting with a fresh, new format supported by vlayer. We meet IRL in Warsaw to dive into Rust, share experiences, and connect with great people.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-warsaw/",
coordinates: [21.0122, 52.2297],
country: "Poland",
continent: "Europe"
},
{
name: "Rust in Moscow",
description: "Rust Moscow сообщество для тех, кто интересуется Rust и backend разработкой",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-moscow/",
coordinates: [37.6173, 55.7558],
country: "Russia",
continent: "Europe"
},
{
name: "Rust SPB",
description: "Раст митапы в Санкт-Петербурге.",
image: "https://via.placeholder.com/150",
link: "https://t.me/ruRust_spb.",
coordinates: [30.3351, 59.9343],
country: "Russia",
continent: "Europe"
},
{
name: "Belgrade Rust Meetup",
description: "Join us in showing our love for Rust and it's first cousin, beer. We will get together and talk about learning and using Rust. From newbies who are interested in learning to experts who want to share their knowledge, the only prerequisite for joining is that you are interested in Rust.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/belgrade-rust-meetup-group/",
coordinates: [20.4573, 44.7872],
country: "Serbia",
continent: "Europe"
},
{
name: "Rust Singapore",
description: "Are you looking to take your programming skills to the next level? Would you like to learn the Rust programming language, which is currently the most admired language according to Stackoverflow? Join our Rust Singapore programming meetup and connect with like-minded individuals who share your passion for coding!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-singapore/",
coordinates: [103.8198, 1.3521],
country: "Singapore",
continent: "Asia"
},
{
name: "MadRust",
description: "Rust community in Madrid.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/MadRust/",
coordinates: [-3.7038, 40.4168],
country: "Spain",
continent: "Europe"
},
{
name: "BcnRust",
description: "Si te interesa Rust, sientes curiosidad por este lenguaje y/o quieres compartir tu conocimiento con otros Rustaceans de la ciudad, éste es tu grupo.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/bcnrust/",
coordinates: [2.1734, 41.3851],
country: "Spain",
continent: "Europe"
},
{
name: "Rust Seoul",
description: "Rust is a systems programming language that runs blazingly fast, prevents almost all crashes*, and eliminates data races. We are studying about Rust at Seoul.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-seoul/",
coordinates: [126.9780, 37.5665],
country: "South Korea",
continent: "Asia"
},
{
name: "Stockholm Rust",
description: "Hi! We organize Stockholm-area events for enthusiasts of the Rust programming language,",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/stockholm-rust/",
coordinates: [18.0686, 59.3293],
country: "Sweden",
continent: "Europe"
},
{
name: "Rust Sthlm",
description: "Hi! We organize Stockholm-area events for enthusiasts of the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/ruststhlm/",
coordinates: [18.0690, 59.4393],
country: "Sweden",
continent: "Europe"
},
{
name: "Rust Zürisee",
description: "A group for Rustaceans around Lake Zürich interested in discussing the emerging programming language Rust.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-zurich/",
coordinates: [8.5417, 47.3769],
country: "Switzerland",
continent: "Europe"
},
{
name: "Rust Taiwan",
description: "Taiwan Rust Community",
image: "https://via.placeholder.com/150",
link: "https://github.com/rust-tw",
coordinates: [121.5654, 25.0330],
country: "Taiwan",
continent: "Asia"
},
{
name: "Rust Belfast Meetup",
description: "Talks and workshops on the rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-belfast-meetup/",
coordinates: [-5.9301, 54.5973],
country: "United Kingdom",
continent: "Europe"
},
{
name: "Rust London User Group",
description: "Rust London is the perfect place to immerse yourself in the Rust ecosystem and connect with a diverse tech community in London.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-london-user-group/",
coordinates: [-0.1276, 51.5074],
country: "United Kingdom",
continent: "Europe"
},
{
name: "Rust Manchester",
description: "Welcome Rustaceans! Rustaceans of all skill levels are welcome, or even if you are just interested in the language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-manchester/",
coordinates: [-2.2426, 53.4808],
country: "United Kingdom",
continent: "Europe"
},
{
name: "Cambridge Rust Meetup",
description: "Engineers interested in Rust getting together to socialise and discuss projects.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/cambridge-rust-meetup/",
coordinates: [0.1218, 52.2053],
country: "United Kingdom",
continent: "Europe"
},
{
name: "Rust Meetup Uruguay",
description: "Grupo de interesados en Rust, un 'nuevo' y revolucionario lenguaje de programación de sistemas creado por Mozilla. Programadores de todos los niveles son bienvenidos a explorar y aprender Rust y sus distintos usos en conjunto.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-uruguay/",
coordinates: [-56.1645, -34.9011],
country: "Uruguay",
continent: "South America"
},
{
name: "Desert Rust",
description: "A meetup group for the exploration of the Rust Programming Language in the Phoenix, AZ area.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/desert-rustaceans/",
coordinates: [-112.0740, 33.4484],
country: "USA",
continent: "North America"
},
{
name: "Rust Bay Area",
description: "We are interested in the systems language Rust, from Mozilla. Rustaceans of all skill levels are welcome, or even if you are just interested in the language. We're looking forward to exploring the wonders of Rust with everybody!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-bay-area/",
coordinates: [-122.4194, 37.7749],
country: "USA",
continent: "North America"
},
{
name: "Rust Los Angeles",
description: "Welcome to all Rustaceans! Join our meetups to learn more about Rust, and see great free monthly talks from some of Los Angeles preeminent Rust Lang engineers.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-los-angeles/",
coordinates: [-118.2437, 34.0522],
country: "USA",
continent: "North America"
},
{
name: "San Diego Rust",
description: "This is a group for anyone interested in the Rust programming language in San Diego.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/san-diego-rust/",
coordinates: [-117.1611, 32.7157],
country: "USA",
continent: "North America"
},
{
name: "Rust Denver",
description: "We are the rust programming language meetup group for the Denver metro area. We'll discuss anything and everything related to Rust: design and implementation, libraries, interesting projects, idioms and gotchas, or whatever else anyone is interested in.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-boulder-denver/",
coordinates: [-104.9903, 39.7392],
country: "USA",
continent: "North America"
},
{
name: "Rust DC",
description: "Rust DC is for learning, teaching, and discussing the Rust programming language and computer science topics that this modern language highlights.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-dc/",
coordinates: [-77.0369, 38.9072],
country: "USA",
continent: "North America"
},
{
name: "Rust Miami",
description: "Welcome to Rust Miami! This group is perfect for anyone interested in the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-miami/",
coordinates: [-80.1373, 26.1224],
country: "USA",
continent: "North America"
},
{
name: "Rust Atlanta",
description: "This group is for people interested in learning rust and/or sharing their knowledge and experience.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-atl/",
coordinates: [-84.3880, 33.7490],
country: "USA",
continent: "North America"
},
{
name: "Chicago Rust Meetup",
description: "Chicago Rust is a group of Rust enthusiasts with events in downtown Chicago and in the suburbs.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/chicago-rust-meetup/",
coordinates: [-87.6298, 41.8781],
country: "USA",
continent: "North America"
},
{
name: "Indy Rust",
description: "Indy Rust is a group of Rust programming language enthusiasts in and around Indianapolis.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/indy-rust/",
coordinates: [-86.1581, 39.7684],
country: "USA",
continent: "North America"
},
{
name: "Boston Rust Meetup",
description: "Hi! We organize Boston-area events for enthusiasts of the Rust programming language, for every level of expertise from total beginner to seasoned Rustacean.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/bostonrust/",
coordinates: [-71.0589, 42.3601],
country: "USA",
continent: "North America"
},
{
name: "Detroit Rust ",
description: "Howdy! We organize Detroit-area events for enthusiasts of the Rust programming language, for every level of expertise from total beginner to grizzled Rustacean",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/detroitrust/",
coordinates: [-83.0458, 42.3314],
country: "USA",
continent: "North America"
},
{
name: "Minneapolis Rust Meetup",
description: "Rust community in Minneapolis.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/minneapolis-rust-meetup/",
coordinates: [-93.2650, 44.9778],
country: "USA",
continent: "North America"
},
{
name: "Rust NYC",
description: "We are interested in the Rust programming language, its ecosystem, and its contributors. We occasionally meet to talk about these things.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-nyc/",
coordinates: [-74.0060, 40.7128],
country: "USA",
continent: "North America"
},
{
name: "The Rust Mobility - Columbues",
description: "The Rust Mobility (formerly Columbus Rust Society) is the premiere place in Columbus to discuss or learn about the Rust Programming Language. Meet other developers that share your enthusiasm.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/columbus-rust-society/",
coordinates: [-82.9988, 39.9612],
country: "USA",
continent: "North America"
},
{
name: "PDXRust",
description: "Rustaceans unite! This group is for users and lovers of the Rust programming language who live (or just happen to be in) Portland, OR.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/pdxrust/",
coordinates: [-122.6765, 45.5231],
country: "USA",
continent: "North America"
},
{
name: "Dallas Rust User Meetup",
description: "Dallas-area Rust programming language User Meetup (DRUM).",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/dallas-rust/",
coordinates: [-96.7970, 32.7767],
country: "USA",
continent: "North America"
},
{
name: "Rust India",
description: "We are Rust enthusiasts based out of Bangalore.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rustindia/",
coordinates: [77.5946, 12.9716],
country: "India",
continent: "Asia"
},
{
name: "Rust Göteborg",
description: "Vi är Rust Göteborg! Come join us for Rust programming language meetups in Gothenburg.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rustgbg/",
coordinates: [11.9746, 57.7089],
country: "Sweden",
continent: "Europe"
},
{
name: "Seattle Rust User Group",
description: "The Seattle Rust User Group (SRUG) is a gathering of friendly folks from the greater Seattle area interested in the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/seattle-rust-user-group/",
coordinates: [-122.3321, 47.6062],
country: "USA",
continent: "North America"
},
{
name: "Rust and C++ Cardiff",
description: "Rust and C++ Cardiff is a group for performant language enthusiasts, beginners and seasoned developers from all fields. ",
image: "https://via.placeholder.com/150",
link: "hhttps://www.meetup.com/rust-and-c-plus-plus-in-cardiff/",
coordinates: [-3.1791, 51.4816],
country: "United Kingdom",
continent: "Europe"
},
{
name: "Rust Aarhus",
description: "Welcome to the Rust Aarhus User Group. We are a community of programmers and enthusiasts who are passionate about the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-aarhus/",
coordinates: [10.2039, 56.1629],
country: "Denmark",
continent: "Europe"
},
{
name: "Rust TLV",
description: "Israeli Rust fans unite! We meet on a sporadic basis, usually in or around Tel Aviv.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-tlv/",
coordinates: [34.7818, 32.0853],
country: "Israel",
continent: "Asia"
},
{
name: "Rust Medellín",
description: "Bienvenidos todos los entusiastas, expertos y amantes de Rust a este nuevo meetup en la ciudad de medellin y para Colombia.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-medellin/",
coordinates: [-75.5636, 6.2518],
country: "Colombia",
continent: "South America"
},
{
name: "Rust Nigeria (Meetup group)",
description: "Join our vibrant Rust Enthusiasts Community, where developers of all levels come together to explore the power and versatility of the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-meetup-group/",
coordinates: [3.3792, 6.5244],
country: "Nigeria",
continent: "Africa"
},
{
name: "Rust Colombia",
description: "Bienvenidos todos los entusiastas, expertos y amantes de Rust a este nuevo meetup en la ciudad de medellin y para Colombia.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-colombia/",
coordinates: [-75.5636, 6.2518],
country: "Colombia",
continent: "South America"
},
{
name: "Charlottesville Rust Meetup",
description: "Discuss new language features, popular libraries, recent happenings, projects you are working on, and also help new people learn about the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/charlottesville-rust-meetup/",
coordinates: [-78.4767, 38.0293],
country: "USA",
continent: "North America"
},
{
name: "Rust Perth Meetup Group",
description: "Are you interested in learning Rust, a modern and safe programming language? Do you want to meet other Rustaceans and share your projects, ideas and challenges? If so, join us at the Perth Rust Lang community group in Perth!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/perth-rust-meetup-group/",
coordinates: [115.8575, -31.9505],
country: "Australia",
continent: "Oceania"
},
{
name: "Dutch Rust Meetup",
description: "Sharing our enthusiasm and knowledge about the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/dutch-rust-meetup/",
coordinates: [6.8958, 52.2215],
country: "Netherlands",
continent: "Europe"
},
{
name: "Belgium Rust user group",
description: "Rust user group. This meetup will speak about Rust, the programming language. From simple to advanced usage.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/belgium-rust-user-group/",
coordinates: [4.3517, 50.8503],
country: "Belgium",
continent: "Europe"
},
{
name: "Rust Wroclaw",
description: "Hello! We're here to bring Rust to Wroclaw and make it easier to all the Rustaceans here to create a vibrant community.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-wroclaw/",
coordinates: [17.0385, 51.1079],
country: "Poland",
continent: "Europe"
},
{
name: "Rust Pune",
description: "A group of people working on & interested in learning and sharing knowledge of everything Rust lang.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-pune/",
coordinates: [73.8567, 18.5204],
country: "India",
continent: "Asia"
},
{
name: "Tokyo Rust Meetup",
description: "We get together to share our knowledge of the Rust programming language. We do our best to accommodate Japanese speakers, although the default language is English.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/Tokyo-Rust-Meetup/",
coordinates: [139.6917, 35.6895],
country: "Japan",
continent: "Asia"
},
{
name: "Buffalo Rust Meetup",
description: "The Buffalo Rust Meetup is a meetup for anyone in the Western New York area interested in the Rust Programming Language (rustlang), whether you are an experienced developer, a hobbyist, or just looking to learn more about Rust.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/buffalo-rust-meetup/",
coordinates: [-78.8784, 42.8864],
country: "USA",
continent: "North America"
},
{
name: "Rust Czech Republic",
description: "Hi, welcome to our Rust group.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-czech-republic/",
coordinates: [14.4378, 50.0755],
country: "Czech Republic",
continent: "Europe"
},
{
name: "Johannesburg Rust Meetup",
description: "We are interested in geeking out on the systems language Rust, from Mozilla. Rustaceans of all skill levels are welcome.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/johannesburg-rust-meetup/",
coordinates: [28.0473, -26.2041],
country: "South Africa",
continent: "Africa"
},
{
name: "Rust ATX",
description: "If you love Rust, or want to learn more about the language, you should come learn and explore Rust with us.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-atx/",
coordinates: [-97.7431, 30.2672],
country: "USA",
continent: "North America"
},
{
name: "Rust Indonesia",
description: "Komunitas Pecinta Rust Indonesia.",
image: "https://via.placeholder.com/150",
link: "https://github.com/rustid",
coordinates: [106.8456, -6.2088],
country: "Indonesia",
continent: "Asia"
},
{
name: "Rust Basel",
description: "Rust is here to stay. It is a high performance programming language with powerful tooling, great documentation and a growing community of enthusiasts. This meetup is a platform for these enthusiasts in Basel.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-basel/",
coordinates: [7.5886, 47.5596],
country: "Switzerland",
continent: "Europe"
},
{
name: "Rust Delhi",
description: "Rust Delhi is a group of people interested in learning and discussing about The Rust Programming Language and applications/libraries built using it.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rustdelhi/",
coordinates: [77.209, 28.6139],
country: "India",
continent: "Asia"
},
{
name: "Rust Tbilisi",
description: "Rustaceans in Tbilisi coming together to exchange their expertise and explore the amazing world of Rust programming.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/tbilisi-rustaceans/",
coordinates: [44.8271, 41.7151],
country: "Georgia",
continent: "Europe"
},
{
name: "Boulder Rust Meetup",
description: "This meetup is for everyone interested in the Rust programming language. Rustaceans of all skill levels are welcome, including those that are just curious about the language!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/boulder-rust-meetup/",
coordinates: [-105.2705, 40.015],
country: "USA",
continent: "North America"
},
{
name: "Bratislava Rust Meetup Group",
description: "We are interested in the emerging systems language Rust, from Mozilla. Rusties of all skill levels are welcome, or even if you are just interested in the language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/bratislava-rust-meetup-group/",
coordinates: [17.1077, 48.1486],
country: "Slovakia",
continent: "Europe"
},
{
name: "Canberra Rust User Group",
description: "The Canberra Rust User Group is for people using and learning the Rust programming language.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/canberra-rust-user-group/",
coordinates: [149.1300, -35.2809],
country: "Australia",
continent: "Oceania"
},
{
name: "Orange County Rust",
description: "This group will be centered around the Rust programming language and its applications.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/orange-county-rust/",
coordinates: [-117.8265, 33.6846],
country: "USA",
continent: "North America"
},
{
name: "Rust en Español",
description: "Un lugar donde se puedan encontrar todos los Rustaceans de los territorios argentos.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-argentina/",
coordinates: [-58.3816, -34.6037],
country: "Argentina",
continent: "South America"
},
{
name: "Rust Circle Kampala",
description: "Discover the power of Rust programming language! Join our mentorship program and learn about high-performance, safe, and concurrent coding.",
image: "https://via.placeholder.com/150",
link: "https://www.eventbrite.com/o/rust-circle-kampala-65249289033/",
coordinates: [32.5816, 0.3152],
country: "Uganda",
continent: "Africa"
},
{
name: "Rust Dublin",
description: "If you never heard about Rust (from http://www.rust-lang.org) Rust is a systems programming language that runs blazingly fast, prevents nearly all segfaults, and guarantees thread safety. ",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-dublin/",
coordinates: [-6.2603, 53.3498],
country: "Ireland",
continent: "Europe"
},
{
name: "Rust Gdansk",
description: "Rust Gdansk group is a vibrant gathering of Rust programming enthusiasts in the Gdańsk area.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-gdansk/",
coordinates: [18.6466, 54.352],
country: "Poland",
continent: "Europe"
},
{
name: "Rust Lille",
description: "Rust Lille est un groupe de développeurs et développeuses ayant pour but d'animer la communauté Rust autour de Lille.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/meetup-group-zgphbyet/",
coordinates: [3.0573, 50.6292],
country: "France",
continent: "Europe"
},
{
name: "Rust Montréal",
description: "This group is to gather Rust language enthusiasts in Montréal to come together, share tips and talk about what's going on in the ecosystem. Whether you're Rust-curious, or professionally write Rust, or somewhere in between, come by!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-montréal/",
coordinates: [-73.5673, 45.5017],
country: "Canada",
continent: "North America"
},
{
name: "Rust Trondheim",
description: "Hello and welcome to our little corner 🦀 We are people who are interested in the Rust language! Beginners are absolutely welcome, most of us are too.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-trondheim/",
coordinates: [10.3951, 63.4305],
country: "Norway",
continent: "Europe"
},
{
name: "Rust-Saar",
description: "I'm Ferris Becker and I am looking for people from Saarland that are interested in my favorite topic: the programming language Rust that empowers everyone to build reliable and efficient software.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/rust-saar/",
coordinates: [6.9969, 49.2322],
country: "Germany",
continent: "Europe"
},
{
name: "STL Rust",
description: "Rust is the future of software. Join us Rustaceans as we prepare for the future by learning the language, idioms, crates and tricks. If you have a cool side project, share it with us, step forward and give us a little 15 minute speed talk.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/stl-rust/",
coordinates: [-90.1994, 38.6273],
country: "USA",
continent: "North America"
},
{
name: "San Francisco Rust Study Group",
description: "We're studying Rust like it's 2019, meeting up in physical space to work on ongoing projects to share our growing understanding of the Rust programming language. Bring your laptop and whatever you're hacking on. It's super informal.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/san-francisco-rust-study-group/",
coordinates: [-122.4194, 37.7749],
country: "USA",
continent: "North America"
},
{
name: "Utah Rust",
description: "If you're curious about the Rust programming language, wanting to integrate with the local community, or just wanting to level up your Rust, you've come to the right place!",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/utah-rust/",
coordinates: [-111.8497, 40.3916],
country: "USA",
continent: "North America"
},
{
name: "impl Zagreb for Rust",
description: "Rust je programski jezik novije generacije koji nudi alate za razvoj softvera visokih performansi uz određene garancije oko sigurnosti podataka u memoriji. Meetup je zamišljen kao redovno druženje Rust programera u Zagrebu gdje ćemo zajedno istraživati jezik na svim razinama.",
image: "https://via.placeholder.com/150",
link: "https://www.meetup.com/zagreb-rust-meetup/",
coordinates: [15.9819, 45.815],
country: "Croatia",
continent: "Europe"
},
{
name: " Rust - O'zbek Jamiyati ",
description: "Rust community in Tashkent.",
image: "https://via.placeholder.com/150",
link: "https://github.com/rust-lang-uz",
coordinates: [69.2401, 41.2995],
country: "Uzbekistan",
continent: "Asia"
},
{
name: " RustDEV Vietnam ",
description: "Kênh truyền hình được quản lý bởi RustDEV Vietnam (rustdev.vn) Chúng tôi tạo ra trang tin này với mong muốn thúc đẩy việc sử dụng ngôn ngữ Rust trong cộng đồng lập trình viên, các nhà phát triển giải pháp phần mềm đặc biệt là trong lĩnh vực lập trình nhúng, IoT tại Việt Nam.",
image: "https://via.placeholder.com/150",
link: "https://www.youtube.com/@rustdev-vn",
coordinates: [108.2772, 14.0583],
country: "Vietnam",
continent: "Asia",
},
{
name: "Rust Malaysia",
description: "Rust Malaysia Group.",
image: "https://via.placeholder.com/150",
link: "https://rust-malaysia.github.io/meetup/",
coordinates: [101.68685500, 3.13900300],
country: "Malaysia",
continent: "Asia"
}