forked from xonsh/xonsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.authors.yml
1372 lines (1372 loc) · 33.8 KB
/
.authors.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
- name: Randy Syring
email: [email protected]
num_commits: 4
first_commit: 2016-04-01 00:16:37
github: rsyring
- name: vaaaaanquish
email: [email protected]
aliases:
- '@vaaaaanquish'
- vaaaaanquish
- 6syun9
num_commits: 21
first_commit: 2018-07-17 01:14:04
github: vaaaaanquish
- name: Dan Allan
email: [email protected]
num_commits: 1
first_commit: 2018-12-14 20:04:25
github: danielballan
- name: Lucas Inojosa
email: [email protected]
alternate_emails:
num_commits: 4
first_commit: 2016-04-23 15:08:17
github: lucasicf
- name: Jamie Bliss
email: [email protected]
aliases:
- James Bliss
alternate_emails:
num_commits: 216
first_commit: 2016-07-20 14:05:08
github: astronouth7303
- name: Cody Scott
email: [email protected]
num_commits: 6
first_commit: 2016-02-20 10:43:27
github: Siecje
- name: Mark Wiebe
email: [email protected]
num_commits: 2
first_commit: 2016-05-22 21:28:53
- name: adam j hartz
email: [email protected]
num_commits: 4
first_commit: 2016-05-19 14:04:42
github: adqm
alternate_emails:
- name: Travis Shirk
email: [email protected]
num_commits: 24
first_commit: 2015-11-13 23:50:50
github: nicfit
- name: Gil Forsyth
email: [email protected]
alternate_emails:
num_commits: 555
first_commit: 2015-10-19 16:04:32
github: gforsyth
- name: Morten Enemark Lund
email: [email protected]
num_commits: 522
first_commit: 2015-07-10 07:54:10
github: melund
- name: Ned Letcher
email: [email protected]
num_commits: 1
first_commit: 2016-05-19 23:05:34
github: ned2
- name: Jan Schulz
email: [email protected]
num_commits: 3
first_commit: 2016-07-04 12:33:45
github: janschulz
- name: Zach Crownover
email: [email protected]
github: strangelittlemonkey
num_commits: 1
first_commit: 2018-09-25 02:47:30
- name: Nathan Hoad
email: [email protected]
num_commits: 2
first_commit: 2017-04-19 04:47:15
- name: Konstantin Molchanov
email: [email protected]
alternate_emails:
num_commits: 27
first_commit: 2016-02-11 03:47:16
github: moigagoo
- name: BlahGeek
email: [email protected]
num_commits: 83
first_commit: 2016-08-20 22:07:18
github: blahgeek
- name: Nickolay Bukreyev
email: [email protected]
num_commits: 4
first_commit: 2016-07-30 07:34:31
github: SirNickolas
- name: Miguel de Val-Borro
email: [email protected]
num_commits: 1
first_commit: 2015-11-08 22:32:28
github: migueldvb
- name: Andrew Hundt
email: [email protected]
num_commits: 12
first_commit: 2017-08-13 21:48:26
github: ahundt
- name: Alessio Bogon
email: [email protected]
alternate_emails:
num_commits: 7
first_commit: 2016-06-17 16:16:16
github: youtux
- name: Konstantinos Tsakiltzidis
email: [email protected]
aliases:
- laerus
num_commits: 339
first_commit: 2016-06-17 07:08:58
github: Carreau
- name: Hirotomo Moriwaki
email: [email protected]
num_commits: 1
first_commit: 2018-11-09 00:14:50
github: philopon
- name: Phil Elson
email: [email protected]
num_commits: 1
first_commit: 2016-06-10 00:39:38
github: pelson
- name: Samuel Dion-Girardeau
email: [email protected]
num_commits: 3
first_commit: 2018-01-13 14:24:46
github: samueldg
- name: Burak Yiğit Kaya
email: [email protected]
aliases:
- Burak Yigit Kaya
num_commits: 40
first_commit: 2015-06-18 04:00:34
github: BYK
- name: Guillaume Leclerc
email: [email protected]
alternate_emails:
num_commits: 26
first_commit: 2016-05-12 12:16:15
github: GuillaumeLeclerc
- name: Sagar Tewari
email: [email protected]
alternate_emails:
num_commits: 33
first_commit: 2018-06-05 10:51:44
github: sagartewari01
- name: JuanPablo
email: [email protected]
num_commits: 5
first_commit: 2015-03-15 22:05:07
github: juanpabloaj
- name: Alexey
email: [email protected]
num_commits: 4
first_commit: 2018-04-06 03:12:52
github: WouldYouKindly
- name: Alexandre Ferland
email: [email protected]
aliases:
- admiralobvious
num_commits: 4
first_commit: 2015-03-16 23:33:04
- name: K.-Michael Aye
email: [email protected]
alternate_emails:
num_commits: 8
first_commit: 2015-07-25 03:46:15
github: michaelaye
- name: Michael Droettboom
email: [email protected]
num_commits: 3
first_commit: 2015-08-24 16:32:54
github: mdboom
- name: Erin Call
email: [email protected]
num_commits: 1
first_commit: 2016-06-01 02:20:14
github: ErinCall
- name: Yohei Tamura
email: [email protected]
num_commits: 7
first_commit: 2018-12-20 09:42:36
github: tamuhey
- name: Eric Dill
email: [email protected]
num_commits: 2
first_commit: 2016-07-05 20:21:59
github: ericdill
- name: Trevor Bekolay
email: [email protected]
num_commits: 1
first_commit: 2016-06-11 13:11:13
github: tbekolay
- name: Matthias Bussonnier
email: [email protected]
num_commits: 38
first_commit: 2015-11-27 03:58:02
github: Carreau
- name: Jonathan Slenders
email: [email protected]
num_commits: 12
first_commit: 2015-07-30 16:26:58
github: jonathanslenders
- name: guillearch
email: [email protected]
num_commits: 3
first_commit: 2018-10-15 17:06:48
github: guillearch
- name: VHarisop
email: [email protected]
num_commits: 18
first_commit: 2016-06-04 22:48:00
github: VHarisop
- name: javValverde
email: [email protected]
num_commits: 3
first_commit: 2015-03-25 15:10:19
github: javValverde
- name: Bernardas Ališauskas
email: [email protected]
aliases:
- Bernardas
num_commits: 20
first_commit: 2016-06-27 09:39:26
github: Granitosaurus
- name: Ollie Terrance
email: [email protected]
num_commits: 5
first_commit: 2016-05-26 08:04:09
- name: neruok
email: [email protected]
alternate_emails:
num_commits: 2
first_commit: 2017-12-19 10:30:09
github: neruok
- name: Gordon Ball
email: [email protected]
num_commits: 30
first_commit: 2016-10-17 09:17:05
github: chronitis
- name: Tzu-ping Chung
email: [email protected]
num_commits: 1
first_commit: 2015-11-04 04:40:01
github: uranusjr
- name: Joel Gerber
email: [email protected]
num_commits: 23
first_commit: 2017-06-07 11:51:06
github: Jitsusama
- name: Domenic Barbuzzi
email: [email protected]
num_commits: 2
first_commit: 2018-10-15 15:53:28
github: dbarbuzzi
- name: Andrew Toskin
email: [email protected]
num_commits: 1
first_commit: 2016-05-18 19:51:37
github: terrycloth
- name: Shahin
email: [email protected]
num_commits: 3
first_commit: 2017-05-18 05:58:43
github: shahinism
- name: Jason R. Coombs
email: [email protected]
num_commits: 11
first_commit: 2018-04-23 15:25:29
github: jaraco
- name: torgny
email: [email protected]
num_commits: 1
first_commit: 2015-03-11 18:12:18
- name: Maximilian Köhl
email: [email protected]
num_commits: 7
first_commit: 2017-12-24 22:32:27
github: koehlma
- name: Marvin Steadfast
email: [email protected]
num_commits: 4
first_commit: 2016-07-20 09:16:25
github: xsteadfastx
- name: halloleo
email: [email protected]
alternate_emails:
num_commits: 8
first_commit: 2018-11-06 00:00:27
github: halloleo
- name: Aaron Meurer
email: [email protected]
num_commits: 4
first_commit: 2015-07-15 13:53:57
github: asmeurer
- name: metamind
email: metamind@Metafoot
num_commits: 2
first_commit: 2016-07-24 13:26:43
github: laerus
- name: Will Wykeham
email: [email protected]
num_commits: 8
first_commit: 2016-05-12 11:57:54
- name: William Woodall
email: [email protected]
num_commits: 1
first_commit: 2016-06-04 21:51:43
- name: Rob Brewer
email: [email protected]
aliases:
- Robert W. Brewer
num_commits: 35
first_commit: 2015-05-08 01:14:26
github: scopatz
- name: Matteo Bertini
email: [email protected]
num_commits: 4
first_commit: 2015-03-16 12:19:21
- name: Jake Hedman
email: [email protected]
num_commits: 6
first_commit: 2018-10-29 07:10:17
github: JakeHedman
- name: Alexander Sosedkin
email: [email protected]
num_commits: 7
first_commit: 2016-09-24 02:35:09
github: t184256
- name: Klaus Alexander Seistrup
email: [email protected]
alternate_emails:
num_commits: 47
first_commit: 2015-07-28 13:29:31
github: kseistrup
- name: Marcel Bollmann
email: [email protected]
num_commits: 5
first_commit: 2015-03-13 20:47:45
github: mbollmann
- name: mdraw
email: [email protected]
num_commits: 5
first_commit: 2015-09-30 19:57:53
github: mdraw
- name: ariel faigon
email: [email protected]
num_commits: 1
first_commit: 2016-05-29 20:14:33
github: arielf
- name: Hugo Wang
email: [email protected]
num_commits: 165
first_commit: 2016-06-04 22:56:42
github: mitnk
- name: David Strobach
email: [email protected]
aliases:
- laloch
num_commits: 164
first_commit: 2018-07-26 13:51:50
github: laloch
- name: Nico Lehmann
email: [email protected]
num_commits: 3
first_commit: 2017-10-28 02:58:25
github: nilehmann
- name: traverseda
email: [email protected]
num_commits: 6
first_commit: 2017-12-04 10:20:53
- name: Jean-Benoist Leger
email: [email protected]
alternate_emails:
- jbleger@gertrude
num_commits: 53
first_commit: 2017-01-01 19:27:34
- name: Nigel Tea
email: [email protected]
num_commits: 1
first_commit: 2016-09-28 08:32:45
github: nigeltea
- name: JohnLunzer
email: [email protected]
aliases:
- jlunz
alternate_emails:
num_commits: 18
first_commit: 2016-05-25 15:01:30
- name: Qiushi Pan
email: [email protected]
num_commits: 2
first_commit: 2018-11-24 15:18:47
github: qqhann
- name: Mattias Ugelvik
email: [email protected]
num_commits: 5
first_commit: 2015-03-19 15:18:02
- name: Frank Sachsenheim
email: [email protected]
alternate_emails:
num_commits: 14
first_commit: 2016-05-15 06:55:38
github: funkyfuture
- name: Anthony Scopatz
email: [email protected]
num_commits: 2661
first_commit: 2015-01-21 17:04:13
github: scopatz
- name: anatoly techtonik
email: [email protected]
num_commits: 4
first_commit: 2019-01-22 14:02:27
github: techtonik
- name: Mark Szumowski
email: [email protected]
github: mszu
num_commits: 1
first_commit: 2016-06-08 22:47:07
- name: Ryan Gonzalez
email: [email protected]
num_commits: 5
first_commit: 2016-05-20 15:42:40
github: kirbyfan64
- name: The Gitter Badger
email: [email protected]
num_commits: 1
first_commit: 2016-03-07 11:48:24
- name: Cameron Bates
email: [email protected]
num_commits: 1
first_commit: 2015-03-10 19:40:48
github: crbates
- name: Kermit Alexander II
email: [email protected]
num_commits: 1
first_commit: 2016-06-17 09:47:18
github: DangerOnTheRanger
- name: Richard Kim
email: [email protected]
num_commits: 1
first_commit: 2015-11-08 15:56:15
github: emacs18
- name: Brian S. Corbin
email: [email protected]
num_commits: 1
first_commit: 2015-03-18 16:53:25
- name: Oleh Prypin
email: [email protected]
num_commits: 8
first_commit: 2016-07-01 03:14:13
github: BlaXpirit
- name: Erez Shinan
email: [email protected]
num_commits: 1
first_commit: 2018-10-15 01:04:41
github: erezsh
- name: Paul Goelz
email: [email protected]
num_commits: 18
first_commit: 2016-06-12 17:27:52
github: pgoelz
- name: Nakada Takumi
email: [email protected]
num_commits: 1
first_commit: 2017-02-24 19:50:25
github: harukaeru
- name: Sebastian Wagner
email: [email protected]
num_commits: 3
first_commit: 2017-12-04 14:42:51
github: sebix
- name: Ross Nomann
email: [email protected]
num_commits: 1
first_commit: 2017-06-22 16:19:40
github: rossnomann
- name: eyalzek
email: [email protected]
num_commits: 1
first_commit: 2015-03-19 11:39:10
github: eyalzek
- name: josh
email: [email protected]
num_commits: 2
first_commit: 2015-10-01 04:21:57
github: jsarver
- name: AaronV77
email: [email protected]
num_commits: 4
first_commit: 2018-07-14 14:21:52
github: AaronV77
- name: Kurtis Rader
email: [email protected]
num_commits: 14
first_commit: 2015-11-05 22:35:41
github: krader1961
- name: Andre Weltsch
email: [email protected]
alternate_emails:
num_commits: 6
first_commit: 2017-01-16 16:38:45
github: aweltsch
- name: yuqing
email: [email protected]
alternate_emails:
num_commits: 3
first_commit: 2016-05-13 02:42:19
github: tsingakbar
- name: Pedro Rodriguez
email: [email protected]
num_commits: 1
first_commit: 2017-01-26 13:00:22
github: EntilZha
- name: Jeremy Donahue
email: [email protected]
num_commits: 6
first_commit: 2016-06-08 21:43:39
- name: Justin Moen
email: [email protected]
num_commits: 12
first_commit: 2016-07-15 17:42:54
github: stockninja
- name: TobalJackson
email: [email protected]
num_commits: 2
first_commit: 2016-05-13 11:14:49
github: TobalJackson
- name: Eric Harris
email: [email protected]
num_commits: 1
first_commit: 2016-08-04 13:37:26
github: ericmharris
- name: Erick Tucto
email: [email protected]
num_commits: 4
first_commit: 2018-12-12 18:26:28
github: ErickTucto
- name: goodboy
email: [email protected]
num_commits: 0
first_commit: 2018-02-11 23:39:33
- name: Greg Thole
email: [email protected]
num_commits: 2
first_commit: 2015-05-13 21:51:53
- name: Min RK
email: [email protected]
num_commits: 2
first_commit: 2016-01-14 09:40:22
- name: Raphael Gaschignard
email: [email protected]
num_commits: 6
first_commit: 2016-08-23 11:09:57
github: rtpg
- name: Tyler Goodlet
email: [email protected]
num_commits: 4
first_commit: 2017-01-05 18:15:39
github: tgoodlet
- name: Nicolas Avrutin
email: [email protected]
num_commits: 2
first_commit: 2016-06-05 16:22:08
github: nicolasavru
- name: Stephan Fitzpatrick
email: [email protected]
num_commits: 10
first_commit: 2018-08-15 17:33:55
github: knowsuchagency
- name: Kevin Yokley
email: [email protected]
num_commits: 2
first_commit: 2016-05-31 16:39:56
github: kyokley
- name: Rahiel Kasim
email: [email protected]
num_commits: 3
first_commit: 2016-06-05 15:00:56
github: rahiel
- name: Austin Bingham
email: [email protected]
num_commits: 1
first_commit: 2015-03-10 07:31:32
- name: jlunz
email: lunz8748@ak.(none)
num_commits: 1
first_commit: 2016-06-13 15:49:25
- name: David Gros
email: [email protected]
num_commits: 5
first_commit: 2018-07-01 02:51:52
github: DNGros
- name: dragon788
email: [email protected]
num_commits: 1
first_commit: 2016-12-08 23:04:28
github: dragon788
- name: Jonathan Hogg
email: [email protected]
num_commits: 1
first_commit: 2017-01-01 08:28:37
github: jonathanhogg
- name: cryzed
email: [email protected]
num_commits: 15
first_commit: 2016-06-08 18:49:03
github: cryzed
- name: Nathan Goldbaum
email: [email protected]
alternate_emails:
num_commits: 6
first_commit: 2015-05-16 22:01:01
github: ngoldbaum
- name: Andrea D'Amore
email: [email protected]
num_commits: 5
first_commit: 2016-11-26 04:17:05
github: anddam
- name: Raphael Das Gupta
email: [email protected]
alternate_emails:
aliases:
- Raphael Borun Das Gupta
num_commits: 12
first_commit: 2017-01-03 06:56:44
- name: Andrei
email: [email protected]
num_commits: 1
first_commit: 2016-08-24 07:11:42
- name: Daniel Hahler
email: [email protected]
num_commits: 1
first_commit: 2015-07-12 06:44:26
- name: SanketDG
email: [email protected]
num_commits: 3
first_commit: 2016-08-18 12:05:33
github: SanketDG
- name: Paul Barton
email: [email protected]
aliases:
- Pablo Barton
num_commits: 4
first_commit: 2015-03-17 09:46:52
github: SavinaRoja
- name: Mark Harfouche
email: [email protected]
github: hmaarrfk
num_commits: 1
first_commit: 2018-11-02 10:11:42
- name: Carol Willing
email: [email protected]
num_commits: 1
first_commit: 2016-01-18 23:35:33
github: willingc
- name: Kilte Leichnam
email: [email protected]
num_commits: 1
first_commit: 2016-07-19 07:26:36
github: Kilte
- name: Ollie Ford
email: [email protected]
num_commits: 2
first_commit: 2016-10-09 16:06:54
github: OJFord
- name: christopher
email: [email protected]
num_commits: 50
first_commit: 2018-04-24 14:59:31
- name: Raniere Silva
email: [email protected]
num_commits: 1
first_commit: 2015-10-11 23:58:16
github: rgaiacs
- name: Derek Thomas
email: [email protected]
num_commits: 19
first_commit: 2016-10-02 04:18:20
github: derekbrokeit
- name: Leonardo Santagada
email: [email protected]
num_commits: 47
first_commit: 2016-07-07 04:29:41
github: santagada
- name: Mark Bestley
email: [email protected]
num_commits: 2
first_commit: 2018-04-24 17:00:35
github: bestlem
- name: Michał Zając
email: [email protected]
alternate_emails:
aliases:
- zajaczajac
num_commits: 2
first_commit: 2015-05-05 10:03:01
- name: 74th
email: [email protected]
num_commits: 4
first_commit: 2019-01-05 03:58:32
github: 74th
- name: Mickaël Schoentgen
email: [email protected]
num_commits: 4
first_commit: 2018-11-01 11:32:32
github: BoboTiG
- name: Brian Visel
email: [email protected]
num_commits: 13
first_commit: 2016-06-08 19:06:12
- name: Thomas Kluyver
email: [email protected]
num_commits: 1
first_commit: 2016-02-03 09:20:01
github: takluyver
- name: James Elías
email: [email protected]
num_commits: 5
first_commit: 2015-03-10 05:43:20
- name: Emre Ates
email: [email protected]
num_commits: 2
first_commit: 2018-09-17 16:30:34
github: EmreAtes
- name: Donne Martin
email: [email protected]
num_commits: 1
first_commit: 2016-05-14 18:59:14
github: donnemartin
- name: Aaron Griffin
email: [email protected]
num_commits: 37
first_commit: 2015-04-01 12:32:12
- name: Alexey Shrub
email: [email protected]
num_commits: 1
first_commit: 2018-09-08 06:15:08
- name: Jean-Christophe Fillion-Robin
email: [email protected]
num_commits: 1
first_commit: 2016-11-02 00:42:58
github: jcfr
- name: Charlie Arnold
email: [email protected]
num_commits: 1
first_commit: 2015-03-18 13:38:16
- name: Nate Tangsurat
email: [email protected]
num_commits: 1
first_commit: 2018-10-31 23:31:32
github: e4r7hbug
- name: Steven Silvester
email: [email protected]
num_commits: 4
first_commit: 2015-04-01 21:01:35
github: blink1073
- name: David
email: [email protected]
num_commits: 3
first_commit: 2015-10-10 02:08:27
- name: Romain Bignon
email: [email protected]
num_commits: 2
first_commit: 2016-08-26 08:38:50
- name: mel
email: [email protected]
num_commits: 6
first_commit: 2015-06-26 08:51:45
github: melund
- name: Michael Ensslin
email: [email protected]
num_commits: 1
first_commit: 2015-06-13 19:59:24
- name: Robert DeFriesse
email: [email protected]
num_commits: 4
first_commit: 2018-06-25 16:22:52
github: robdefriesse
- name: dbxnr
email: [email protected]
num_commits: 1
first_commit: 2018-10-01 15:39:50
github: dbxnr
- name: sushobhana
email: [email protected]
num_commits: 1
first_commit: 2018-11-13 06:34:47
github: sushobhana
- name: Florian Mounier
email: [email protected]
num_commits: 1
first_commit: 2015-03-09 05:54:59
- name: Danmou
email: [email protected]
num_commits: 3
first_commit: 2017-11-02 18:16:54
github: Danmou
- name: Adam Hartz
email: [email protected]
aliases:
- adam j hartz
alternate_emails:
num_commits: 1490
first_commit: 2015-03-13 20:16:28
github: adqm
- name: Justin Calamari
email: [email protected]
num_commits: 4
first_commit: 2018-07-27 22:32:44
github: justcalamari
- name: Brian Skinn
email: [email protected]
num_commits: 8
first_commit: 2019-01-29 15:21:08
github: bskinn
- name: Glen Zangirolami
email: [email protected]
num_commits: 1
first_commit: 2015-03-17 10:47:13
- name: Niklas Hambüchen
email: [email protected]
num_commits: 3
first_commit: 2017-06-17 21:00:29
github: nh2
- name: Owen Campbell
email: [email protected]
num_commits: 2
first_commit: 2016-09-03 13:54:11
github: meatballs
- name: adamheins
email: [email protected]
num_commits: 1
first_commit: 2015-10-06 21:18:25
github: adamheins
- name: Jared Crawford
email: [email protected]
num_commits: 6
first_commit: 2018-09-29 04:55:30
github: jmcrawford45
- name: Will S
email: [email protected]
num_commits: 9
first_commit: 2016-06-10 06:35:14
github: willsALMANJ
- name: Atsushi Morimoto
email: [email protected]
num_commits: 0
first_commit: 2019-01-23 20:01:34
github: 74th
- name: Thomas Marquart
email: [email protected]
num_commits: 4
first_commit: 2015-03-17 03:34:36
- name: David Dotson
email: [email protected]
num_commits: 20
first_commit: 2018-07-14 12:53:07
github: dotsdl
- name: anula
email: [email protected]
num_commits: 5
first_commit: 2015-05-12 05:52:00
- name: Benjamin Pollack
email: [email protected]
num_commits: 4
first_commit: 2015-11-21 12:55:44
github: bpollack
- name: Joseph Paul
email: [email protected]
num_commits: 1
first_commit: 2018-11-01 06:34:09
github: jsphpl
- name: Sébastien Pierre
email: [email protected]
num_commits: 3
first_commit: 2016-05-17 09:17:32
github: sebastien
- name: Sardorbek Imomaliev
email: [email protected]
num_commits: 4
first_commit: 2017-01-29 23:40:33
- name: Daniel Milde
email: [email protected]
num_commits: 1
first_commit: 2015-11-08 15:15:08
github: Dundee
- name: Katriel Cohn-Gordon
email: [email protected]
num_commits: 1
first_commit: 2015-03-15 18:26:26
- name: Chad Kennedy
email: [email protected]
num_commits: 1
first_commit: 2019-01-14 14:41:48
- name: stonebig
email: [email protected]
num_commits: 1
first_commit: 2015-11-29 04:36:20
github: stonebig
- name: Ronny Pfannschmidt
email: [email protected]
num_commits: 1
first_commit: 2015-08-07 16:39:22
- name: Jakub Nowak
email: [email protected]
num_commits: 4
first_commit: 2018-09-18 15:54:52
github: MrQubo
- name: Jay Tuckey
email: [email protected]
num_commits: 5
first_commit: 2018-10-19 06:30:56
- name: selepo
email: [email protected]
num_commits: 4
first_commit: 2015-11-03 13:42:29
github: selepo
- name: Bob Hyman
email: [email protected]
num_commits: 147
first_commit: 2016-06-26 16:48:47
github: bobhy
alternate_emails:
- name: Fabien Dubosson
email: [email protected]
num_commits: 4
first_commit: 2017-02-21 05:46:12
github: StreakyCobra
- name: Troy de Freitas
email: [email protected]
num_commits: 1
first_commit: 2019-02-05 19:03:06
github: ntdef
- name: virus
email: [email protected]
num_commits: 35
first_commit: 2019-03-06 10:36:26
github: virusbb001
- name: Steven Kryskalla
email: [email protected]
num_commits: 2
first_commit: 2019-03-24 11:00:24
- name: Kale Kundert
email: [email protected]
num_commits: 4
first_commit: 2019-03-16 01:36:28
github: kalekundert
- name: Rodrigo Oliveira
email: [email protected]
num_commits: 1
first_commit: 2019-05-06 14:48:58
github: rodrigogolive
- name: Carmen Bianca Bakker
email: [email protected]
num_commits: 24
first_commit: 2019-04-07 16:33:01
github: carmenbianca
- name: Andrés García García
email: [email protected]
aliases:
- Ad115