This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
germany.yml
6279 lines (5477 loc) · 211 KB
/
germany.yml
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
page: germany.html
title: Germany
users:
- rank: 1
name: "Hors"
login: "horsicq"
avatarUrl: https://avatars.githubusercontent.com/u/7762949?u=c20d68962e03472257e5ce4d8027ab36526b3a51&v=4
contributions: 78637
company: ""
organizations: ""
- rank: 2
name: "hackerman"
login: "aeneasr"
avatarUrl: https://avatars.githubusercontent.com/u/3372410?u=b48e7114015223887f823fa1413f2b6b1e9b95ae&v=4
contributions: 32613
company: "@ory, @serlo"
organizations: "serlo,gobuffalo,ory,eisbachcallin,ory-corp"
- rank: 3
name: "Christoph Guttandin"
login: "chrisguttandin"
avatarUrl: https://avatars.githubusercontent.com/u/158417?u=059bc5033b166e1c04b313b1e87698ac7436d187&v=4
contributions: 32407
company: ""
organizations: ""
- rank: 4
name: "Hanno Braun"
login: "hannobraun"
avatarUrl: https://avatars.githubusercontent.com/u/85732?u=bec395c4e9f7c0b5558c09bf957d18f4fced6d55&v=4
contributions: 9059
company: "self-employed"
organizations: "braun-embedded,rust-embedded,lpc-rs"
- rank: 5
name: "Rom"
login: "brillout"
avatarUrl: https://avatars.githubusercontent.com/u/1005638?u=bfbe0a4981cae46d5a0cf3a0e24a4ac04abe7421&v=4
contributions: 7739
company: ""
organizations: "vikejs,hattipjs"
- rank: 6
name: "Sandro"
login: "SuperSandro2000"
avatarUrl: https://avatars.githubusercontent.com/u/7258858?u=c524720e2844ffa8a2aa67944fde5af54031e06d&v=4
contributions: 6698
company: "@sapcc"
organizations: "NixOS,c3d2,ddclient,nix-community,supersandro-de,factoriotools,NuschtOS"
- rank: 7
name: "Indrajeet Patil"
login: "IndrajeetPatil"
avatarUrl: https://avatars.githubusercontent.com/u/11330453?u=5383867dd88305e4ddae3cae9bb664be8d024a95&v=4
contributions: 5305
company: ""
organizations: "Open-Systems-Pharmacology,esqLABS,easystats"
- rank: 8
name: "Sebastian Thiel"
login: "Byron"
avatarUrl: https://avatars.githubusercontent.com/u/63622?v=4
contributions: 5211
company: ""
organizations: "gitpython-developers,rust-lang,rust-lang-nursery"
- rank: 9
name: "Daniel"
login: "strengejacke"
avatarUrl: https://avatars.githubusercontent.com/u/26301769?u=5aaedb60d4f55848073f72d4dbd923eabaf6bead&v=4
contributions: 4588
company: "Universit\u00e4tsklinikum Hamburg-Eppendorf"
organizations: "easystats"
- rank: 10
name: "Thomas Boerger"
login: "tboerger"
avatarUrl: https://avatars.githubusercontent.com/u/156964?u=8ba41cc4f3c530dd8fe3e705de4d08706d8d962d&v=4
contributions: 4259
company: "Cloudpunks GmbH"
organizations: "NixOS,webhippie,dockhippie,go-gitea,kleister,gopad,toolhippie,rolehippie,promhippie,kubehippie,crafthippie,kustomhippie,actionhippie"
- rank: 11
name: "Nikita Popov"
login: "nikic"
avatarUrl: https://avatars.githubusercontent.com/u/216080?v=4
contributions: 4208
company: "Red Hat"
organizations: "php"
- rank: 12
name: "mark padgham"
login: "mpadge"
avatarUrl: https://avatars.githubusercontent.com/u/6697851?u=0f8c9fc5b04de2485164e2cde5b62d45b4e684a0&v=4
contributions: 4089
company: "@rOpenSci"
organizations: "ropensci,ecohealthalliance,ropenscilabs,hypertidy,ATFutures,moveability,atfutures-labs,pre-processing-r,ropensci-review-tools,UrbanAnalyst"
- rank: 13
name: "Sebastian Bergmann"
login: "sebastianbergmann"
avatarUrl: https://avatars.githubusercontent.com/u/25218?u=01bb70d9be43ded7572eb3862127ff281daa2725&v=4
contributions: 4034
company: "@thePHPcc "
organizations: "thePHPcc,phar-io"
- rank: 14
name: "Hendrik Mans"
login: "hmans"
avatarUrl: https://avatars.githubusercontent.com/u/1061?v=4
contributions: 3454
company: ""
organizations: "teamschnitzel"
- rank: 15
name: "FW"
login: "fwcd"
avatarUrl: https://avatars.githubusercontent.com/u/30873659?u=46cfaa8f32f180465432a5be2e17f235a6422885&v=4
contributions: 3339
company: "Kiel University"
organizations: "swift-calendar,ProjectLighthouseCAU"
- rank: 16
name: "\u00ae\ufe0fBYLICKILABS\u2122\ufe0f"
login: "bylickilabs"
avatarUrl: https://avatars.githubusercontent.com/u/109308073?u=7c8ac9a345247254576b3fb03c9bbae967cc4375&v=4
contributions: 3278
company: "BYLICKILABS"
organizations: "EddieHubCommunity,FearlessTech,Viabots,tzztson-federation"
- rank: 17
name: "Carlos Tadeu Panato Junior"
login: "cpanato"
avatarUrl: https://avatars.githubusercontent.com/u/4115580?u=402dadaac6946142ecc55565f8c526900a8466ae&v=4
contributions: 3260
company: "@chainguard-dev"
organizations: "kubernetes,helm,jaegertracing,kubernetes-nightly,kubernetes-sigs,falcosecurity,honk-ci,sigstore,chainguard-dev,distroless,wolfi-dev,chainguard-images,openvex"
- rank: 18
name: "Nico Rehwaldt"
login: "nikku"
avatarUrl: https://avatars.githubusercontent.com/u/58601?v=4
contributions: 3185
company: ""
organizations: "camunda,bpmn-io,kickr"
- rank: 19
name: "Sven-Hendrik Haase"
login: "svenstaro"
avatarUrl: https://avatars.githubusercontent.com/u/1664?u=79d054c26a2b487173c52d342cd822884251bea7&v=4
contributions: 3068
company: ""
organizations: "ducttape,archlinux,ggez"
- rank: 20
name: "Albert Zeyer"
login: "albertz"
avatarUrl: https://avatars.githubusercontent.com/u/59132?v=4
contributions: 2979
company: ""
organizations: "rwth-i6"
- rank: 21
name: "Ayman M."
login: "cs-MohamedAyman"
avatarUrl: https://avatars.githubusercontent.com/u/60182666?u=443d581c6b667593e12f070a539279f9232ac889&v=4
contributions: 2955
company: "Luxoft, Kaggle, DeepLearning.AI"
organizations: ""
- rank: 22
name: "Eugen Rochko"
login: "Gargron"
avatarUrl: https://avatars.githubusercontent.com/u/184731?u=8704afc87bc18bc5ad94119a7e2a40df292e23a7&v=4
contributions: 2898
company: "Mastodon"
organizations: "mastodon"
- rank: 23
name: "Charles Tapley Hoyt"
login: "cthoyt"
avatarUrl: https://avatars.githubusercontent.com/u/5069736?v=4
contributions: 2852
company: "Harvard Medical School"
organizations: "pybel,biocuration,bio2bel,ComPath,indralab,pharmacome,pykeen,GuiltyTargets,bel-enrichment,bel-commons,PathwayMerger,neurommsig,labsyspharm,pathwayforte,ratvec,neurommsig-epilepsy,seffnet,hemekg,drugrelink,hybrid-kg,MI2CAST,biopragmatics,cthoyt-teaches-reproducibility,pyobo,CoronaWhy,chemical-roles,bel2scm,y0-causal-inference,mapping-commons,stonkgs"
- rank: 24
name: "Niklas Rosenstein"
login: "NiklasRosenstein"
avatarUrl: https://avatars.githubusercontent.com/u/1318438?u=a156a99ea3586d6efc0243e86912795f83938dad&v=4
contributions: 2793
company: "Helsing GmbH"
organizations: ""
- rank: 25
name: "Uwe L. Korn"
login: "xhochy"
avatarUrl: https://avatars.githubusercontent.com/u/70274?u=6f0ecf9b9c4ba6dbedc801b6a78c40726de724f6&v=4
contributions: 2537
company: "@Quantco "
organizations: "apache,tomahawk-player,HaDiNet,hubot-archive,CodeforKarlsruhe,conda-forge,Quantco,python-sprints,regro,conda-incubator,data-engineering-collective"
- rank: 26
name: "Michael Mayer"
login: "lastzero"
avatarUrl: https://avatars.githubusercontent.com/u/301686?u=62326058ed4102e5a9f1ea2606130af69aa825f6&v=4
contributions: 2510
company: "@PhotoPrism"
organizations: "symlex,photoprism"
- rank: 27
name: ""
login: "oSumAtrIX"
avatarUrl: https://avatars.githubusercontent.com/u/13122796?u=35de388ce2add4df55a95c692fc513a07f33eb11&v=4
contributions: 2486
company: "@revanced"
organizations: "revanced"
- rank: 28
name: "Aleksey Shipil\u00ebv"
login: "shipilev"
avatarUrl: https://avatars.githubusercontent.com/u/1858943?u=45e6679167d5f3cd82e6f31c8b0f7ec5d16baa44&v=4
contributions: 2397
company: "AWS"
organizations: "openjdk"
- rank: 29
name: "Friedrich Lindenberg"
login: "pudo"
avatarUrl: https://avatars.githubusercontent.com/u/41628?v=4
contributions: 2383
company: "@opensanctions"
organizations: "bundestag,pdfminer,opensanctions"
- rank: 30
name: "Robert Haase"
login: "haesleinhuepf"
avatarUrl: https://avatars.githubusercontent.com/u/12660498?u=c12fca35ab5021be99f5500fdd8a3ee126ad0e55&v=4
contributions: 2368
company: "Cluster of Excellence \"Physics of Life\", TU Dresden"
organizations: "scijava,imagej,mpicbg-csbd,mpicbg-scicomp,SpimCat,clij,clEsperanto,BiAPoL"
- rank: 31
name: ""
login: "chriseth"
avatarUrl: https://avatars.githubusercontent.com/u/9073706?v=4
contributions: 2338
company: ""
organizations: ""
- rank: 32
name: "Jonas Platte"
login: "jplatte"
avatarUrl: https://avatars.githubusercontent.com/u/951129?u=c865ac569258c762f56304803cd5c6a1978e259b&v=4
contributions: 2332
company: "@vector-im"
organizations: "flipdot,matrix-org,vector-im,ruma,tokio-rs"
- rank: 33
name: "Andreas M\u00f6ller"
login: "localheinz"
avatarUrl: https://avatars.githubusercontent.com/u/605483?u=d6e926505b1127df66aa1132147e635b499e1fde&v=4
contributions: 2257
company: "@ergebnis"
organizations: "zendframework,phpunit,berlinjs,PHP-CS-Fixer,infection,laminas,ergebnis,FakerPHP"
- rank: 34
name: "Michael Kreil"
login: "MichaelKreil"
avatarUrl: https://avatars.githubusercontent.com/u/1007187?u=ae0f5df2d701dad4abb05c779c90968b84d1ebcf&v=4
contributions: 2247
company: "SWRdata"
organizations: "okfde,dbopendata,SWRdata,versatiles-org"
- rank: 35
name: "Daniel Mendler"
login: "minad"
avatarUrl: https://avatars.githubusercontent.com/u/50754?v=4
contributions: 2236
company: ""
organizations: "libtom,openscad,slim-template,moneta-rb,emacs-gnuplot,emacs-compat"
- rank: 36
name: "Marcel Klehr"
login: "marcelklehr"
avatarUrl: https://avatars.githubusercontent.com/u/986878?u=1408d48c83a9129a5f46028c377d581af5e20058&v=4
contributions: 2098
company: "@nextcloud"
organizations: "ether,nodejs,studieren-ohne-grenzen,hivejs,nextcloud,nextcloud-gmbh,gulf,magpie-ea,floccusaddon"
- rank: 37
name: "Bj\u00f6rn Gr\u00fcning"
login: "bgruening"
avatarUrl: https://avatars.githubusercontent.com/u/469983?v=4
contributions: 2097
company: "University of Freiburg"
organizations: "biopython,genericworkflownodes,deeptools,galaxyproject,BioContainers,galaxy-iuc,galaxyproteomics,bioconda,BackofenLab,mulled,involucro,usegalaxy-eu,eosc-life"
- rank: 38
name: "Matthias Seitz"
login: "mattsse"
avatarUrl: https://avatars.githubusercontent.com/u/19890894?u=c96a03cb7f91b07ab031984e66a1b86dff67c70d&v=4
contributions: 2083
company: ""
organizations: "foundry-rs"
- rank: 39
name: "Elbay Malik"
login: "EleoXDA"
avatarUrl: https://avatars.githubusercontent.com/u/27622683?u=82f54374062dfc5786265890370127d5af3f74a9&v=4
contributions: 2063
company: ""
organizations: "lewagon"
- rank: 40
name: "Lennart Poettering"
login: "poettering"
avatarUrl: https://avatars.githubusercontent.com/u/2130732?u=150ad61e1e2802b6b0ef8636e5f6a466ffb1dd5f&v=4
contributions: 2051
company: ""
organizations: "systemd"
- rank: 41
name: "V"
login: "Vendicated"
avatarUrl: https://avatars.githubusercontent.com/u/45497981?u=46506d4107a19e8d0abaa09c774394d6b835e13b&v=4
contributions: 1999
company: ""
organizations: "TeamVanced,Aliucord,MateriiApps,Vencord"
- rank: 42
name: "Matthias Nehlsen"
login: "matthiasn"
avatarUrl: https://avatars.githubusercontent.com/u/1390808?u=9041718cbe4c31cf7a1c972fcfb20b0ff683281b&v=4
contributions: 1950
company: ""
organizations: ""
- rank: 43
name: ""
login: "kpcyrd"
avatarUrl: https://avatars.githubusercontent.com/u/7763184?v=4
contributions: 1934
company: ""
organizations: "freifunkhamburg,ProjectMeshnet,archlinux,hyperboria,rust-av,sodiumoxide,sn0int,c3h2-ctf"
- rank: 44
name: "Dennis Felsing"
login: "def-"
avatarUrl: https://avatars.githubusercontent.com/u/2335377?u=51dc01412b851d913beba7d97ff0f056b90ecc5e&v=4
contributions: 1922
company: "Materialize"
organizations: "nim-lang,ddnet"
- rank: 45
name: "DevLeon"
login: "lmachens"
avatarUrl: https://avatars.githubusercontent.com/u/10058950?u=e7de4b61441759354b1111ea215838257ab867cb&v=4
contributions: 1884
company: ""
organizations: ""
- rank: 46
name: "Georg Ledermann"
login: "ledermann"
avatarUrl: https://avatars.githubusercontent.com/u/3557?u=323dbfb2c8a7e2bd527d2c4e231dcfab518033c1&v=4
contributions: 1873
company: ""
organizations: "salesking,completho,solectrus,templatus"
- rank: 47
name: "Martin Larralde"
login: "althonos"
avatarUrl: https://avatars.githubusercontent.com/u/8660647?u=194fbf9846310fda8a9e9d1288993cc967e28ef9&v=4
contributions: 1844
company: "EMBL, @zellerlab"
organizations: "ISA-tools,owlcollab,PyFilesystem,OBOFoundry,meetU-MasterStudents,PyO3,sphinx-contrib,vita-rust,zellerlab,AMI2B2018-BigData,fastobo"
- rank: 48
name: "Kamila Szewczyk"
login: "kspalaiologos"
avatarUrl: https://avatars.githubusercontent.com/u/27734421?u=ab8d13f351c3b6312c51096d338e375b76c93cd2&v=4
contributions: 1785
company: ""
organizations: "bots-gg,modern-rzip"
- rank: 49
name: "Niklas Fiekas"
login: "niklasf"
avatarUrl: https://avatars.githubusercontent.com/u/402777?u=1d6fdcb1a82a3f926329e56cdff023208bbadf83&v=4
contributions: 1760
company: ""
organizations: "parliamentwatch,lichess-org,agentcontest"
- rank: 50
name: "Matthias Urhahn"
login: "d4rken"
avatarUrl: https://avatars.githubusercontent.com/u/1439229?u=018da02bb92544262ad310db4710010d39e08262&v=4
contributions: 1752
company: "@d4rken-org "
organizations: "matomo-org,CellularPrivacy,corona-warn-app,d4rken-org"
- rank: 51
name: "Levente Polyak"
login: "anthraxx"
avatarUrl: https://avatars.githubusercontent.com/u/203012?u=939d6d3b5ff0b9e46e911d8792a40c20408574e2&v=4
contributions: 1746
company: ""
organizations: "ccchh,archlinux,pwndbg"
- rank: 52
name: "Andy Grunwald"
login: "andygrunwald"
avatarUrl: https://avatars.githubusercontent.com/u/320064?u=717b44be3358541999f5afae0dbd75de308a49f1&v=4
contributions: 1719
company: "@aiven @sourcectl"
organizations: "WebEngDUS,cncf,aiven,sourcectl"
- rank: 53
name: "Tim Daubensch\u00fctz"
login: "TimDaub"
avatarUrl: https://avatars.githubusercontent.com/u/2758453?u=118a9c08db32afc7700a9ee0cbbe9482067e9614&v=4
contributions: 1705
company: "Attestate"
organizations: "social-dist0rtion-protocol,0xdefaceme,rugpullindex"
- rank: 54
name: "Jan Schaffranek"
login: "franneck94"
avatarUrl: https://avatars.githubusercontent.com/u/20141069?u=a18b1d3ba9da9c6befc536e873604279ef7bb27e&v=4
contributions: 1700
company: "ZF and Udemy"
organizations: ""
- rank: 55
name: "Reini Urban"
login: "rurban"
avatarUrl: https://avatars.githubusercontent.com/u/41809?u=edffd729778cdefd68f5642614acbd3a6af4fdee&v=4
contributions: 1660
company: "nubix"
organizations: "parrot,perl11,o-fun,austin-perl-mongers"
- rank: 56
name: "Matthias Endler"
login: "mre"
avatarUrl: https://avatars.githubusercontent.com/u/175809?u=cbb9673725e43f7deb87c981a12b7614215eee66&v=4
contributions: 1659
company: "@corrode"
organizations: "team-rust,hugbotme,rust-fosdem,hello-rust,unicorn-gallery,analysis-tools-dev,tinysearch,mre-early-access,ReceiptManager,lycheeverse,media-tech-lab"
- rank: 57
name: "Marijn Haverbeke"
login: "marijnh"
avatarUrl: https://avatars.githubusercontent.com/u/144427?u=a436bcccf762fe8955142810578b13db63e3173d&v=4
contributions: 1654
company: "not interested in recruiter mail"
organizations: "recursecenter,OpenTechSchool,codemirror,ternjs,ProseMirror,acornjs"
- rank: 58
name: "Markus Staab"
login: "staabm"
avatarUrl: https://avatars.githubusercontent.com/u/120441?v=4
contributions: 1653
company: ""
organizations: "redaxo,propelorm,stomp-php,FriendsOfREDAXO,jquery-validation,sabre-io"
- rank: 59
name: "Raphael Michel"
login: "raphaelm"
avatarUrl: https://avatars.githubusercontent.com/u/64280?u=2a6881e3cd7c7d5ad65addcdb01b152cc3376a67&v=4
contributions: 1651
company: "rami.io GmbH"
organizations: "raumzeitlabor,djangocon,metarheinmain,nnev,abiapp,pretix,opacapp,c3nav,c3cashdesk,pretalx,venueless"
- rank: 60
name: "Florian Roth"
login: "Neo23x0"
avatarUrl: https://avatars.githubusercontent.com/u/2851492?u=17d1070f2095063306b08dc8ab5b1d857e599fc4&v=4
contributions: 1646
company: "@NextronSystems"
organizations: ""
- rank: 61
name: "Sebastian Schuberth"
login: "sschuberth"
avatarUrl: https://avatars.githubusercontent.com/u/349154?v=4
contributions: 1634
company: "Self-employed"
organizations: "eclipse,jenkinsci,msysgit,kotest,spdx,git-lfs,package-url,clearlydefined,licensee,oss-review-toolkit"
- rank: 62
name: "Edzer Pebesma "
login: "edzer"
avatarUrl: https://avatars.githubusercontent.com/u/520851?u=9bc892c3523be428dc211f2ccbcf04e8e0e564ff&v=4
contributions: 1633
company: "Institute for Geoinformatics, University of Muenster"
organizations: "ifgi,Open-EO,r-spatial,r-quantities,openEOPlatform"
- rank: 63
name: "Pierre Krieger"
login: "tomaka"
avatarUrl: https://avatars.githubusercontent.com/u/1412254?u=ecef2ec2978264af0981f7ede6733ecf143d7134&v=4
contributions: 1618
company: "Freelance"
organizations: "glium,libp2p,multiformats,tiny-http,vulkano-rs"
- rank: 64
name: "Benjamin Rosseaux"
login: "BeRo1985"
avatarUrl: https://avatars.githubusercontent.com/u/428863?v=4
contributions: 1614
company: ""
organizations: ""
- rank: 65
name: "andig"
login: "andig"
avatarUrl: https://avatars.githubusercontent.com/u/184815?v=4
contributions: 1597
company: ""
organizations: "evcc-io"
- rank: 66
name: "Fabian Mor\u00f3n Zirfas"
login: "ff6347"
avatarUrl: https://avatars.githubusercontent.com/u/315106?u=f31f5c5c50be40a2e7754c24798aed9e3d26c50d&v=4
contributions: 1581
company: "@technologiestiftung"
organizations: "basiljs,MPODev,FH-Potsdam,ae-scripting,ExtendScript,frntl,technologiestiftung,inpyjamas,hawk-de"
- rank: 67
name: "Sara Vieira"
login: "SaraVieira"
avatarUrl: https://avatars.githubusercontent.com/u/1051509?u=ed31cf8dc8bd9357e71ab945333b578dc78a711a&v=4
contributions: 1563
company: ""
organizations: "jsheroes,styled-components,esfiddle,OpenSourceLove,ReactFest,upwithxyz,therehq,pmndrs,queerjs,redi-react-fall-2020"
- rank: 68
name: "Dr. Ralf S. Engelschall"
login: "rse"
avatarUrl: https://avatars.githubusercontent.com/u/221273?u=b3d0b904fb6519743bcbcd86549315ce71899b21&v=4
contributions: 1519
company: "msg Research, msg systems ag"
organizations: "gemstonejs"
- rank: 69
name: "Matthias Koch"
login: "matkoch"
avatarUrl: https://avatars.githubusercontent.com/u/5005566?u=145191c98212c6b2547911308645bd79ec0202e3&v=4
contributions: 1502
company: "@JetBrains"
organizations: "JetBrains,nuke-build"
- rank: 70
name: "Andre Weissflog"
login: "floooh"
avatarUrl: https://avatars.githubusercontent.com/u/1699414?u=78fddd83a07cf36de9d44ad3dd06bbea3aa773b1&v=4
contributions: 1472
company: ""
organizations: ""
- rank: 71
name: "Philipp Oppermann"
login: "phil-opp"
avatarUrl: https://avatars.githubusercontent.com/u/1131315?v=4
contributions: 1452
company: ""
organizations: "rust-osdev"
- rank: 72
name: "Sebastian Riedel"
login: "kraih"
avatarUrl: https://avatars.githubusercontent.com/u/30094?v=4
contributions: 1449
company: "@SUSE"
organizations: "openSUSE,tpf,SUSE,mojolicious,os-autoinst"
- rank: 73
name: ""
login: "kingstar1115"
avatarUrl: https://avatars.githubusercontent.com/u/126067661?u=87284a092e69eee035cddb27458c4ce50a588dd7&v=4
contributions: 1448
company: ""
organizations: ""
- rank: 74
name: "Dustin Deus"
login: "StarpTech"
avatarUrl: https://avatars.githubusercontent.com/u/1764424?u=ee2eeb1077e2eeb3224245cdc26a4a3954f2803d&v=4
contributions: 1432
company: ""
organizations: "hemerajs,fastify,Prettyhtml"
- rank: 75
name: "Jan Heinrich Reimer"
login: "heinrichreimer"
avatarUrl: https://avatars.githubusercontent.com/u/5065698?u=a93c35b1502ce9705cfb040325c153a90be636c5&v=4
contributions: 1417
company: "Research Assistant @webis-de"
organizations: "RapScript,Crazy-Marvin,reimersoftware,orgelverein,fsrmatheinfo"
- rank: 76
name: "Timur Shemsedinov"
login: "tshemsedinov"
avatarUrl: https://avatars.githubusercontent.com/u/4405297?u=9561704e40541dcbea961441ff62bec5195d782d&v=4
contributions: 1413
company: "CTO at QOTEQ, Salucyber, Metatech; Architect at Metarhia and Metactos; Lecturer at KPI, KSE"
organizations: "HowProgrammingWorks,metarhia,Metaserverless,Salucyber,kse-ua,meta-edu,QOTEQ,metaconf"
- rank: 77
name: "Tobias Bieniek"
login: "Turbo87"
avatarUrl: https://avatars.githubusercontent.com/u/141300?u=e222ed60f0855d57158dd20d3613f4db42b4236f&v=4
contributions: 1385
company: ""
organizations: "geoalchemy,XCSoar,emberjs,skylines-project,rust-lang,ember-cli,georust,intellij-rust,qunitjs,glimmerjs,actix,ember-template-lint,weglide,glide-rs"
- rank: 78
name: "Tagir Valeev"
login: "amaembo"
avatarUrl: https://avatars.githubusercontent.com/u/5114450?v=4
contributions: 1372
company: ""
organizations: ""
- rank: 79
name: "Robin Gareus"
login: "x42"
avatarUrl: https://avatars.githubusercontent.com/u/30246?v=4
contributions: 1348
company: ""
organizations: "Ardour,zynaddsubfx"
- rank: 80
name: "Fatih Deniz"
login: "fdeniz07"
avatarUrl: https://avatars.githubusercontent.com/u/81612480?v=4
contributions: 1338
company: "Freelance"
organizations: ""
- rank: 81
name: "Leah Neukirchen"
login: "leahneukirchen"
avatarUrl: https://avatars.githubusercontent.com/u/139?u=57ed08ba022445d91e5190d92198e99506f6ac0f&v=4
contributions: 1285
company: ""
organizations: "rack,void-linux,notqmail"
- rank: 82
name: "Oleg Isonen"
login: "kof"
avatarUrl: https://avatars.githubusercontent.com/u/52824?v=4
contributions: 1279
company: "@webstudio-is"
organizations: "cssinjs,webstudio-is"
- rank: 83
name: "ligi"
login: "ligi"
avatarUrl: https://avatars.githubusercontent.com/u/111600?u=26403e7ba609510cbfd05103cc1f8a81c7d66834&v=4
contributions: 1270
company: "@ethereum "
organizations: "k9mail,c-base,ethereum,criticalmaps,esPass,survivalmanual,berlin-hack-and-tell,walleth,ethereum-lists,ethereum-magicians,efdevcon,ethberlin-hackathon,goerli,Department-of-Decentralization,komputing,tincubeth,ethdevberlin,ethberlinzwei,ChainAgnostic,sourcifyeth,omyradio,efdevconnect,ethb3rlin"
- rank: 84
name: "Thorsten Hans"
login: "ThorstenHans"
avatarUrl: https://avatars.githubusercontent.com/u/357884?u=06c2fd5c15e88c8fee22c5914f758f6d6485d146&v=4
contributions: 1266
company: "Thinktecture AG"
organizations: "thinktecture,ShareCoffee"
- rank: 85
name: "Matthias Fey"
login: "rusty1s"
avatarUrl: https://avatars.githubusercontent.com/u/6945922?u=8f072c0eb83c1a04c300a834cdc7c01c99923da9&v=4
contributions: 1258
company: ""
organizations: "kumo-ai,pyg-team"
- rank: 86
name: "Daniel Meyer"
login: "pubkey"
avatarUrl: https://avatars.githubusercontent.com/u/8926560?u=57e2e3a487a8f649fb877effc4cac07ec76e711a&v=4
contributions: 1254
company: ""
organizations: ""
- rank: 87
name: "Stefan Wehrmeyer"
login: "stefanw"
avatarUrl: https://avatars.githubusercontent.com/u/78356?u=c213fdbe5aa8ee0eff7a6a62778dd4a029013a8e&v=4
contributions: 1244
company: ""
organizations: "okfn,opendatanetwork,openspending,bundestag,bundesregierung,okfde,stadtlandcode,OpenTransport,OParl,Jugendhackt,codeforgermany,netzwerkrecherche,mapnificent,fragdenstaat"
- rank: 88
name: "Philipp Rudiger"
login: "philippjfr"
avatarUrl: https://avatars.githubusercontent.com/u/1550771?u=4359aedd0977e668573a572329b04ca0ad9abd92&v=4
contributions: 1236
company: "Anaconda Inc."
organizations: "ioam,pangeo-data,holoviz"
- rank: 89
name: "Wolf Vollprecht"
login: "wolfv"
avatarUrl: https://avatars.githubusercontent.com/u/885054?u=833ad7754e88429d7e610f9324ca6bc18d8e1bf0&v=4
contributions: 1210
company: "prefix.dev GmbH"
organizations: "mathics,asl-beachbot,OpenBrainInitiative,conda-forge,QuantStack,jupyterlab,ApostropheEditor,RoboStack,voila-dashboards,xtensor-stack,jupyter-xeus,scikit-geometry,mamba-org"
- rank: 90
name: "Jan-Otto Kr\u00f6pke"
login: "jkroepke"
avatarUrl: https://avatars.githubusercontent.com/u/1560587?u=32b3431ddec0a7f93ba321721812f74ccb48fa21&v=4
contributions: 1206
company: "@cloudeteer"
organizations: "cloudeteer,prometheus-community,RawkodeAcademy"
- rank: 91
name: "cytopia"
login: "cytopia"
avatarUrl: https://avatars.githubusercontent.com/u/12533999?u=cc90832a22404fd5657f38a8bdb05e1aa5db1c58&v=4
contributions: 1201
company: ""
organizations: "Flaconi,metadesignsf,devilbox"
- rank: 92
name: "Moritz Warning"
login: "mwarning"
avatarUrl: https://avatars.githubusercontent.com/u/546193?v=4
contributions: 1199
company: ""
organizations: "freifunk-bielefeld,openwrt-routing,nodogsplash,meshenger-app"
- rank: 93
name: "Mirco Wittrien"
login: "mwittrien"
avatarUrl: https://avatars.githubusercontent.com/u/23700969?u=fe826320107e31529241df047b5694e7a85a6190&v=4
contributions: 1195
company: ""
organizations: ""
- rank: 94
name: "Hynek Schlawack"
login: "hynek"
avatarUrl: https://avatars.githubusercontent.com/u/41240?u=f606712d2e5e838decb0fac1aadbb0e737dd40eb&v=4
contributions: 1189
company: "Variomedia AG"
organizations: "twisted,python,python-attrs"
- rank: 95
name: "cketti"
login: "cketti"
avatarUrl: https://avatars.githubusercontent.com/u/218061?v=4
contributions: 1185
company: "@thundernest "
organizations: "k9mail,c-base,gdg-berlin-android,devfest-berlin,thundernest"
- rank: 96
name: "Tobias Koppers"
login: "sokra"
avatarUrl: https://avatars.githubusercontent.com/u/1365881?v=4
contributions: 1184
company: "@vercel"
organizations: "webpack,jmpressjs,babel,css-modules,vercel,webpack-contrib,maintainers,open-bot,openjs-foundation,OS-Maintainer-Feedback-Group"
- rank: 97
name: "Karl Heinz Marbaise"
login: "khmarbaise"
avatarUrl: https://avatars.githubusercontent.com/u/42484?v=4
contributions: 1182
company: "SoftwareEntwicklung Beratung Schulung"
organizations: "apache,jenkinsci,codehaus-plexus,mojohaus,go-gitea,SoEBeS"
- rank: 98
name: "Matthias Kleine"
login: "klein0r"
avatarUrl: https://avatars.githubusercontent.com/u/1959049?u=66241ecf408400ac3d94e8f5a816e730fb0cbd12&v=4
contributions: 1164
company: "@haus-automation"
organizations: ""
- rank: 99
name: "Martin Czygan"
login: "miku"
avatarUrl: https://avatars.githubusercontent.com/u/53705?v=4
contributions: 1163
company: "@internetarchive @ubleipzig"
organizations: "internetarchive,finc,Pandacodium,ubleipzig,LPUG,refugeehackathon,golang-leipzig"
- rank: 100
name: "Oliver Drotbohm"
login: "odrotbohm"
avatarUrl: https://avatars.githubusercontent.com/u/128577?v=4
contributions: 1157
company: "VMware"
organizations: "spring-projects,JavaPosseRoundup,st-tu-dresden,st-tu-dresden-praktikum,xmolecules"
- rank: 101
name: "Enno T. Boland"
login: "Gottox"
avatarUrl: https://avatars.githubusercontent.com/u/1056976?u=71ebda111d961e7ef88f496e2747d26d02a1e874&v=4
contributions: 1152
company: ""
organizations: "c3ks,void-linux,withlazers"
- rank: 102
name: "Dr. Stefan Schimanski"
login: "sttts"
avatarUrl: https://avatars.githubusercontent.com/u/730123?v=4
contributions: 1146
company: ""
organizations: "jenkinsci,kcp-dev"
- rank: 103
name: "Lukas Kalbertodt"
login: "LukasKalbertodt"
avatarUrl: https://avatars.githubusercontent.com/u/7419664?u=9485fce546dda011c35f388b54d852e139ba30b2&v=4
contributions: 1124
company: "@elan-ev "
organizations: "virtUOS,elan-ev,rust-lang,opencast,OsnaCS,rust-lang-nursery,auto-impl-rs"
- rank: 104
name: "Mark Paluch"
login: "mp911de"
avatarUrl: https://avatars.githubusercontent.com/u/1035015?u=1032c1781c8c3a2a2832efab320a566340ef5b31&v=4
contributions: 1114
company: "vmware"
organizations: "spring-projects,majug,cdi-spec,spring-cloud,connect-it,lettuce-io,r2dbc"
- rank: 105
name: "Mohamed Mesto"
login: "MohamedMesto"
avatarUrl: https://avatars.githubusercontent.com/u/44340777?u=ab708e76f2448e6f9715c550cb064bfbf3428364&v=4
contributions: 1112
company: ""
organizations: ""
- rank: 106
name: "Friedel Ziegelmayer"
login: "dignifiedquire"
avatarUrl: https://avatars.githubusercontent.com/u/790842?u=b7dd795afade6650e64ed348b5ab04f40eb5e8ce&v=4
contributions: 1109
company: ""
organizations: "esdiscuss,karma-runner,browserify,devsmeetup,EpicGames,squatconf,ipfs,libp2p,pull-stream,ipld,multiformats,RustCrypto,autocrypt,ipfs-shipyard,deltachat,rpgp,async-rs,http-rs,async-email"
- rank: 107
name: "Philip Rebohle"
login: "doitsujin"
avatarUrl: https://avatars.githubusercontent.com/u/25567304?u=e753c1eafb0e81504b6ab74883303565cdfa66b2&v=4
contributions: 1108
company: ""
organizations: ""
- rank: 108
name: "Nico Domino"
login: "ndom91"
avatarUrl: https://avatars.githubusercontent.com/u/7415984?u=ff80c3b3811a47ffa44abca3b2134cd5e19be458&v=4
contributions: 1106
company: "@checkly"
organizations: "checkly,newtelco,nextauthjs"
- rank: 109
name: ""
login: "probonopd"
avatarUrl: https://avatars.githubusercontent.com/u/2480569?u=9f33a41cde32a83d2bc3ab23e3a2a0432f8c7fcb&v=4
contributions: 1104
company: ""
organizations: "PureDarwin,AppImage,AppImageCommunity,helloSystem"
- rank: 110
name: "Jannis R"
login: "derhuerst"
avatarUrl: https://avatars.githubusercontent.com/u/5072613?u=8a23e059b44dd94dd73084c7ccbaa801ef0d3f0d&v=4
contributions: 1097
company: "freelancer"
organizations: "sozialhelden,HSLdevcom,wizardamigos,codeforberlin,audiojs,public-transport,de-stops,CycleHack-Berlin,gtfs-js,bbnavi"
- rank: 111
name: "Andrea Giammarchi"
login: "WebReflection"
avatarUrl: https://avatars.githubusercontent.com/u/85749?u=01f98bf9afe9c3c798b97ba508f63804ac729fe5&v=4
contributions: 1096
company: ""
organizations: "adobe-webplatform,es-shims,nodejs,ungap"
- rank: 112
name: "Sophia Brandt"
login: "sophiabrandt"
avatarUrl: https://avatars.githubusercontent.com/u/16630701?u=93ed10d6593c4ab7db2b45a354fcd7d362d848a2&v=4
contributions: 1096
company: "newcubator GmbH"
organizations: "newcubator,zero-to-mastery,zeroDevs,Virtual-Coffee"
- rank: 113
name: "Chris Ruppel"
login: "rupl"
avatarUrl: https://avatars.githubusercontent.com/u/254753?u=d658da5fbe2ff49b520493e5055d42fb7d4696c6&v=4
contributions: 1085
company: ""
organizations: "ot-crew,UN-OCHA"
- rank: 114
name: "Hendrik Erz"
login: "nathanlesage"
avatarUrl: https://avatars.githubusercontent.com/u/17251683?u=eaab6d2597f12e8f585530ef089567aedb1d32a0&v=4
contributions: 1085
company: "@Zettlr "
organizations: "Zettlr"
- rank: 115
name: "Jens Klingenberg"
login: "Foso"
avatarUrl: https://avatars.githubusercontent.com/u/5015532?u=c0b86402a6a39770b8f9b15221cf6dee91714905&v=4
contributions: 1084
company: ""
organizations: ""
- rank: 116
name: "Alain Schlesser"
login: "schlessera"
avatarUrl: https://avatars.githubusercontent.com/u/83631?u=1d81294a2304e8d0c6a31cfc121bf639846752c9&v=4
contributions: 1076
company: "XWP"
organizations: "x-team,WordPress,wp-cli,codeablehq,wecodemore,studiopress,Yoast,WP-API,xwp,brightnucleus,pluginkollektiv,php-composter,maintainers,wp-core-bootstrap,wp-core-php,ripstop-team,mwpd,asmprotocol,PHPCSStandards"
- rank: 117
name: "Christian Parpart"
login: "christianparpart"
avatarUrl: https://avatars.githubusercontent.com/u/56763?u=3e46099035fcc96e01be5297c24450bf40d92134&v=4
contributions: 1075
company: "Ethereum"
organizations: "xzero,ethereum,contour-terminal"
- rank: 118
name: "Sebastian Muszynski"
login: "syssi"
avatarUrl: https://avatars.githubusercontent.com/u/2735933?u=c5702ae44fa2b9fe8bb572eb4d260a78c5b9b389&v=4
contributions: 1068
company: ""
organizations: "home-assistant,constructiva"
- rank: 119
name: "Lefteris Karapetsas"
login: "LefterisJP"
avatarUrl: https://avatars.githubusercontent.com/u/1658405?v=4
contributions: 1057
company: ""
organizations: "rotki"
- rank: 120
name: "Martin Donath"
login: "squidfunk"
avatarUrl: https://avatars.githubusercontent.com/u/932156?u=7e83d7918b08b3b0bb9d190a6719bee81378d381&v=4
contributions: 1039
company: "@stylezen"
organizations: "stylezen,mkdocs-material"
- rank: 121
name: "Mark Scherer"
login: "dereuromark"
avatarUrl: https://avatars.githubusercontent.com/u/39854?v=4
contributions: 1037
company: "Available as (Cake)PHP expert"
organizations: "cakephp,FriendsOfCake"
- rank: 122
name: "Johannes K\u00f6ster"
login: "johanneskoester"
avatarUrl: https://avatars.githubusercontent.com/u/1858646?u=d0a3558f4609b4dfefbfeced967646b8a7e9e823&v=4
contributions: 1027
company: "University of Duisburg-Essen"
organizations: ""
- rank: 123
name: "Peter Taoussanis"
login: "ptaoussanis"
avatarUrl: https://avatars.githubusercontent.com/u/160011?u=9bd357e46497a74a0629a5e8089f17f2fa945a2c&v=4
contributions: 1020
company: "Taoensso"
organizations: "clojurewerkz,http-kit,Taoensso"
- rank: 124
name: "Michael Simons"
login: "michael-simons"
avatarUrl: https://avatars.githubusercontent.com/u/526383?u=e72da564d95caf8f196c95f8db719850e69515eb&v=4
contributions: 989
company: "@neo4j "
organizations: "springbootbuch"
- rank: 125
name: "Karl Stenerud"
login: "kstenerud"
avatarUrl: https://avatars.githubusercontent.com/u/245857?v=4