forked from marchof/javabubble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
javapeople.yaml
1270 lines (1270 loc) · 34.6 KB
/
javapeople.yaml
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
# Please add new entries in alphabetic order of the name.
---
- name: "Adam Bien"
bluesky: "adambien.blog"
- name: "Alberto C. Ríos"
twitter: "Albertoimpl"
fediverse: "[email protected]"
github: "Albertoimpl"
- name: "Aleksey Shipilëv"
twitter: "shipilev"
fediverse: "[email protected]"
github: "shipilev"
- name: "Alex Kuiper"
twitter: "NightWhistler"
fediverse: "[email protected]"
github: "NightWhistler"
- name: "Alex Snaps"
twitter: "alexsnaps"
fediverse: "[email protected]"
github: "alexsnaps"
- name: "Alex Stockinger"
twitter: "alexstockinger"
fediverse: "[email protected]"
github: "dajudge"
- name: "Alina Yurenko"
twitter: "alina_yurenko"
fediverse: "[email protected]"
github: "alina-yur"
bluesky: "alina-yurenko.bsky.social"
- name: "Ana-Maria Mihalceanu"
twitter: "ammbra1508"
fediverse: "[email protected]"
github: "ammbra"
bluesky: "ammbra1508.bsky.social"
- name: "Andrea Binello"
fediverse: "[email protected]"
github: "andbin"
- name: "Andreas Gebhardt"
twitter: "agebhar1"
fediverse: "[email protected]"
github: "agebhar1"
- name: "Andres Almiray"
twitter: "aalmiray"
fediverse: "[email protected]"
github: "aalmiray"
reddit: "andresalmiray"
bluesky: "aalmiray.bsky.social"
- name: "Andy Costanza"
fediverse: "[email protected]"
github: "costalfy"
bluesky: "costalfy.bsky.social"
- name: "Anthony Accioly"
fediverse: "[email protected]"
github: "aaccioly"
linkedin: "aaccioly"
- name: "Anthony Dahanne"
twitter: "anthonydahanne"
fediverse: "[email protected]"
github: "anthonydahanne"
linkedin: "anthonydahanne"
- name: "Anton Arhipov"
bluesky: "antonarhipov.bsky.social"
- name: "Antón Rodríguez"
twitter: "antonmry"
fediverse: "[email protected]"
github: "antonmry"
- name: "Antonin Delpeuch"
twitter: "pintoch"
fediverse: "[email protected]"
github: "wetneb"
- name: "Antonio Goncalves"
twitter: "agoncal"
fediverse: "[email protected]"
github: "agoncal"
- name: "Azeem Jiva"
twitter: "javawithjiva"
fediverse: "[email protected]"
linkedin: "azeemjiva"
- name: "Baruch Sadogursky"
twitter: "jbaruch"
fediverse: "[email protected]"
github: "jbaruch"
linkedin: "jbaruch"
bluesky: "jbaru.ch"
- name: "Bazlur Rahman"
twitter: "bazlur_rahman"
fediverse: "[email protected]"
github: "rokon12"
- name: "Ben Evans"
twitter: "kittylyst"
fediverse: "[email protected]"
github: "kittylyst"
- name: "Ben Rady"
twitter: "benrady"
fediverse: "[email protected]"
github: "benrady"
- name: "Benjamin Marwell"
twitter: "bmarwell"
fediverse: "[email protected]"
github: "bmarwell"
linkedin: "benjamin-marwell-18741b123"
bluesky: "bmarwell.de"
- name: "Bert Jan Schrijver"
twitter: "bjschrijver"
fediverse: "[email protected]"
github: "bertjan"
bluesky: "bjschrijver.bsky.social"
- name: "Brian Benz"
twitter: "bbenz"
fediverse: "[email protected]"
github: "bbenz"
- name: "Brian Clozel"
twitter: "bclozel"
fediverse: "[email protected]"
github: "bclozel"
- name: "Brian Demers"
twitter: "briandemers"
fediverse: "[email protected]"
github: "bdemers"
linkedin: "bdemers"
bluesky: "bdemers.io"
- name: "Brian Fox"
twitter: "Brian_Fox"
fediverse: "[email protected]"
github: "brianf"
reddit: "TheRealBrianFox"
- name: "Brian Vermeer"
twitter: "BrianVerm"
fediverse: "[email protected]"
github: "bmvermeer"
bluesky: "brianverm.bsky.social"
- name: "Brice Dutheil"
twitter: "BriceDutheil"
fediverse: "[email protected]"
github: "bric3"
- name: "Bruno Borges"
twitter: "brunoborges"
fediverse: "[email protected]"
github: "brunoborges"
bluesky: "brunoborges.bsky.social"
- name: "Cay Horstmann"
twitter: "cayhorstmann"
fediverse: "[email protected]"
github: "cayhorstmann"
- name: "Cédric Champeau"
twitter: "CedricChampeau"
fediverse: "[email protected]"
github: "melix"
- name: "Chandra Guntur"
bluesky: "cguntur.bsky.social"
- name: "Charles Oliver Nutter"
twitter: "headius"
fediverse: "[email protected]"
github: "headius"
bluesky: "headius.bsky.social"
- name: "Chicago Java Users Group"
twitter: "cjug"
fediverse: "[email protected]"
- name: "Chris Newland"
twitter: "chriswhocodes"
fediverse: "[email protected]"
github: "chriswhocodes"
- name: "Chris Thalinger"
twitter: "christhalinger"
fediverse: "[email protected]"
- name: "Christian Grobmeier"
twitter: "grobmeier"
fediverse: "[email protected]"
github: "grobmeier"
- name: "Christian Stein"
twitter: "sormuras"
fediverse: "[email protected]"
github: "sormuras"
- name: "Christoph Engelbert"
twitter: "noctarius2k"
fediverse: "[email protected]"
github: "noctarius"
- name: "Claes Redestad"
twitter: "cl4es"
fediverse: "[email protected]"
- name: "Clement Escoffier"
twitter: "clementplop"
fediverse: "[email protected]"
github: "cescoffier"
- name: "Clement Levallois"
twitter: "seinecle"
fediverse: "[email protected]"
github: "seinecle"
- name: "Corneil du Plessis"
twitter: "corneil"
fediverse: "[email protected]"
github: "corneil"
bluesky: "corneil.bsky.social"
- name: "Craig Walls"
twitter: "habuma"
fediverse: "[email protected]"
github: "habuma"
- name: "CyberLand"
fediverse: "[email protected]"
- name: "Dan Vega"
twitter: "therealdanvega"
github: "danvega"
reddit: "therealdanvega"
linkedin: "danvega"
youtube: "DanVega"
- name: "Daniel Hinojosa"
twitter: "dhinojosa"
fediverse: "[email protected]"
github: "dhinojosa"
- name: "Daniel Oh"
bluesky: "danieloh30.bsky.social"
- name: "Daniel Terhorst-North"
twitter: "tastapod"
fediverse: "[email protected]"
github: "tastapod"
reddit: "tastapod"
- name: "David Delabassée"
twitter: "delabassee"
fediverse: "[email protected]"
github: "delabassee"
bluesky: "delabassee.bsky.social"
- name: "Deven Phillips"
fediverse: "[email protected]"
github: "InfoSec812"
- name: "Dmitry Alexandrov"
twitter: "bercut2000"
fediverse: "[email protected]"
github: "dalexandrov"
- name: "Doug Weatherbee"
twitter: "DougWeatherbee"
fediverse: "[email protected]"
github: "dweatherbee"
- name: "Eberhard Wolff"
twitter: "ewolff"
fediverse: "[email protected]"
github: "ewolff"
- name: "Eclipse OpenJ9"
twitter: "openj9"
github: "eclipse-openj9"
- name: "Eclipse Store"
twitter: "EclipseStoreIO"
fediverse: "[email protected]"
- name: "Edoardo Vacchi"
twitter: "evacchi"
fediverse: "[email protected]"
github: "evacchi"
bluesky: "evacchi.dev"
- name: "Edson Yanaga"
twitter: "yanaga"
fediverse: "[email protected]"
github: "yanaga"
bluesky: "yanaga.io"
- name: "Edwin Derks"
twitter: "edwinderks"
fediverse: "[email protected]"
github: "ederks85"
- name: "Elias Nogueira"
twitter: "eliasnogueira"
fediverse: "[email protected]"
github: "eliasnogueira"
- name: "Emily Jiang"
twitter: "emilyfhjiang"
fediverse: "[email protected]"
github: "Emily-Jiang"
- name: "Eric Deandrea"
twitter: "edeandrea"
fediverse: "[email protected]"
github: "edeandrea"
- name: "Erik C. Thauvin"
twitter: "ethauvin"
fediverse: "[email protected]"
github: "ethauvin"
- name: "Erik Österlund"
twitter: "eosterlund_fisk"
fediverse: "[email protected]"
- name: "Erin Schnabel"
twitter: "ebullientworks"
fediverse: "[email protected]"
github: "ebullient"
- name: "Evgeny Mandrikov"
twitter: "_godin_"
fediverse: "[email protected]"
github: "Godin"
- name: "Fabian Stäber"
twitter: "fstabr"
fediverse: "[email protected]"
github: "fstab"
- name: "Falk Sippach"
twitter: "sippsack"
fediverse: "[email protected]"
github: "sippsack"
linkedin: "falk-sippach"
bluesky: "sippsack.bsky.social"
- name: "Filip Procházka"
twitter: "ProchazkaFilip"
fediverse: "[email protected]"
github: "fprochazka"
- name: "Florian Habermann"
twitter: "FHHabermann"
fediverse: "[email protected]"
github: "fh-ms"
- name: "Foivos Zakkak"
twitter: "foivoszakkak"
fediverse: "[email protected]"
github: "zakkak"
linkedin: "zakkak"
bluesky: "foivos.zakkak.net"
- name: "Foojay.io"
twitter: "foojayio"
fediverse: "[email protected]"
github: "foojayio"
- name: "Frank Delporte"
twitter: "FrankDelporte"
fediverse: "[email protected]"
github: "FDelporte"
linkedin: "frankdelporte"
bluesky: "frankdelporte.bsky.social"
youtube: "FrankDelporte"
twitch: "frankdelporte"
- name: "Geert Bevin"
twitter: "gbevin"
fediverse: "[email protected]"
github: "gbevin"
- name: "Geoffrey De Smet"
twitter: "GeoffreyDeSmet"
fediverse: "[email protected]"
github: "ge0ffrey"
- name: "George Adams"
bluesky: "gdams.bsky.social"
- name: "Gerd Aschemann"
twitter: "GerdAschemann"
fediverse: "[email protected]"
github: "ascheman"
- name: "Gerrit Grunwald"
twitter: "hansolo_"
fediverse: "[email protected]"
github: "HanSolo"
bluesky: "hansolo.bsky.social"
- name: "Glenn Renfro"
twitter: "cppwfs"
fediverse: "[email protected]"
github: "cppwfs"
- name: "GraalVM"
twitter: "graalvm"
fediverse: "[email protected]"
- name: "Grace Jansen"
twitter: "gracejansen27"
- name: "Greg Chabala"
twitter: "chabala"
fediverse: "[email protected]"
github: "chabala"
reddit: "chabala"
linkedin: "chabala"
bluesky: "chabala.bsky.social"
- name: "Guillaume Laforge"
twitter: "glaforge"
fediverse: "[email protected]"
github: "glaforge"
- name: "Gunnar Morling"
twitter: "gunnarmorling"
fediverse: "[email protected]"
github: "gunnarmorling"
bluesky: "gunnar.bsky.social"
- name: "Hanno Embregts"
twitter: "hannotify"
fediverse: "[email protected]"
github: "hannotify"
bluesky: "hannotify.bsky.social"
- name: "Heiko Scherrer"
twitter: "openwms"
fediverse: "[email protected]"
github: "openwms"
- name: "Heinz Kabutz"
twitter: "heinzkabutz"
fediverse: "[email protected]"
github: "kabutz"
- name: "Helen Scott"
twitter: "HelenJoScott"
fediverse: "[email protected]"
github: "helenjoscott"
- name: "Hendrik Ebbers"
twitter: "hendrikEbbers"
fediverse: "[email protected]"
github: "hendrikebbers"
- name: "Henry Coles"
twitter: "_pitest"
fediverse: "[email protected]"
github: "hcoles"
- name: "Herman Suijs"
twitter: "hsuijs"
fediverse: "[email protected]"
github: "hsuijs"
- name: "Hervé Boutemy"
twitter: "hboutemy"
github: "hboutemy"
- name: "Holger Voormann"
twitter: "howlger"
fediverse: "[email protected]"
- name: "Holly Cummins"
twitter: "holly_cummins"
fediverse: "[email protected]"
github: "holly-cummins"
bluesky: "holly-cummins.bsky.social"
- name: "Hubert Klein Ikkink"
twitter: "mrhaki"
fediverse: "[email protected]"
github: "mrhaki"
- name: "Ian Darwin"
twitter: "Ian_Darwin"
fediverse: "[email protected]"
github: "IanDarwin"
- name: "Iván López"
twitter: "ilopmar"
fediverse: "[email protected]"
github: "ilopmar"
- name: "Ivar Grimstad"
twitter: "ivar_grimstad"
fediverse: "[email protected]"
github: "ivargrimstad"
linkedin: "ivargrimstad"
bluesky: "ivargrimstad"
- name: "Ivo Limmen"
fediverse: "[email protected]"
github: "IvoLimmen"
reddit: "ivolimmen"
linkedin: "ivolimmen"
- name: "Ivo Woltring"
twitter: "IvoNet"
fediverse: "[email protected]"
github: "IvoNet"
- name: "Ixchel Ruiz"
twitter: "ixchelruiz"
fediverse: "[email protected]"
github: "ixchelruiz"
- name: "Jake Smolka"
twitter: "JakeSmolka"
fediverse: "[email protected]"
github: "jakesmolka"
- name: "James Gosling"
twitter: "errcraft"
fediverse: "[email protected]"
- name: "Jason Lee"
twitter: "jasondlee"
fediverse: "[email protected]"
github: "jasondlee"
- name: "Jason van Zyl"
twitter: "jvanzyl"
github: "jvanzyl"
reddit: "jvanzyl"
- name: "Jasper Bogers"
fediverse: "[email protected]"
github: "jasperbogers"
linkedin: "joabogers"
- name: "Java aktuell "
fediverse: "[email protected]"
- name: "Java Champions"
twitter: "Java_Champions"
fediverse: "[email protected]"
- name: "Java Duke"
fediverse: "[email protected]"
- name: "Java Forum Nord"
fediverse: "[email protected]"
- name: "Java Stammtisch Göttingen "
fediverse: "[email protected]"
- name: "Java User Group Deutschland e.V."
fediverse: "[email protected]"
- name: "Java User Group Goldstadt"
fediverse: "[email protected]"
- name: "Java User Group Görlitz"
fediverse: "[email protected]"
- name: "Java User Group Ingolstadt e.V."
fediverse: "[email protected]"
- name: "Java User Group Karlsruhe"
fediverse: "[email protected]"
- name: "Java User Group Mainz"
fediverse: "[email protected]"
- name: "Java User Group Mannheim"
fediverse: "[email protected]"
- name: "Java User Group Münster"
fediverse: "[email protected]"
- name: "Java User Group Nürnberg"
fediverse: "[email protected]"
- name: "Java User Group Ostfalen"
fediverse: "[email protected]"
- name: "Java User Group Paderborn"
fediverse: "[email protected]"
- name: "Java User Group Stuttgart"
fediverse: "[email protected]"
- name: "Java User Group Switzerland"
twitter: "jugch"
fediverse: "[email protected]"
github: "jugch"
youtube: "jugch"
- name: "JavaLand"
fediverse: "[email protected]"
- name: "JCON"
twitter: "jcon_conference"
fediverse: "[email protected]"
- name: "Jean Bisutti"
twitter: "jean_bisutti"
fediverse: "[email protected]"
github: "jeanbisutti"
- name: "Jean-Philippe Bempel"
twitter: "jpbempel"
fediverse: "[email protected]"
github: "jpbempel"
- name: "Jeanne Boyarsky"
twitter: "jeanneboyarsky"
fediverse: "[email protected]"
github: "boyarsky"
linkedin: "jeanne-boyarsky"
bluesky: "jeanneboyarsky.bsky.social"
- name: "Jeff Dinkins"
twitter: "JeffAtSun"
fediverse: "[email protected]"
github: "jeffatsun"
- name: "Jendrik Johannes"
twitter: "jeoj"
fediverse: "[email protected]"
github: "jjohannes"
- name: "Jim Laskey"
fediverse: "[email protected]"
github: "JimLaskey"
- name: "Jo Voordeckers"
twitter: "jovoordeckers"
fediverse: "[email protected]"
github: "jayv"
- name: "Jochen Schalanda"
twitter: "joschi83"
fediverse: "[email protected]"
github: "joschi"
linkedin: "jschalanda"
bluesky: "joschi.bsky.social"
- name: "Joel Costigliola"
twitter: "JoCosti"
fediverse: "[email protected]"
github: "joel-costigliola"
bluesky: "jocosti.bsky.social"
- name: "Johan Vos"
twitter: "johanvos"
fediverse: "[email protected]"
github: "johanvos"
- name: "Johannes Bechberger"
twitter: "parttimen3rd"
fediverse: "[email protected]"
github: "parttimenerd"
linkedin: "johannes-bechberger"
bluesky: "parttimenerd.bsky.social"
- name: "John Burns"
twitter: "wakingrufus"
fediverse: "[email protected]"
github: "wakingrufus"
linkedin: "wakingrufus"
- name: "John Spurling"
twitter: "synecdotal"
fediverse: "[email protected]"
github: "synecdoche"
- name: "Jonas Konrad"
twitter: "yawkat"
fediverse: "[email protected]"
github: "yawkat"
- name: "Jonas TM"
fediverse: "[email protected]"
github: "jonas-tm"
- name: "Jonatan Ivanov"
twitter: "jonatan_ivanov"
fediverse: "[email protected]"
github: "jonatan-ivanov"
- name: "Jonathan Giles"
twitter: "JonathanGiles"
fediverse: "[email protected]"
github: "JonathanGiles"
- name: "Jonathan Vila"
bluesky: "vilojona.bsky.social"
- name: "Jose Miguel Rodriguez"
twitter: "jmiguel"
fediverse: "[email protected]"
github: "jmiguelr"
reddit: "jmiguelrodriguez"
linkedin: "jmiguelrodriguez"
- name: "Joseph Darcy"
twitter: "jddarcy"
fediverse: "[email protected]"
- name: "Joseph Ottinger"
twitter: "josephbottinger"
github: "jottinger"
- name: "Josh Juneau"
twitter: "javajuneau"
fediverse: "[email protected]"
github: "juneau001"
- name: "Josh Long"
twitter: "starbuxman"
fediverse: "[email protected]"
github: "joshlong"
bluesky: "starbuxman.joshlong.com"
youtube: "coffeesoftware"
- name: "Joshua Austin"
fediverse: "[email protected]"
github: "joshaustintech"
linkedin: "joshaustintech"
bluesky: "joshaustin.tech"
youtube: "joshaustintech"
- name: "Joshua Bloch"
twitter: "joshbloch"
fediverse: "[email protected]"
github: "jbloch"
- name: "JSail Unkonferenz"
fediverse: "[email protected]"
- name: "Juan Antonio Breña Moral"
twitter: "juanantoniobm"
fediverse: "[email protected]"
github: "jabrena"
reddit: "juanantoniobm"
- name: "Julia Evans"
twitter: "b0rk"
fediverse: "[email protected]"
- name: "Julien Ponge"
twitter: "jponge"
fediverse: "[email protected]"
github: "jponge"
bluesky: "julien.ponge.org"
- name: "Justin Lee"
twitter: "evanchooly"
fediverse: "[email protected]"
github: "evanchooly"
bluesky: "evanchooly.bsky.social"
- name: "Kai Tödter"
twitter: "kaitoedter"
fediverse: "[email protected]"
github: "toedter"
- name: "Karl Heinz Marbaise"
twitter: "khmarbaise"
fediverse: "[email protected]"
github: "khmarbaise"
reddit: "khmarbaise"
- name: "Kaya Weers"
twitter: "KayaWeers"
fediverse: "[email protected]"
github: "kayaweers"
- name: "Ken Fogel"
twitter: "omniprof"
fediverse: "[email protected]"
github: "omniprof"
- name: "Ken Kousen"
twitter: "kenkousen"
fediverse: "[email protected]"
github: "kousen"
youtube: "talesfromthejarside"
- name: "Kevin Bourrillion"
twitter: "kevinb9n"
fediverse: "[email protected]"
github: "kevinb9n"
reddit: "kevinb9n"
bluesky: "kevinb9n.bsky.social"
- name: "Kevin Dubois"
twitter: "kevindubois"
fediverse: "[email protected]"
github: "kdubois"
bluesky: "kevindubois.com"
- name: "Kevin Wittek"
twitter: "Kiview"
fediverse: "[email protected]"
github: "kiview"
bluesky: "kiview.bsky.social"
- name: "Kevlin Henney"
bluesky: "kevlin.bsky.social"
- name: "Kirk Pepperdine"
twitter: "kcpeppe"
fediverse: "[email protected]"
github: "kcpeppe"
- name: "Kito Mann"
twitter: "kito99"
fediverse: "[email protected]"
github: "kito99"
- name: "Lance Andersen"
twitter: "LanceAndersen"
fediverse: "[email protected]"
github: "LanceAndersen"
- name: "Les Hazlewood"
twitter: "lhazlewood"
github: "lhazlewood"
- name: "Lisa Maria Moritz"
twitter: "teapot4181"
fediverse: "[email protected]"
github: "Teapot-418"
- name: "Logan Kulinski"
twitter: "lbkulinski"
fediverse: "[email protected]"
github: "lbkulinski"
- name: "Lottie4J (LottieFiles for Java/JavaFX)"
fediverse: "[email protected]"
github: "lottie4j"
- name: "Ludovic Henry"
twitter: "ludovic_dev"
fediverse: "[email protected]"
github: "luhenry"
- name: "Ludovic Hochet"
twitter: "lhochet"
fediverse: "[email protected]"
github: "lhochet"
- name: "Lukas Eder"
twitter: "lukaseder"
fediverse: "[email protected]"
github: "lukaseder"
linkedin: "lukaseder"
- name: "Lukáš Petrovický"
fediverse: "[email protected]"
github: "triceo"
linkedin: "petrovicky"
- name: "Maarten Mulders"
twitter: "mthmulders"
fediverse: "[email protected]"
github: "mthmulders"
linkedin: "mthmulders"
bluesky: "mthmulders.bsky.social"
- name: "Mads Opheim"
twitter: "MadsOpheim"
fediverse: "[email protected]"
github: "madsop"
linkedin: "madsopheim"
bluesky: "madsopheim.com"
- name: "Mani Sarkar"
twitter: "theNeomatrix369"
fediverse: "[email protected]"
github: "neomatrix369"
- name: "Marc Nuri"
twitter: "MarcNuri"
fediverse: "[email protected]"
github: "manusa"
- name: "Marc R. Hoffmann"
twitter: "marcandsweep"
fediverse: "[email protected]"
github: "marchof"
- name: "Marcin Grzejszczak"
twitter: "MGrzejszczak"
fediverse: "[email protected]"
github: "marcingrzejszczak"
- name: "Marcin Szałomski"
twitter: "baldram"
fediverse: "[email protected]"
github: "baldram"
- name: "Marcus Fihlon"
twitter: "McPringle"
fediverse: "[email protected]"
github: "McPringle"
linkedin: "fihlon"
bluesky: "mcpringle.bsky.social"
youtube: "mcpringle"
- name: "Marcus Hellberg"
twitter: "marcushellberg"
fediverse: "[email protected]"
github: "marcushellberg"
bluesky: "marcushellberg.dev"
- name: "Marcus Hirt"
twitter: "hirt"
fediverse: "[email protected]"
github: "thegreystone"
- name: "María Arias de Reyna"
twitter: "delawen"
fediverse: "[email protected]"
github: "Delawen"
- name: "María Salcedo Guzman"
fediverse: "[email protected]"
github: "mariasalcedo"
linkedin: "maria-s-56138aa0"
- name: "Mario Fusco"
twitter: "mariofusco"
fediverse: "[email protected]"
github: "mariofusco"
- name: "Mario Torre"
twitter: "neugens"
fediverse: "[email protected]"
github: "neugens"
- name: "Marit van Dijk"
twitter: "MaritvanDijk77"
fediverse: "[email protected]"
github: "mlvandijk"
bluesky: "maritvandijk.bsky.social"
- name: "Mark Heckler"
twitter: "mkheck"
fediverse: "[email protected]"
github: "mkheck"
bluesky: "mkheck.bsky.social"
- name: "Mark Paluch"
twitter: "mp911de"
fediverse: "[email protected]"
github: "mp911de"
bluesky: "mp911de.bsky.social"
- name: "Mark Reinhold"
twitter: "mreinhold"
fediverse: "[email protected]"
github: "mbreinhold"
bluesky: "mreinhold.bsky.social"
- name: "Mark Struberg"
twitter: "struberg"
fediverse: "[email protected]"
github: "struberg"
- name: "Markus Eisele"
twitter: "myfear"
fediverse: "[email protected]"
github: "myfear"
bluesky: "myfear.com"
- name: "Markus Karg"
twitter: "mkarg"
fediverse: "[email protected]"
github: "mkarg"
- name: "Martijn Dashorst"
twitter: "dashorst"
fediverse: "[email protected]"
github: "dashorst"
- name: "Martijn Verburg"
twitter: "karianna"
fediverse: "[email protected]"
github: "karianna"
bluesky: "karianna.bsky.social"
- name: "Martin Fowler"
twitter: "martinfowler"
fediverse: "[email protected]"
- name: "Martin Stefanko"
twitter: "xstefank"
fediverse: "[email protected]"
github: "xstefank"
reddit: "xstefank"
linkedin: "martin-stefanko"
bluesky: "xstefank.bsky.social"
- name: "Mary Grygleski"
twitter: "mgrygles"
fediverse: "[email protected]"
github: "mgrygles"
- name: "Mattias Karlsson"
twitter: "matkar"
fediverse: "[email protected]"
- name: "Max Rydahl Andersen"
twitter: "maxandersen"
fediverse: "[email protected]"
github: "maxandersen"
- name: "Maximillian Arruda"
twitter: "maxdearruda"
fediverse: "[email protected]"
github: "dearrudam"
- name: "Michael Hunger"
twitter: "mesirii"
fediverse: "[email protected]"
github: "jexp"
- name: "Michael Paus"
twitter: "MichaelPaus"
fediverse: "[email protected]"
github: "mipastgt"
- name: "Michael Simons"
twitter: "rotnroll666"
fediverse: "[email protected]"
github: "michael-simons"
- name: "Michael Vitz"
twitter: "michaelvitz"
fediverse: "[email protected]"
github: "mvitz"
- name: "Mike Duigou"
twitter: "mjduigou"
fediverse: "[email protected]"
github: "bondolo"
- name: "Montreal Java Users Group"
twitter: "montrealjug"
fediverse: "[email protected]"
- name: "Moritz Halbritter"
twitter: "m_halbritter"
fediverse: "[email protected]"
github: "mhalbritter"
linkedin: "moritz-halbritter-9301a1b1"
bluesky: "0.5ritter.de"
- name: "Muhammad Rifqi Fatchurrahman"
twitter: "muhrifqii"
fediverse: "[email protected]"
github: "muhrifqii"
linkedin: "muhrifqii"
- name: "Nacho Cougil"
twitter: "icougil"
fediverse: "[email protected]"
github: "icougil"
- name: "Nick Ebbitt"
twitter: "nickebbitt"
github: "nickebbitt"
linkedin: "nickebbitt"
bluesky: "e33y.bsky.social"
- name: "Nicky Moelholm"
twitter: "moelholm"
fediverse: "[email protected]"
github: "moelholm"
- name: "Nicolai Parlog"
twitter: "nipafx"
fediverse: "[email protected]"
github: "nipafx"
bluesky: "nipafx.bsky.social"
youtube: "nipafx"
twitch: "nipafx"
- name: "Nicolas Fränkel"
twitter: "nicolas_frankel"
fediverse: "[email protected]"
github: "nfrankel"
- name: "NYJavaSig"
twitter: "nyjavasig"
fediverse: "[email protected]"
- name: "Oliver Drotbohm"
twitter: "odrotbohm"
fediverse: "[email protected]"
github: "odrotbohm"
- name: "Oliver Libutzki"
twitter: "OliverLibutzki"
fediverse: "[email protected]"
github: "OLibutzki"
- name: "Ondro Mihályi"
twitter: "OndroMih"
fediverse: "[email protected]"
github: "OndroMih"
- name: "Pasha Finkelshteyn"
twitter: "asm0di0"
fediverse: "[email protected]"
github: "asm0dey"
reddit: "asm0dey"
linkedin: "asm0dey"
- name: "Patrick Baumgartner"
twitter: "patbaumgartner"
fediverse: "[email protected]"
github: "patbaumgartner"
- name: "Patrick Reinhart"
twitter: "reinhapa"
fediverse: "[email protected]"
github: "reinhapa"
- name: "Paul Bakker"
twitter: "pbakker"
fediverse: "[email protected]"
github: "paulbakker"
- name: "Paulo Lopes"
twitter: "pml0p35"
fediverse: "[email protected]"
github: "pmlopes"
- name: "Peter Lawrey"
twitter: "PeterLawrey"
fediverse: "[email protected]"
github: "peter-lawrey"
- name: "Petr Bouda"
twitter: "p_bouda"
fediverse: "[email protected]"
github: "petrbouda"
- name: "Philipp Hauer"
twitter: "philipp_hauer"
fediverse: "[email protected]"
- name: "Phillip Ross"
twitter: "philross"
fediverse: "[email protected]"
github: "phillipross"
- name: "Pi4J (Java on Raspberry Pi)"
twitter: "pi4j"
fediverse: "[email protected]"
github: "Pi4J"
- name: "Piotr Przybył"
twitter: "piotrprz"
fediverse: "[email protected]"
github: "pioorg"
- name: "Pratik Patel"
bluesky: "prpatel.bsky.social"
- name: "Preslav Rachev"
twitter: "preslavrachev"
fediverse: "[email protected]"
github: "preslavrachev"
- name: "Rabea Gransberger"
twitter: "rgransberger"
fediverse: "[email protected]"
github: "rgra"
- name: "Rafael Maia"
twitter: "RafMaia92"
fediverse: "[email protected]"
github: "RafMaia92"
- name: "Rafael Winterhalter"
twitter: "rafaelcodes"
fediverse: "[email protected]"
github: "raphw"
- name: "Ralf D. Müller"
twitter: "RalfDMueller"
fediverse: "[email protected]"
github: "rdmueller"
- name: "Rashidi Zin"
twitter: "shidi"
fediverse: "[email protected]"
github: "rashidi"
linkedin: "rashidizin"
- name: "Ray Tsang"
twitter: "saturnism"
fediverse: "[email protected]"
github: "saturnism"
- name: "René Schwietzke"
twitter: "ReneSchwietzke"
fediverse: "[email protected]"
github: "rschwietzke"
- name: "Reza Rahman"
twitter: "reza_rahman"
fediverse: "[email protected]"
github: "m-reza-rahman"
- name: "Richard Fichtner"
twitter: "RichardFichtner"
fediverse: "[email protected]"