forked from django/django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AUTHORS
1104 lines (1096 loc) · 42 KB
/
AUTHORS
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
Django was originally created in late 2003 at World Online, the web division
of the Lawrence Journal-World newspaper in Lawrence, Kansas.
Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS --
people who have submitted patches, reported bugs, added translations, helped
answer newbie questions, and generally made Django that much better:
Aaron Cannon <[email protected]>
Aaron Linville <[email protected]>
Aaron Swartz <http://www.aaronsw.com/>
Aaron T. Myers <[email protected]>
Abeer Upadhyay <[email protected]>
Abhijeet Viswa <[email protected]>
Abhinav Patil <https://github.com/ubadub/>
Abhinav Yadav <[email protected]>
Abhishek Gautam <[email protected]>
Abhyudai <https://github.com/abhiabhi94>
Adam Allred <[email protected]>
Adam Bogdał <[email protected]>
Adam Donaghy
Adam Johnson <https://github.com/adamchainz>
Adam Malinowski <https://adammalinowski.co.uk/>
Adam Vandenberg
Adam Zapletal <https://adamzap.com/>
Ade Lee <[email protected]>
Adiyat Mubarak <[email protected]>
Adnan Umer <[email protected]>
Arslan Noor <[email protected]>
Adrian Holovaty <[email protected]>
Adrian Torres <[email protected]>
Adrien Lemaire <[email protected]>
Afonso Fernández Nogueira <[email protected]>
AgarFu <[email protected]>
Ahmad Alhashemi <[email protected]>
Ahmad Al-Ibrahim
Ahmed Eltawela <https://github.com/ahmedabt>
ajs <[email protected]>
Akash Agrawal <[email protected]>
Akash Kumar Sen <[email protected]>
Akis Kesoglou <[email protected]>
Aksel Ethem <[email protected]>
Akshesh Doshi <[email protected]>
Alasdair Nicol <https://al.sdair.co.uk/>
Albert Defler <[email protected]>
Albert Wang <https://github.com/albertyw/>
Alcides Fonseca
Aldian Fazrihady <[email protected]>
Alejandro García Ruiz de Oteiza <https://github.com/AlexOteiza>
Aleksander Milinkevich <[email protected]>
Aleksandra Sendecka <[email protected]>
Aleksi Häkli <[email protected]>
Alex Dutton <[email protected]>
Alexander Lazarević <[email protected]>
Alexander Myodov <[email protected]>
Alexandr Tatarinov <[email protected]>
Alex Aktsipetrov <[email protected]>
Alex Becker <https://alexcbecker.net/>
Alex Couper <http://alexcouper.com/>
Alex Dedul
Alex Gaynor <[email protected]>
Alex Hill <[email protected]>
Alex Ogier <[email protected]>
Alex Robbins <[email protected]>
Alexey Boriskin <[email protected]>
Alexey Tsivunin <[email protected]>
Ali Vakilzade <[email protected]>
Aljaž Košir <[email protected]>
Aljosa Mohorovic <[email protected]>
Alokik Vijay <[email protected]>
Amir Karimi <[email protected]>
Amit Chakradeo <https://amit.chakradeo.net/>
Amit Ramon <[email protected]>
Amit Upadhyay <http://www.amitu.com/blog/>
A. Murat Eren <[email protected]>
Ana Belen Sarabia <[email protected]>
Ana Krivokapic <https://github.com/infraredgirl>
Andi Albrecht <[email protected]>
André Ericson <[email protected]>
Andrei Kulakov <[email protected]>
Andreas
Andreas Mock <[email protected]>
Andreas Pelme <[email protected]>
Andrés Torres Marroquín <[email protected]>
Andrew Brehaut <https://brehaut.net/blog>
Andrew Clark <[email protected]>
Andrew Durdin <[email protected]>
Andrew Godwin <[email protected]>
Andrew Pinkham <http://AndrewsForge.com>
Andrews Medina <[email protected]>
Andrew Northall <[email protected]>
Andriy Sokolovskiy <[email protected]>
Andy Chosak <[email protected]>
Andy Dustman <[email protected]>
Andy Gayton <[email protected]>
Anssi Kääriäinen <[email protected]>
Anthony Briggs <[email protected]>
Anthony Wright <[email protected]>
Antoine Chéneau <[email protected]>
Anton Samarchyan <[email protected]>
Antoni Aloy
Antonio Cavedoni <http://cavedoni.com/>
Antonis Christofides <[email protected]>
Antti Haapala <[email protected]>
Antti Kaihola <http://djangopeople.net/akaihola/>
Anubhav Joshi <[email protected]>
Anvesh Mishra <[email protected]>
Anže Pečar <[email protected]>
Aram Dulyan
arien <[email protected]>
Armin Ronacher
Aron Podrigal <[email protected]>
Arsalan Ghassemi <[email protected]>
Artem Gnilov <[email protected]>
Arthur <[email protected]>
Arthur Jovart <[email protected]>
Arthur Koziel <http://arthurkoziel.com>
Arthur Moreira <[email protected]>
Arthur Rio <[email protected]>
Arvis Bickovskis <[email protected]>
Arya Khaligh <[email protected]>
Aryeh Leib Taurog <http://www.aryehleib.com/>
A S Alam <[email protected]>
Asif Saif Uddin <[email protected]>
atlithorn <[email protected]>
Audrey Roy <http://audreymroy.com/>
Axel Haustant <[email protected]>
Aymeric Augustin <[email protected]>
Bahadır Kandemir <[email protected]>
Baishampayan Ghose
Baptiste Mispelon <[email protected]>
Barry Pederson <[email protected]>
Bartolome Sanchez Salado <[email protected]>
Barton Ip <[email protected]>
Bartosz Grabski <[email protected]>
Bashar Al-Abdulhadi
Bastian Kleineidam <[email protected]>
Batiste Bieler <[email protected]>
Batman
Batuhan Taskaya <[email protected]>
Baurzhan Ismagulov <[email protected]>
Ben Dean Kawamura <[email protected]>
Ben Firshman <[email protected]>
Ben Godfrey <http://aftnn.org>
Benjamin Wohlwend <[email protected]>
Ben Khoo <[email protected]>
Ben Lomax <[email protected]>
Ben Slavin <[email protected]>
Ben Sturmfels <[email protected]>
Berker Peksag <[email protected]>
Bernd Schlapsi
Bernhard Essl <[email protected]>
berto
Bhuvnesh Sharma <[email protected]>
Bill Fenner <[email protected]>
Bjørn Stabell <[email protected]>
Bo Marchman <[email protected]>
Bogdan Mateescu
Bojan Mihelac <[email protected]>
Bouke Haarsma <[email protected]>
Božidar Benko <[email protected]>
Brad Melin <[email protected]>
Brandon Chinn <https://brandonchinn178.github.io/>
Brant Harris
Brendan Hayward <[email protected]>
Brendan Quinn <[email protected]>
Brenton Simpson <http://theillustratedlife.com>
Brett Cannon <[email protected]>
Brett Hoerner <[email protected]>
Brian Beck <http://blog.brianbeck.com/>
Brian Fabian Crain <http://www.bfc.do/>
Brian Harring <[email protected]>
Brian Helba <[email protected]>
Brian Ray <http://brianray.chipy.org/>
Brian Rosner <[email protected]>
Bruce Kroeze <https://coderseye.com/>
Bruno Alla <[email protected]>
Bruno Renié <[email protected]>
Bryan Chow <bryan at verdjn dot com>
Bryan Veloso <[email protected]>
bthomas
C8E
Caio Ariede <[email protected]>
Calvin Spealman <[email protected]>
Cameron Curry
Cameron Knight (ckknight)
Can Burak Çilingir <[email protected]>
Can Sarıgöl <[email protected]>
Carl Meyer <[email protected]>
Carles Pina i Estany <[email protected]>
Carlos Eduardo de Paula <[email protected]>
Carlos Matías de la Torre <[email protected]>
Carlton Gibson <[email protected]>
Chad Whitman <[email protected]>
ChaosKCW
Charlie Leifer <[email protected]>
Chason Chaffin <[email protected]>
Cheng Zhang
Chinmoy Chakraborty <[email protected]>
Chris Adams
Chris Beaven <[email protected]>
Chris Bennett <[email protected]>
Chris Cahoon <[email protected]>
Chris Chamberlin <[email protected]>
Chris Jerdonek
Chris Jones <[email protected]>
Chris Lamb <[email protected]>
Chris Streeter <[email protected]>
Christian Barcenas <[email protected]>
Christian Metts
Christian Oudard <[email protected]>
Christian Tanzer <[email protected]>
Christoffer Sjöbergsson
Christophe Pettus <[email protected]>
Christopher Adams <http://christopheradams.info>
Christopher Babiak <[email protected]>
Christopher Lenz <https://www.cmlenz.net/>
Christoph Mędrela <[email protected]>
Chris Wagner <[email protected]>
Chris Wesseling <[email protected]>
Chris Wilson <[email protected]>
Ciaran McCormick <[email protected]>
Claude Paroz <[email protected]>
Clint Ecker
Colin Wood <[email protected]>
Collin Anderson <[email protected]>
Collin Grady <[email protected]>
Colton Hicks <[email protected]>
Craig Blaszczyk <[email protected]>
Curtis Maloney (FunkyBob) <[email protected]>
Dagur Páll Ammendrup <[email protected]>
Dane Springmeyer
Dan Fairs <[email protected]>
Daniel Alves Barbosa de Oliveira Vaz <[email protected]>
Daniel Duan <[email protected]>
Daniele Procida <[email protected]>
Daniel Fairhead <[email protected]>
Daniel Greenfeld
dAniel hAhler
Daniel Jilg <[email protected]>
Daniel Lindsley <[email protected]>
Daniel Poelzleithner <https://poelzi.org/>
Daniel Pyrathon <[email protected]>
Daniel Roseman <http://roseman.org.uk/>
Daniel Tao <https://philosopherdeveloper.com/>
Daniel Wiesmann <[email protected]>
Danilo Bargen
Dan Johnson <[email protected]>
Dan Palmer <[email protected]>
Dan Poirier <[email protected]>
Dan Stephenson <http://dan.io/>
Dan Watson <http://danwatson.net/>
David Ascher <https://ascher.ca/>
David Avsajanishvili <[email protected]>
David Blewett <[email protected]>
David Brenneman <http://davidbrenneman.com>
David Cramer <[email protected]>
David Danier <[email protected]>
David Eklund
David Foster <[email protected]>
David Gouldin <[email protected]>
David Krauth
David Larlet <https://larlet.fr/david/>
David Reynolds <[email protected]>
David Sanders <[email protected]>
David Schein
David Tulig <[email protected]>
David Winterbottom <[email protected]>
David Wobrock <[email protected]>
Davide Ceretti <[email protected]>
Deep L. Sukhwani <[email protected]>
Deepak Thukral <[email protected]>
Denis Kuzmichyov <[email protected]>
Dennis Schwertel <[email protected]>
Derek Willis <http://blog.thescoop.org/>
Deric Crago <[email protected]>
Deryck Hodge <http://www.devurandom.org/>
Dimitris Glezos <[email protected]>
Dirk Datzert <[email protected]>
Dirk Eschler <[email protected]>
Dmitri Fedortchenko <[email protected]>
Dmitry Jemerov <[email protected]>
Dolan Antenucci <[email protected]>
Donald Harvey <[email protected]>
Donald Stufft <[email protected]>
Don Spaulding <[email protected]>
Doug Beck <[email protected]>
Doug Napoleone <[email protected]>
dready <[email protected]>
Durval Carvalho de Souza <[email protected]>
Dustyn Gibson <[email protected]>
Ed Morley <https://github.com/edmorley>
Egidijus Macijauskas <[email protected]>
elky <http://elky.me/>
Emmanuelle Delescolle <https://github.com/nanuxbe>
Emil Stenström <[email protected]>
enlight
Enrico <[email protected]>
Eric Boersma <[email protected]>
Eric Brandwein <[email protected]>
Eric Floehr <[email protected]>
Eric Florenzano <[email protected]>
Eric Holscher <http://ericholscher.com>
Eric Moritz <http://eric.themoritzfamily.com/>
Eric Palakovich Carr <[email protected]>
Erik Karulf <[email protected]>
Erik Romijn <[email protected]>
Erin Kelly <[email protected]>
Erwin Junge <[email protected]>
Esdras Beleza <[email protected]>
Espen Grindhaug <http://grindhaug.org/>
Étienne Beaulé <[email protected]>
Eugene Lazutkin <http://lazutkin.com/blog/>
Evan Grim <https://github.com/egrim>
Fabian Büchler <[email protected]>
Fabian Braun <[email protected]>
Fabrice Aneche <[email protected]>
Faishal Manzar <https://github.com/faishal882>
Farhaan Bukhsh <[email protected]>
fdr <[email protected]>
Federico Capoano <[email protected]>
Felipe Lee <[email protected]>
Filip Noetzel <http://filip.noetzel.co.uk/>
Filip Wasilewski <[email protected]>
Finn Gruwier Larsen <[email protected]>
Fiza Ashraf <[email protected]>
Flávio Juvenal da Silva Junior <[email protected]>
Florian Apolloner <[email protected]>
Florian Demmer <[email protected]>
Florian Moussous <[email protected]>
fnaimi66 <https://github.com/fnaimi66>
Fran Hrženjak <[email protected]>
Francesco Panico <[email protected]>
Francisco Albarran Cristobal <[email protected]>
Francisco Couzo <[email protected]>
François Freitag <[email protected]>
Frank Tegtmeyer <[email protected]>
Frank Wierzbicki
Frank Wiles <[email protected]>
František Malina <https://unilexicon.com/fm/>
Fraser Nevett <[email protected]>
Gabriel Grant <[email protected]>
Gabriel Hurley <[email protected]>
Garry Lawrence
Garry Polley <[email protected]>
Garth Kidd <http://www.deadlybloodyserious.com/>
Gary Wilson <[email protected]>
Gasper Koren
Gasper Zejn <[email protected]>
Gav O'Connor <https://github.com/Scalamoosh>
Gavin Wahl <[email protected]>
Ge Hanbin <[email protected]>
Geert Vanderkelen
George Karpenkov <[email protected]>
George Song <[email protected]>
George Vilches <[email protected]>
George Y. Kussumoto <[email protected]>
Georg "Hugo" Bauer <[email protected]>
Georgi Stanojevski <[email protected]>
Gerardo Orozco <[email protected]>
Gil Gonçalves <[email protected]>
Girish Kumar <[email protected]>
Girish Sontakke <[email protected]>
Gisle Aas <[email protected]>
Glenn Maynard <[email protected]>
GomoX <[email protected]>
Gonzalo Saavedra <[email protected]>
Gopal Narayanan <[email protected]>
Graham Carlyle <[email protected]>
Grant Jenks <[email protected]>
Greg Chapple <[email protected]>
Greg Twohig
Gregor Allensworth <[email protected]>
Gregor Müllegger <[email protected]>
Grigory Fateyev <[email protected]>
Grzegorz Ślusarek <[email protected]>
Guilherme Mesquita Gondim <[email protected]>
Guillaume Pannatier <[email protected]>
Gustavo Picon
hambaloney
Hang Park <[email protected]>
Hannes Ljungberg <[email protected]>
Hannes Struß <[email protected]>
Hao Dong <https://github.com/RelaxedDong>
Harm Geerts <[email protected]>
Hasan Ramezani <[email protected]>
Hawkeye
Helen Sherwood-Taylor <[email protected]>
Henrique Romano <[email protected]>
Henry Dang <[email protected]>
Hidde Bultsma
Himanshu Chauhan <[email protected]>
Hiroki Kiyohara <[email protected]>
Honza Král <[email protected]>
Horst Gutmann <[email protected]>
Hugo Osvaldo Barrera <[email protected]>
HyukJin Jang <[email protected]>
Hyun Mi Ae
Iacopo Spalletti <[email protected]>
Ian A Wilson <http://ianawilson.com>
Ian Clelland <[email protected]>
Ian Holsman <http://feh.holsman.net/>
Ian Lee <[email protected]>
Ibon <[email protected]>
Idan Gazit <[email protected]>
Idan Melamed
Ifedapo Olarewaju <[email protected]>
Igor Kolar <[email protected]>
Illia Volochii <[email protected]>
Ilya Bass
Ilya Semenov <[email protected]>
Ingo Klöcker <[email protected]>
I.S. van Oostveen <[email protected]>
Iuri de Silvio <https://github.com/iurisilvio>
Ivan Sagalaev (Maniac) <http://www.softwaremaniacs.org/>
Jaap Roes <[email protected]>
Jack Moffitt <https://metajack.im/>
Jacob Burch <[email protected]>
Jacob Green
Jacob Kaplan-Moss <[email protected]>
Jacob Rief <[email protected]>
Jacob Walls <http://www.jacobtylerwalls.com/>
Jakub Bagiński <https://github.com/Jacob1507>
Jakub Paczkowski <[email protected]>
Jakub Wilk <[email protected]>
Jakub Wiśniowski <[email protected]>
James Aylett
James Bennett <[email protected]>
James Gillard <[email protected]>
James Murty
James Tauber <[email protected]>
James Timmins <[email protected]>
James Turk <[email protected]>
James Wheare <[email protected]>
Jamie Matthews <[email protected]>
Jannis Leidel <[email protected]>
Janos Guljas
Jan Pazdziora
Jan Rademaker
Jarek Głowacki <[email protected]>
Jarek Zgoda <[email protected]>
Jarosław Wygoda <[email protected]>
Jason Davies (Esaj) <https://www.jasondavies.com/>
Jason Huggins <http://www.jrandolph.com/blog/>
Jason McBrayer <http://www.carcosa.net/jason/>
Jason Yan <[email protected]>
Javier Mansilla <[email protected]>
Jay Parlar <[email protected]>
Jay Welborn <[email protected]>
Jay Wineinger <[email protected]>
J. Clifford Dyer <[email protected]>
jdetaeye
Jeff Anderson <[email protected]>
Jeff Balogh <[email protected]>
Jeff Hui <[email protected]>
Jeffrey Gelens <[email protected]>
Jeff Triplett <[email protected]>
Jeffrey Yancey <[email protected]>
Jens Diemer <[email protected]>
Jens Page
Jensen Cochran <[email protected]>
Jeong-Min Lee <[email protected]>
Jérémie Blaser <[email protected]>
Jeremy Bowman <https://github.com/jmbowman>
Jeremy Carbaugh <[email protected]>
Jeremy Dunck <[email protected]>
Jeremy Lainé <[email protected]>
Jerin Peter George <[email protected]>
Jesse Young <[email protected]>
Jezeniel Zapanta <[email protected]>
jhenry <[email protected]>
Jim Dalton <[email protected]>
Jimmy Song <[email protected]>
Jiri Barton
Joachim Jablon <[email protected]>
Joao Oliveira <[email protected]>
Joao Pedro Silva <[email protected]>
Joe Heck <http://www.rhonabwy.com/wp/>
Joe Jackson <[email protected]>
Joel Bohman <[email protected]>
Joel Heenan <[email protected]>
Joel Watts <[email protected]>
Joe Topjian <http://joe.terrarum.net/geek/code/python/django/>
Johan C. Stöver <[email protected]>
Johann Queuniet <[email protected]>
Johannes Westphal <[email protected]>
John D'Agostino <[email protected]>
John D'Ambrosio <[email protected]>
John Huddleston <[email protected]>
John Moses <[email protected]>
John Paulett <[email protected]>
John Shaffer <[email protected]>
Jökull Sólberg Auðunsson <[email protected]>
Jon Dufresne <[email protected]>
Jon Janzen <[email protected]>
Jonas Haag <[email protected]>
Jonas Lundberg <[email protected]>
Jonathan Davis <[email protected]>
Jonatas C. D. <[email protected]>
Jonathan Buchanan <[email protected]>
Jonathan Daugherty (cygnus) <http://www.cprogrammer.org/>
Jonathan Feignberg <[email protected]>
Jonathan Slenders
Jonny Park <[email protected]>
Jordan Bae <[email protected]>
Jordan Dimov <[email protected]>
Jordi J. Tablada <[email protected]>
Jorge Bastida <[email protected]>
Jorge Gajon <[email protected]>
José Tomás Tocino García <[email protected]>
Josef Rousek <[email protected]>
Joseph Kocherhans <[email protected]>
Josh Smeaton <[email protected]>
Joshua Cannon <[email protected]>
Joshua Ginsberg <[email protected]>
Jozko Skrablin <[email protected]>
J. Pablo Fernandez <[email protected]>
Juan Catalano <[email protected]>
Juan Manuel Caicedo <[email protected]>
Juan Pedro Fisanotti <[email protected]>
Julia Elman
Julia Matsieva <[email protected]>
Julian Bez
Julie Rymer <[email protected]>
Julien Phalip <[email protected]>
Junyoung Choi <[email protected]>
Jure Cuhalev <[email protected]>
Justin Bronn <[email protected]>
Justine Tunney <[email protected]>
Justin Lilly <[email protected]>
Justin Michalicek <[email protected]>
Justin Myles Holmes <[email protected]>
Jyrki Pulliainen <[email protected]>
Kacper Wolkiewicz <[email protected]>
Kadesarin Sanjek
Kapil Bansal <[email protected]>
Karderio <[email protected]>
Karen Tracey <[email protected]>
Karol Sikora <[email protected]>
Kasun Herath <[email protected]>
Katherine “Kati” Michel <[email protected]>
Kathryn Killebrew <[email protected]>
Katie Miller <[email protected]>
Keith Bussell <[email protected]>
Kenneth Love <[email protected]>
Kent Hauser <[email protected]>
Keryn Knight <[email protected]>
Kevin Grinberg <[email protected]>
Kevin Kubasik <[email protected]>
Kevin McConnell <[email protected]>
Kieran Holland <http://www.kieranholland.com>
kilian <[email protected]>
Kim Joon Hwan 김준환 <[email protected]>
Kim Soung Ryoul 김성렬 <[email protected]>
Klaas van Schelven <[email protected]>
knox <[email protected]>
Kowito Charoenratchatabhan <[email protected]>
Krišjānis Vaiders <[email protected]>
Krzysztof Jagiello <[email protected]>
Krzysztof Jurewicz <[email protected]>
Krzysztof Kulewski <[email protected]>
Lakin Wecker <[email protected]>
Lars Yencken <[email protected]>
Lau Bech Lauritzen
Laurent Luce <https://www.laurentluce.com/>
Laurent Rahuel <[email protected]>
Leah Culver <[email protected]>
Leandra Finger <[email protected]>
Lee Reilly <[email protected]>
Lee Sanghyuck <[email protected]>
Lemuel Sta Ana <https://github.com/lstaana>
Leo "hylje" Honkanen <[email protected]>
Leo Shklovskii
Leo Soto <[email protected]>
Lex Berezhny <[email protected]>
Liang Feng <[email protected]>
Lily Foote
limodou
Lincoln Smith <[email protected]>
Liu Yijie <[email protected]>
Loek van Gent <[email protected]>
Loïc Bistuer <[email protected]>
Lowe Thiderman <[email protected]>
Luan Pablo <[email protected]>
Lucas Connors <https://www.revolutiontech.ca/>
Luciano Ramalho
Lucidiot <[email protected]>
Ludvig Ericson <[email protected]>
Luis C. Berrocal <[email protected]>
Łukasz Langa <[email protected]>
Łukasz Rekucki <[email protected]>
Luke Granger-Brown <[email protected]>
Luke Plant <[email protected]>
Maciej Fijalkowski
Maciej Wiśniowski <[email protected]>
Mads Jensen <https://github.com/atombrella>
Makoto Tsuyuki <[email protected]>
Malcolm Tredinnick
Manav Agarwal <[email protected]>
Manuel Saelices <[email protected]>
Manuzhai
Marc Aymerich Gubern
Marc Egli <[email protected]>
Marcel Telka <[email protected]>
Marcelo Galigniana <[email protected]>
Marc Fargas <[email protected]>
Marc Garcia <[email protected]>
Marcin Wróbel
Marc Remolt <[email protected]>
Marc Seguí Coll <[email protected]>
Marc Tamlyn <[email protected]>
Marc-Aurèle Brothier <[email protected]>
Marian Andre <[email protected]>
Marijke Luttekes <[email protected]>
Marijn Vriens <[email protected]>
Mario Gonzalez <[email protected]>
Mariusz Felisiak <[email protected]>
Mark Biggers <[email protected]>
Mark Evans <[email protected]>
Mark Gensler <[email protected]>
Mark Lavin <[email protected]>
Mark Sandstrom <[email protected]>
Markus Amalthea Magnuson <[email protected]>
Markus Holtermann <https://markusholtermann.eu>
Marten Kenbeek <[email protected]>
Marti Raudsepp <[email protected]>
Martin Green
Martin Kosír <[email protected]>
Martin Mahner <https://www.mahner.org/>
Martin Maney <http://www.chipy.org/Martin_Maney>
Martin von Gagern <[email protected]>
Mart Sõmermaa <https://github.com/mrts>
Marty Alchin <[email protected]>
Masashi Shibata <[email protected]>
Massimiliano Ravelli <[email protected]>
Massimo Scamarcia <[email protected]>
Mathieu Agopian <[email protected]>
Matías Bordese
Matt Boersma <[email protected]>
Matt Brewer <[email protected]>
Matt Croydon <http://www.postneo.com/>
Matt Deacalion Stevens <[email protected]>
Matt Dennenbaum
Matthew Flanagan <https://wadofstuff.blogspot.com/>
Matthew Schinckel <[email protected]>
Matthew Somerville <[email protected]>
Matthew Tretter <[email protected]>
Matthew Wilkes <[email protected]>
Matthias Kestenholz <[email protected]>
Matthias Pronk <[email protected]>
Matt Hoskins <[email protected]>
Matt McClanahan <https://mmcc.cx/>
Matt Riggott
Matt Robenolt <[email protected]>
Mattia Larentis <[email protected]>
Mattia Procopio <[email protected]>
Mattias Loverot <[email protected]>
Max Burstein <http://maxburstein.com>
Max Derkachev <[email protected]>
Max Smolens <[email protected]>
Maxime Lorant <[email protected]>
Maxime Toussaint <[email protected]>
Maxime Turcotte <[email protected]>
Maximilian Merz <[email protected]>
Maximillian Dornseif <[email protected]>
Meghana Bhange <[email protected]>
Meir Kriheli <http://mksoft.co.il/>
Michael S. Brown <[email protected]>
Michael Hall <[email protected]>
Michael Josephson <http://www.sdjournal.com/>
Michael Lissner <[email protected]>
Michael Manfre <[email protected]>
Michael Placentra II <[email protected]>
Michael Radziej <[email protected]>
Michael Sanders <[email protected]>
Michael Schwarz <[email protected]>
Michael Sinov <[email protected]>
Michael Thornhill <[email protected]>
Michal Chruszcz <[email protected]>
Michał Modzelewski <[email protected]>
Mihai Damian <[email protected]>
Mihai Preda <[email protected]>
Mikaël Barbero <mikael.barbero nospam at nospam free.fr>
Mike Axiak <[email protected]>
Mike Grouchy <https://mikegrouchy.com/>
Mike Malone <[email protected]>
Mike Richardson
Mike Wiacek <[email protected]>
Mikhail Korobov <[email protected]>
Mikko Hellsing <[email protected]>
Mikołaj Siedlarek <[email protected]>
milkomeda
Milton Waddams
mmarshall
Moayad Mardini <[email protected]>
Morgan Aubert <[email protected]>
Moritz Sichert <[email protected]>
Morten Bagai <[email protected]>
msaelices <[email protected]>
msundstr
Mushtaq Ali <[email protected]>
Mykola Zamkovoi <[email protected]>
Nadège Michel <[email protected]>
Nagy Károly <[email protected]>
Nasimul Haque <[email protected]>
Nasir Hussain <[email protected]>
Natalia Bidart <[email protected]>
Nate Bragg <[email protected]>
Nathan Gaberel <[email protected]>
Neal Norwitz <[email protected]>
Nebojša Dorđević
Ned Batchelder <https://nedbatchelder.com/>
Nena Kojadin <[email protected]>
Niall Dalton <[email protected]>
Niall Kelly <[email protected]>
Nick Efford <[email protected]>
Nick Lane <[email protected]>
Nick Pope <[email protected]>
Nick Presta <[email protected]>
Nick Sandford <[email protected]>
Nick Sarbicki <[email protected]>
Niclas Olofsson <[email protected]>
Nicola Larosa <[email protected]>
Nicolas Lara <[email protected]>
Nicolas Noé <[email protected]>
Nikita Marchant <[email protected]>
Nikita Sobolev <[email protected]>
Nina Menezes <https://github.com/nmenezes0>
Niran Babalola <[email protected]>
Nis Jørgensen <[email protected]>
Nowell Strite <https://nowell.strite.org/>
Nuno Mariz <[email protected]>
Octavio Peri <[email protected]>
oggie rob <[email protected]>
oggy <[email protected]>
Oguzhan Akan <[email protected]>
Oliver Beattie <[email protected]>
Oliver Rutherfurd <http://rutherfurd.net/>
Olivier Le Thanh Duong <[email protected]>
Olivier Sels <[email protected]>
Olivier Tabone <[email protected]>
Orestis Markou <[email protected]>
Orne Brocaar <http://brocaar.com/>
Oscar Ramirez <[email protected]>
Ossama M. Khayat <[email protected]>
Owen Griffiths
Ömer Faruk Abacı <https://github.com/omerfarukabaci/>
Pablo Martín <[email protected]>
Panos Laganakos <[email protected]>
Paolo Melchiorre <[email protected]>
Pascal Hartig <[email protected]>
Pascal Varet
Patrik Sletmo <[email protected]>
Paul Bissex <http://e-scribe.com/>
Paul Collier <[email protected]>
Paul Collins <[email protected]>
Paul Donohue <[email protected]>
Paul Lanier <[email protected]>
Paul McLanahan <[email protected]>
Paul McMillan <[email protected]>
Paulo Poiati <[email protected]>
Paulo Scardine <[email protected]>
Paul Smith <[email protected]>
Pavel Kulikov <[email protected]>
pavithran s <[email protected]>
Pavlo Kapyshin <[email protected]>
Petar Marić <http://www.petarmaric.com/>
Pete Crosier <[email protected]>
Peter Sheats <[email protected]>
Peter van Kampen
Peter Zsoldos <http://zsoldosp.eu>
Pete Shinners <[email protected]>
Petr Marhoun <[email protected]>
Petter Strandmark
phaedo <http://phaedo.cx/>
Philip Lindborg <[email protected]>
Philippe Raoult <[email protected]>
Piotr Jakimiak <[email protected]>
Piotr Lewandowski <[email protected]>
plisk
Prashant Pandey <https://prashantpandey9.in>
Preston Holmes <[email protected]>
Preston Timmons <[email protected]>
Priyank Panchal <[email protected]>
Priyansh Saxena <[email protected]>
Przemysław Buczkowski <[email protected]>
Przemysław Suliga <http://suligap.net>
Qi Zhao <[email protected]>
Rachel Tobin <[email protected]>
Rachel Willmer <http://www.willmer.com/kb/>
Radek Švarz <https://www.svarz.cz/translate/>
Rafael Giebisch <[email protected]>
Raffaele Salmaso <[email protected]>
Rahmat Faisal <[email protected]>
Rajesh Dhawan <[email protected]>
Ramez Ashraf <[email protected]>
Ramil Yanbulatov <[email protected]>
Ramin Farajpour Cami <[email protected]>
Ramiro Morales <[email protected]>
Ramon Saraiva <[email protected]>
Ram Rachum <[email protected]>
Randy Barlow <[email protected]>
Raphaël Barrois <[email protected]>
Raphael Michel <[email protected]>
Raúl Cumplido <[email protected]>
Rebecca Smith <[email protected]>
Remco Wendt <[email protected]>
Renaud Parent <[email protected]>
Renbi Yu <[email protected]>
Reza Mohammadi <[email protected]>
Ricardo Javier Cárdenes Medina <[email protected]>
Riccardo Di Virgilio
Riccardo Magliocchetti <[email protected]>
Richard Davies <[email protected]>
Richard House <[email protected]>
Rick Wagner <[email protected]>
Rigel Di Scala <[email protected]>
Robert Coup
Robert Myers <[email protected]>
Roberto Aguilar <[email protected]>
Robert Rock Howard <http://djangomojo.com/>
Robert Wittams
Rob Golding-Day <[email protected]>
Rob Hudson <https://rob.cogit8.org/>
Rob Nguyen <[email protected]>
Robin Munn <http://www.geekforgod.com/>
Rodrigo Pinheiro Marques de Araújo <[email protected]>
Rohith P R <https://rohithpr.com>
Romain Garrigues <[email protected]>
Ronnie van den Crommenacker
Ronny Haryanto <https://ronny.haryan.to/>
Ross Poulton <[email protected]>
Roxane Bellot <https://github.com/roxanebellot/>
Rozza <[email protected]>
Rudolph Froger <[email protected]>
Rudy Mutter
Rune Rønde Laursen <[email protected]>
Russell Cloran <[email protected]>
Russell Keith-Magee <[email protected]>
Russ Webber
Ryan Hall <[email protected]>
Ryan Heard <[email protected]>
ryankanno
Ryan Kelly <[email protected]>
Ryan Niemeyer <https://profiles.google.com/ryan.niemeyer/about>
Ryan Petrello <[email protected]>
Ryan Rubin <[email protected]>
Ryno Mathee <[email protected]>
Sachin Jat <[email protected]>
Sage M. Abdullah <https://github.com/laymonage>
Sam Newman <http://www.magpiebrain.com/>
Sander Dijkhuis <[email protected]>
Sanket Saurav <[email protected]>
Sanyam Khurana <[email protected]>
Sarah Abderemane <https://github.com/sabderemane>
Sarah Boyce <https://github.com/sarahboyce>
Sarthak Mehrish <[email protected]>
Scot Hacker <[email protected]>
Scott Barr <[email protected]>
Scott Cranfill <[email protected]>
Scott Fitsimones <[email protected]>
Scott Pashley <[email protected]>
Sean Brant
Sebastian Hillig <[email protected]>
Sebastian Spiegel <https://www.tivix.com/>
Segyo Myung <[email protected]>
Selwin Ong <[email protected]>
Sengtha Chay <[email protected]>
Senko Rašić <[email protected]>
Sergei Maertens <[email protected]>
Sergey Fedoseev <[email protected]>
Sergey Kolosov <[email protected]>
Seth Hill <[email protected]>
Shafiya Adzhani <[email protected]>
Shai Berger <[email protected]>
Shannon -jj Behrens <https://www.jjinux.com/>
Shawn Milochik <[email protected]>
Shreya Bamne <[email protected]>
Silvan Spross <[email protected]>
Simeon Visser <http://simeonvisser.com>
Simon Blanchard
Simon Charette <[email protected]>
Simon Greenhill <[email protected]>
Simon Litchfield <[email protected]>
Simon Meers <[email protected]>
Simon Williams
Simon Willison <[email protected]>
Sjoerd Job Postmus
Slawek Mikula <slawek dot mikula at gmail dot com>
sloonz <[email protected]>
sopel
Sreehari K V <[email protected]>
Sridhar Marella <[email protected]>
Srinivas Reddy Thatiparthy <[email protected]>
Stanislas Guerra <[email protected]>
Stanislaus Madueke
Stanislav Karpov <[email protected]>
starrynight <[email protected]>
Stefan R. Filipek
Stefane Fermgier <[email protected]>
Stefano Rivera <[email protected]>
Stéphane Raimbault <[email protected]>
Stephan Jaekel <[email protected]>
Stephen Burrows <[email protected]>
Steven L. Smith (fvox13) <[email protected]>
Steven Noorbergen (Xaroth) <[email protected]>
Stuart Langridge <https://www.kryogenix.org/>
Subhav Gautam <[email protected]>
Sujay S Kumar <[email protected]>
Sune Kirkeby <https://ibofobi.dk/>
Sung-Jin Hong <[email protected]>
SuperJared
Susan Tan <[email protected]>
Sutrisno Efendi <[email protected]>
Swaroop C H <http://www.swaroopch.info>
Szilveszter Farkas <[email protected]>
Taavi Teska <[email protected]>
Tai Lee <[email protected]>
Takashi Matsuo <[email protected]>
Tareque Hossain <http://www.codexn.com>
Taylor Mitchell <[email protected]>
tell-k <[email protected]>
Terry Huang <[email protected]>
thebjorn <[email protected]>
Thejaswi Puthraya <[email protected]>
Thijs van Dien <[email protected]>
Thom Wiggers
Thomas Chaumeny <[email protected]>
Thomas Güttler <[email protected]>
Thomas Kerpe <[email protected]>
Thomas Sorrel
Thomas Steinacher <http://www.eggdrop.ch/>
Thomas Stromberg <[email protected]>
Thomas Tanner <[email protected]>
Ties Jan Hefting <[email protected]>
Tim Allen <[email protected]>
Tim Givois <[email protected]>
Tim Graham <[email protected]>
Tim Heap <[email protected]>
Tim McCurrach <[email protected]>
Tim Saylor <[email protected]>
Toan Vuong <[email protected]>
Tobias Kunze <[email protected]>