File: CREDITS

package info (click to toggle)
parrot 6.6.0-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 25,164 kB
  • ctags: 16,050
  • sloc: ansic: 110,715; perl: 94,382; yacc: 1,911; lex: 1,529; lisp: 1,163; cpp: 782; python: 646; ruby: 335; sh: 140; makefile: 129; cs: 49; asm: 30
file content (1240 lines) | stat: -rw-r--r-- 22,813 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
    Following in the steps of other open source projects that
    eventually take over the world, here is the partial list
    of people who have contributed to Parrot and its supporting
    works.  It is sorted by name and formatted to allow easy
    grepping and beautification by scripts.
    The fields are: name (N), email (E), web-address (W),
    description (D), main username (U), alias usernames (A)
    and geographic location (S).

        Thanks,

        The Parrot Team
        PS: Yes, this looks remarkably like the Linux CREDITS format
        PPS: This file is encoded in UTF-8
        PPPS: To turn this file into a author map for git-svn, see tools/dev/mk_author_map.pl

----------
N: Aaron Faanes
E: dafrito@gmail.com
W: http://www.dafrito.com
D: make_html_docs revisions
U: dafrito
S: Richardson, TX

N: Aaron Sherman
U: ajs
E: ajs@ajs.com
D: rand and srand ops

N: Abhijit A. Mahabal
D: P6C update

N: Adam Thomason
D: Building on various platforms.

N: Ahmed Zawawi
D: Rakudo builtins

N: Akash Manohar
U: akashmanohar
A: SingAlong
E: akash@akash.im
D: Fixed PCT tutorial Episode-3
S: Bangalore, India
W: http://akash.im

N: Alberto Manuel Brandao Simoes
U: ambs
E: ambs@cpan.org
D: Named arguments support and recovery support on PIR parser
S: Braga, Portugal
W: http://alfarrabio.di.uminho.pt/~albie/

N: Aldo Calpini
D: Debugging tutorial
D: Porting to PDA

N: Alek Storm
E: alek.storm@gmail.com
D: Fixed object vtable method overrides in PIR

N: Alex Gough
D: bignum
E: alex@earth.li
U: ajgough

N: Alexandre Buisse
U: heimdall
E: Nattfodd@gmail.com

N: Allison Randal
D: Architect (0.4.6 - 2.8.0) & Lead Developer
E: allison@parrot.org
U: allison

N: Alvis Yardley
D: Documentation Shepherd (3.9.0 - Present)
D: Release manager for 4.1.0, 4.5.0 and 4.8.0
E: ac.yardley@gmail.com
U: alvis
S: Ft. Worth, Texas

N: Amir Karger
U: amirkarger
D: editor bugfixes
E: akarger@cgr.harvard.edu

N: Amos Robinson
D: IMCC Optimizer patches
D: ParTcl builtins
U: azuroth
E: amos@coscom.net

N: Anders Nor Berle
D: Some cleanups and FreeBSD related fixes.
E: debolaz@gmail.com

N: Andreas Rottmann
D: Improvements of Eclectus

N: Andrew Parker
D: Port PAST-pm test to PCT.

N: Andrew Rodland
D: vim syntax files and editor doc

N: Andrew Sweger
D: typo squisher
E: yDNA@cpan.org

N: Andrew Whitworth
D: Product Manager (2.9.0 - current)
D: Internals development
D: Documentation
D: Release manager for 0.8.2, 1.3.0, 1.5.0, 2.4.0, 2.11.0, 3.3.0, 3.10.0, 4.0.0, 4.4.0 and 4.7.0
E: wknight8111@gmail.com
U: Whiteknight

N: Andy Dougherty
U: doughera
E: doughera@lafayette.edu
D: Config and building.

N: Andy Lester
D: consting, cleanups, and Chief Cage Cleaner
E: andy@petdance.com
U: petdance

N: Andy Wardley
E: abw@wardley.org
W: http://wardley.org/
D: Minor documentation fixes

N: Angel Faus
D: CFG and live analysis.

N: Arcady Goldmints-Orlov
D: Lists and tuples for Pynie.

N: Arthur Bergman
D: Trying to ride a Ponie - build and compat fixes.

N: Arvindh Rajesh Tamilmani
D: Buffered IO fix

U: ask
N: Ask Bjørn Hansen
D: Keeps us running
E: ask@develooper.com

N: Audrey Tang
U: au
E: audreyt@audreyt.org
D: Pugs, a Perl6->Parrot implementation.

N: Austin Hastings
U: Austin
U: Austin_Hastings
A: austin_hastings@yahoo.com
A: austin_h...@yahoo.com
E: austin_hastings@yahoo.com
D: Close
D: Kakapo

N: Bart Wiegmans
E: bartwiegmans@gmail.com
D: mod_parrot

N: Benjamin Goldberg
D: Numerous improvements and proposals.

N: Bernd Ulmann
D: Fixes for VMS

N: Bernhard Schmalhofer
U: bernhard
D: Eclectus, Scheme on Parrot
D: Parrot m4
D: Pipp, PHP on Parrot
D: HQ9plus
D: Release manager for Parrot 0.6.0, Parrot 0.6.4, and Parrot 1.8.0
E: Bernhard.Schmalhofer@gmx.de

N: Bob Diertens
D: patch regarding macro argument expansion

N: Bob Kuo
D: Convert some perl tests to PIR
E: bobjkuo@gmail.com
U: bubaflub

N: Bob Rogers
D: Random small bug fixes, including one for the linguine bug.
E: rogers-perl6@rgrjr.dyndns.org
U: rgrjr

N: Bob Wilkinson
D: Numerous document typos.
E: bob@fourtheye.org

N: Brad Bowman
D: pod fixes

N: Brad Gilbert
D: Add test for sysinfo op.
E: b2gills@gmail.com

N: Bram Geron
D: IMCC documentation update
E: bgeron@gmail.com

U: brentdax
N: Brent Royal-Gordon
D: Configure, Parrot_sprintf, embedding, early regex engine.
D: Early contributions under the name Brent Dax.
E: brent@brentdax.com
W: http://www.brentdax.com/

N: Brian Gernhardt
E: brian.gernhardt@mail.rit.edu
D: GSoC Student, PCT
U: benabik

U: bdwheele
N: Brian Wheeler
E: bdwheele@indiana.edu

U: brianwisti
N: Brian Wisti
E: brian.wisti@gmail.com
D: PIR Test demonstrating that $I1 and $I01 are different variables

N: Bruce Gray
U: util
E: bruce.gray@acm.org
D: Improvements to Config, Build, and Test sub-systems.
D: Cage cleaning, codingstd, warnings, and doc corrections.
D: Darwin and Win32 platform fixes.
D: Release manager (5.1.0 - 5.7.0, 5.10.0, 6.0.0, 6.2.0, 6.4.0, 6.6.0)
D: GSoC 2013 Org Admin
D: GSoC 2014 Mentor (Backup)
S: Auburn, AL, USA

N: Bryan C. Warnock
D: The First Perl 6 Summarizer
D: Little things here and there in pre-Parrot days.
D: And, yes, {sigh}, *that* Warnock.
E: bwarnock@raba.com

N: Carl Masak
E: cmasak@gmail.com
U: masak

N: Charles Reiss
U: creiss
E: creiss@cc.gatech.edu

N: Chip Salzenberg
D: Release manager emeritus (0.4.6 - 0.4.7)
D: Architect emeritus (0.1.2 - 0.4.5)
U: chip
E: chip@pobox.com

N: Chris Davaz
D: Rakudo builtins
E: cdavaz@gmail.com

N: Chris Dolan
U: cdolan
D: TAP language author, Parrot Bug fixes and Rakudo patches
E: cdolan@cpan.org

N: Chris Fields (cjfields)
D: Rakudo patches

N: Christoph Otto
U: cotto
D: Architect (2.9.0 - current)
D: Range check in Env PMC
A: christoph_googleacct@mksig.org
A: christop...@mksig.org
A: Christoph Otto
E: christoph@mksig.org

N: chromatic
U: chromatic
D: SDL library and examples; PIR Test::*; test suite cleanup; Parrot::Embed
D: freaky bugs; cool features; Pheme
E: chromatic@wgz.org
W: http://wgz.org/chromatic/

N: Chirag Agrawal
U: ZYROz
D: GSOC2014 method call optimizations
E: a.chirag14@yahoo.com
S: Goa, India

N: Clayton O'Neill
D: Fix for parrot linking issue on Solaris 8

N: Clinton A. Pierce
U: clintp
E: clintp@geeksalad.org
D: Many PIR tests and fixes
D: A small XML parser in PASM
D: Interpreter and compiler for BASIC

N: Colin Kuskie
U: colink
D: nqp hackery
D: PIR tutorial updates, docs/test cleanups
E: ckuskie@sterling.net

N: Cory Spencer
U: cspencer
D: Peek opcode and PIO implementation
D: Rakudo builtins
E: cspencer@sprocket.org

N: Curtis 'Ovid' Poe
U: Ovid
D: docs/test cleanups/Makefile fixes
E: ovid@cpan.org

N: Curtis Rawls
U: cgrawls
D: imcc optimizer and register allocator patches and tests
E: cgrawls@gmail.com

U: cxreg
N: Dave Olszewski
E: cxreg@pobox.com
D: copyright test cleanup

N: Damian Miles Knopp
U: dmknopp
E: dmknopp@loyola.edu

N: Daniel Kang
U: jumpyshoes
D: improve pbc_disassemble's test coverage

N: Dan Sugalski
U: dan
D: Architect emeritus (0.0.1 - 0.1.1)
E: dan@sidhe.org
W: http://www.sidhe.org/~dan/blog/

N: Daniel Grunblatt
D: JIT and EXEC subsystems
E: daniel@grunblatt.com.ar
U: grunblatt

N: Danny Werner
D: Test for literals

N: Daniel Arbelo Arrocha
U: darbelo
A: arbelo
D: OpenBSD fixes and testing, gsoc2009-decnum-dynpmcs
E: arbelo@gmail.com

N: Dave Woldrich
D: Win32 build fixes
E: dave@woldrich.com

N: David Czech
U: kapace
E: davidczech510@gmail.com
D: increasing EventHandler test coverage

N: David M. Lloyd
U: dmlloyd
E: dmlloyd@tds.net

N: David Romano
D: PGE tests and fixes
D: POD for the Undef PMC
E: david.romano+p6i@gmail.com

N: David E. Wheeler
E: david@justatheory.com
W: http://justatheory.com/
U: theory
A: theory
A: David Wheeler
S: Portland, OR

N: Dennis Rieks
D: Win32 config and build

N: Dino Morelli
D: PGE tests
E: dmorelli@reactorweb.net

N: Dmitry Karasik
D: nci loadlib fixes
E: dmitry@karasik.eu.org

N: Eirik Berg Hanssen
D: Use unix98 ps option in signal.t

N: Eric Hanchrow
D: add "clone" to iterator
E: offby1@blarg.net

N: Eric Lubow
D: makefile fixes
E: eric@lubow.org
W: http://eric.lubow.org/

N: Felipe Pena
D: Bug fixes
E: felipensp@gmail.com
U: Felipe
S: Rio de Janeiro, Brazil

N: Felix Gallo
D: delegate.pmc patch

N: Fernando Brito
E: email@fernandobrito.com
D: GCI Student
U: fbrito
S: João Pessoa, Brazil

N: Flavio Poletti
D: SmartLink patch for Moose after 0.43

N: Florian Ragwitz
U: rafl
U: flora
E: rafl@debianforum.de
W: http://www.tu-chemnitz.de/~rafl/
D: Debian packaging
S: Chemnitz, Germany

N: François Perrad
A: Francois Perrad
E: francois.perrad@gadz.org
W: http://fperrad.googlepages.com/home
U: fperrad
D: build fixes for MinGW
D: a patch to remove slash_exec from config
D: language Lua
D: language WMLScript (PIR translator)
D: Pipp
D: Release manager for 1.1.0

N: Garrett Rooney
D: Fix typo in PARROT_BIGENDIAN case

N: Geoff Broadwell (japhb)
U: japhb
E: geoff@broadwell.org
D: OpenGL binding and examples
D: Disassembly/source weaver
D: Miscellaneous fixes

N: Gerard Goossen
D: Documentation patch for Parrot_PMC_get_pointer_intkey()

N: Géraud Continsouzas
U: GeJ
E: geraud@gcu.info
A: geraud
D: Perl2Pir tests conversion
D: Miscellaneous codingstd fixes

N: Gerd Pokorra
A: gerd
E: pokorra@uni-siegen.de
D: Release manager for 1.9.0, 2.3.0, 2.5.0, 2.8.0, 2.9.0, 3.2.0 and 3.4.0

N: Gerhard R.
U: gerdr
A: not_gerd
W: http://gerdr.github.com/on-parrot/
D: MSYS fixes

N: Goplat
D: Win98 and other fixes.

N: Gordon Henriksen
D: Unified PMC/PObj accessors

N: Greg Bacon
D: Memory reallocation test and patch

U: gregor
N: Gregor N. Purdy
D: Early Parrot core, including packfile and op processing code,
D: first predereferencing core, first Parrot-targetted compiler
D: with subroutines: Jako.
D: The human version of indent.
E: gregor@focusresearch.com
S: Sunnyvale, CA

N: Havard Eidnes
U: he
D: NetBSD and OpenBSD fixes
E: he@NetBSD.org

N: H.Merijn Brand
D: HP-UX fixes and smoke tests

N: Igor Rafael Sanchez-Puls
D: extending test_file_coverage to test PMC coverage
E: quevlar@ymail.com

N: Ibotty
D: parrotbench ruby benchmarks

N: Ilya Martynov
D: Patch to let pmc2c.pl run from any directory
D: Minor documentation updates

N: Imran Ghory
D: Binary GCD / LCM

N: Ion Alexandru Morega
D: string.pmc, complex.pmc

N: isop
D: various Pynie patches

N: James E Keenan
E: jkeenan@cpan.org
U: jkeenan
A: kid51
D: Testing of configuration and build tools; release manager
W: http://thenceforward.net/parrot/
S: Brooklyn, NY, USA

N: Jarkko Hietaniemi
U: jhi
E: jhi@iki.fi
D: packfile and Tru64 fixes
D: lot of general hints and patches to improve portability

N: Jason Gloudon

N: Jay Emerson
E: john.emerson@yale.edu
U: jay

N: Jeff Clites
D: PPC JIT patches, ICU support, string handling

N: Jeff Goff
D: Release manager for 0.0.5-0.0.8
U: jgoff
E: jgoff@speakeasy.net

N: Jeff Horwitz
E: jeff@smashing.org
U: jhorwitz
D: Various bug fixes and tests

N: Jeffrey Dik
D: Test system fixes

N: Jens Rieks
D: Several libraries, examples and patches.
D: Tetris with SDL
E: parrot@jensbeimsurfen.de
U: jrieks
S: Wuppertal, Germany

N: Jerome Quelin
D: parrotbug, befunge interpreter, ook compiler.
E: jquelin@cpan.org
U: jquelin
S: Lyon, France

N: Jerry Gay
U: particle
E: Jerry.Gay@gmail.com
D: Whatever
S: Seattle, WA

N: Jesse Taylor
U: jrtayloriv
E: jrtayloriv@gmail.com

N: Jesse Vincent
U: jesse
E: jesse@fsck.com

N: Jimmy Zhuo
A: JimmyZ
U: jimmy
E: zhuomingliang@yahoo.com.cn
D: Bugfixes, cage cleaning

N: John Harrison
E: ash@greatethaninfinity.com
U: ash_

N: John J. Trammell
E: trammell@el-swifto.com
D: coding standard tests

N: John Paul Wallington
D: pir-mode.el: fix for xemacs plus bugfixes and cleanups

N: Jonathan Gentle
E: atrodo@atrodo.org
U: atrodo
A: atrodo
S: Ohio, USA

N: Jonathan "Duke" Leto
E: jonathan@leto.net
W: http://dukeleto.pl
D: Release manager for 1.7.0, 3.9.0, 4.2.0, 5.9.0 GCI/GSoC Org Admin/Mentor
U: dukeleto
A: leto
A: Duke Leto
S: Portland, OR

N: Jonathan Scott Duff
U: duff
E: duff@pobox.com

N: Jonathan Sillito
D: Lexical pads, CPS.

N: Jonathan Stowe

N: Jonathan Worthington
U: jonathan
D: Bits of Win32 support, PBC utilities, debug segment work, .Net
D: to PIR translator, some Rakudo stuff and various other patches
E: jnthn@jnthn.net
W: http://www.jnthn.net/

N: Joseph Ryan
D: PIR tests and fixes

N: Jos Visser
D: fortytwo opcode

N: Josh McAdams
D: Allow git checkouts to pass some tests that require an svn checkout

U: josh
N: Josh Wilmes
E: josh-perl6@hitchhiker.org

N: Joshua Gatcomb
D: updated version of parrotbench.pl

N: Joshua Hoblitt
E: jhoblitt@cpan.org
U: jhoblitt
D: bug wrangling, doc & makefile cleanups, and Pod tests
D: mucking around with Configure

N: Joshua Isom
E: loneowl@ritalin.shout.net
U: jisom
D: Getopt/Obj.pir

N: Julian Albo
U: NotFound
A: julianalbo
A: julian.notfound
E: julian.notfound@gmail.com

N: Julian Fondren
E: ayrnieu@gmail.com
D: Standardize and add languages/*/MAINTAINER files
D: a patch to catch exception in Lua

N: Jürgen Bömmels
U: boemmels
E: boemmels@web.de
D: Parrot I/O; macro stuff in assembler.

N: Karl Forner
D: shootout examples testing
E: karl.forner@gmail.com

N: Kay-Uwe 'kiwi' Hüll
D: Cage cleaning tasks

N: Kenneth A Graves
D: yield and other PIR improvements

N: Kevin Falcone

N: Kevin Polulak
U: soh_cah_toa
E: kpolulak@gmail.com
D: HBDB debugger, release manager for 3.8.0
S: New Jersey, USA

N: Kevin Tew
U: tewk
E: tewk@tewk.com
D: Cardinal(Ruby on Parrot), ECMAScript PGE grammar,
D: Python PGE grammar, C99 PGE Grammar
D: Various Config Fixes, Compiler Warnings, etc

N: Klaas-Jan Stol
D: clean-ups of compilers/imcc and its documentation.
D: compilers/pirc and languages/PIR.
D: various updates to PCT-based languages (C99,Punie,Cardinal,Ecmascript)
D: languages/json, languages/squaak
U: kjs
E: parrotcode@gmail.com

N: Klāvs Priedītis
U: klavs
E: klavs.pr@gmail.com
D: M0 bytecode disassembler

N: Larry Wall
E: larry@wall.org
U: larry

N: Lars Balker Rasmussen
D: FreeBSD and other build fixes

N: Lee Duhem
D: Debug patch
U: leed
E: lee.duhem@gmail.com

N: Leon Brocard
U: acme
E: acme@astray.com

N: Leopold Toetsch
U: leo
D: Patchmonster & release manager emeritus (0.0.13 - 0.4.5)
E: lt@toetsch.at
S: Herrnbaumgarten, Austria

N: Luben Karavelov
U: luben
E: karavelov@spnet.net

N: Luca Barbato
D: fix to make installable
E: lu_zero@gentoo.org

N: Luke Palmer
E: luke@luqui.org
U: luqui
D: Many fixes

U: LylePerl
D: Win32 and CGI testing
W: http://perl.bristolbath.org/blog/lyle/

N: Mariano Wahlmann
E: dichoso@gmail.com
A: bluescreen

N: Marcelo Serra Castilhos
E: mhelix@terra.com.br
D: Bug fix

N: Marcus Thiesen
D: URM language, bugfixes

N: Mark Glines
U: infinoid
D: Cage cleaning, random bugfixes, report bugs
E: mark@glines.org
S: South Lake Tahoe, CA, USA

N: Mark Grimes
E: mgrimes@cpan.org
D: Clean up some tests

N: Markus Amsler
D: httpd.imc, bugfixes

N: Markus Mayr
D: Implementation of the Rational PMC
D: Fixing SDL-bindings and examples

N: Martin Olsen
D: M0 tests
U: mro
E: github.com@martinolsen.net

N: Matt Boyle
U: ligne
D: Fixes to docs and test-suite.

N: Matt Diephouse
U: mdiep
E: matt@diephouse.com
D: Turn off buffering layer in forth.pasm
D: Various patches for pmc2c.pl
D: Run Tcl test suite in partcl, and add various partcl bits

N: Matt Fowles
D: Resizable*Array PMCs

N: Matt Kennedy
D: Some Env PMC method implementations and tests

N: Matt Rajca
E: mattmatt.rajca@me.com
A: mattrajca
D: Code refactoring, increasing test coverage

N: Mattia Barbon
D: Win32 fixes, dynamic PMC creation and loading

N: Melvin Smith
U: mrjoltcola
D: Parrot core, various ops, IO, subs, continuations, COW stacks
D: IMCC, Cola
E: melvin.smith@gyrasoft.com
S: Atlanta, GA

N: Michael Cartmell
E: Michael.Cartmell@thomson.com
D: README.win32 spelling patch

N: Michael H. Hind
U: mikehh
D: testing parrot and some HLL's
D: fixing codetest failures
D: adding function documentation
D: tracwiki additions
D: Release manager for 2.7.0, 3.1.0
E: mike.hind@gmail.com

N: Michael Schroeder
U: mls
D: subprof profiling runcore
E: mls@suse.de

N: Michael G. Schwern

N: Michael Scott
D: Getting Started Guide for Parrot, many doc fixes
D: Mac OS X build fixes
D: HTML documentation for Parrot
E: michael_scott@mac.com
U: mikescott
W: http://xrl.us/sml

N: Michael Stevens
D: Remove an unused variable in C-land

N: Michal J Wallace
D: Pie-thon hammering PIR

N: Mike Lambert
U: mongo
E: perl-dev@jall.org

N: Mike Mattie
E: codermattie@gmail.com
D: Patch reducing code duplication

N: Mitchell N Charity

N: Moritz Lenz
E: moritz@faui2k3.org
U: moritz
D: Test infrastructure for languages/perl6/ and Perl 6 in general

N: Marek Šuppa
E: marek@suppa.sk
U: mrshu
W: http://shu.io
D: Benchmarks

N: Nat Tuck
U: Chandon
E: nat@ferrus.net
D: 2010 Hybrid Threads GSoC project

N: Neil Conway

N: Nicholas Clark
U: nicholas
E: nick@ccl4.org
D: Building and platform compat and more.

N: Nick Glencross
D: Various low hanging bug fixes
D: Build and smoke fixes for HP-UX and cygwin
D: Some examples, such as circle.pir and MD5.pir
E: nick.glencross@gmail.com
U: nickg

N: Nick Kostirya
D: Win32, FreeBSD build fixes

N: Nick Wellnhofer
D: String iterator rewrite, GC fixes
E: wellnhofer@aevum.de
U: nwellnhof

N: Nikolay Ananiev
D: Win32 build fix

N: Nolan Lum
E: nol888@gmail.com
D: Test coverage improvement.
U: Yuki`N

N: Norman Nunley
D: Shaving a Ponie
E: nnunley@gmail.com

N: Nigelsandever
D: Win32 patches

N: Nuno 'smash' Carvalho
U: smash
D: PGE/perl6/abc debugging and testing
E: mestre.smash@gmail.com

N: OOLLEY kj
D: Miscellaneous cleanup and PDD07-conformance

N: Oliver Charles
D: Initial patch to add 'getprotobyname' to Socket PMC
U: ocharles
E: oliver@ocharles.org.uk

N: Ovid
D: Rename 'pbc_to_c' to 'pbc_to_exe'

N: Paco Alguacil
D: Building on various platforms
E: paco.linux@gmail.com

N: Pancake
D: Fixes for pdb, the Parrot debugger

N: Pat Eyler
D: Ruby recursive expression support.
E: pat.eyler@gmail.com

N: Patrick R. Michaud
U: pmichaud
D: Parrot Grammar Engine
D: Perl 6 (Rakudo Perl) pumpking
D: NQP, PCT, PAST, POST
D: APL
D: Pynie
E: pmichaud@pobox.com

N: Paul C. Anagnostopoulos
U: Paul_the_Greek
A: Paul C. Anagnostopoulos
E: paul@windfall.com
D: Improving memory management documentation

N: Paul Cochrane
U: paultcochrane
D: Changing the newspaper in the parrot cage
E: paultcochrane@gmail.com

N: Peter Gibbs
U: petergibbs
E: peter@emkel.co.za
D: String subsystem

N: Peter Lobsinger
U: plobsing
E: plobsing@gmail.com

N: Philip Taylor
D: Win32 ICC support

N: Piers Cawley
U: pdcawley
D: The Second Perl 6 Summarizer after Bryan C. Warnock
E: pdcawley@bofh.org.uk
W: http://www.bofh.org.uk:8080/

N: Piotr Fusik
D: Fixed typos

N: Reini Urban
U: rurban
E: rurban@cpan.org
E: rurban@cpanel.net
D: cygwin, install, native_pbc
D: various optimizations and maintenance
D: Release manager and GSOC mentor
S: Houston, TX (formerly Graz, A)

N: Richard Hainsworth
U: finanalyst
E: richard@rusrating.ru
D: bugfix SDL Font

N: Richard Tibbetts
D: Divide by zero exceptions in some PMCs

N: Rick Scott
D: Test and doc tuneups
E: rick@shadowspar.dyndns.org

N: Ritz Daniel

N: Robert G. Jakabosky
E: bobby@sharedrealm.com
D: language Lua bugfix (64bits).

N: Robert Spier
D: Keeps us running
U: robert
E: robert@perl.org

N: Roger Browne
E: roger@eiffel.demon.co.uk
U: eiffel
D: Author of Amber; bug fixes and tests

N: Roland Illing
D: Building Parrot with pkgsrc

N: Rolf Grossmann
U: rg
D: pod2html fixes, floating point fixes, platform testing, cage cleaning
E: rg@progtech.net

N: Ron Blaschke
U: rblasch
E: ron@rblasch.org
D: Win32 patches

N: Ruben Fonseca
D: opcode test coverage script
E: fonseka@gmail.com

N: Saleem Ansari
E: tuxdna@gmail.com
D: Fixed typos in documentation

N: Sam Ruby
E: rubys@intertwingly.net
U: rubys
D: Pythonic and OO patches

N: Sam Vilain
D: Prototype object model and tests

N: Samuel Harrington
E: samuel.harrington@mines.sdsmt.edu
U: samlh
D: css patch

N: Sean O'Rourke
E: educated_foo@yahoo.com
U: educated_foo
D: Original Perl6 compiler

N: Sebastian Riedel

N: Shawn M Moore
U: sartak
D: Cage cleaner
D: ops summary script
E: sartak@gmail.com

N: Simon Cozens
U: simon
E: simon@simon-cozens.org
D: Release manager for 0.0.1-0.0.4

N: Simon Glover
U: scog
D: Tests, docs and misc. bugfixes
E: scog@aip.de
S: Potsdam, Germany

N: Skip Livingston
D: Fix for string_to_num

N: Stefan Lidman
D: sqrt ops

N: Stefan O'Rear
E: stefanor@cox.net
D: Perl 5 interoperability, Blizkost
U: sorear

N: Stefan Seifert
U: nine
E: nine@detonation.org
D: Hybrid threads, continuation of Chandler's work on tasks
S: Linz, Austria
W: http://niner.name

N: Stéphane Payrard
D: Various code fixes and improvements

N: Stéphane Peiry
U: stephane
E: stephane@modxml.org
D: Lot of JIT/sun patches

N: Sterling Hughes
D: Questions for the FAQ

N: Stephen Weeks
U: tene
A: t...@allalone.org
D: Cardinal, a Ruby compiler
D: ChitChat, a Smalltalk compiler
D: Minor Rakudo patches
E: tene@allalone.org

N: Steve Clark
D: Bugfixes

N: Steve Fink
U: sfink
D: Release manager for 0.0.9-0.0.11
E: steve@fink.com
S: San Carlos, CA, USA

N: Steven Schubiger
D: refactored out t/pmc/pmc.t perl tests
E: steven@accognoscere.org
W: http://www.accognoscere.org
S: Winterthur, Switzerland

N: Steve Peters
D: Patch for unreferenced variable warnings on Win32

N: Stig Brautaset
D: Patch to repair 'make clean'

N: Stuart Jansen
D: lolcode patches

N: Tanton Gibbs
U: thgibbs
E: thgibbs@deltafarms.com

N: Ted Reed
U: treed
E: ted.reed@gmail.com
D: cardinal

N: Thilo Planz
D: partcl tests and inspiration

N: Thomas Kratz
D: Fixes for VMS

N: Tim Bunce
E: Tim.Bunce@pobox.com
U: timbo

N: TOGoS
D: Some FAQ questions and answers

N: Tom Hughes
E: tom@compton.nu
U: tom

E: tom@nekomimists.ddo.jp
D: Nicer command line handling in ops2c.pl

N: Tony Payne
D: Example hanoi.pasm

N: Tony Young
E: rofflwaffls@gmail.com
U: rfw
D: increasing PMC test coverage

N: Tyler Curtis
U: tcurtis
E: tyler.l.curtis@gmail.com
E: ekiru.0@gmail.com
D: PAST Optimization GSoC 2010
D: Release manager for 2.10.0
A: tylercurtis
A: ekiru

N: Tadeusz Sośnierz
U: tadzik
E: tadzikes@gmail.com

N: Ujwal Reddy Malipeddi
U: ujwalic
E: ujwalic@gmail.com
D: OpenGL/GLUT include file order with MSVS
D: Fixed and updated Qt/NCI example for Windows
D: Cleaned up warnings on Windows

N: Uri Guttman
D: Lot of general Parrot design hints

N: Vasily Chekalkin
U: bacek
E: bacek@bacek.com
D: Core and Rakudo patches

N: Vishal Soni
E: vishalrsoni@gmail.com
U: vsoni
D: Bug fixes in IMCC, ECMAScript

N: Vladimir Lipsky
D: Win32, IO fixes

N: Will "Coke" Coleda
U: coke
A: wcoleda
E: will@coleda.com
D: Tcl HLL implementation (partcl), APL, website,
D: Release Manager, PaFo board member, curmudgeon

N: Zach Lipton

N: Zach Morgan
E: zpmorgan@gmail.com
D: Rakudo patch

N: Anthony Parsons
E: flussence@gmail.com
U: flussence

N: cvsdummy
U: cvsdummy
E: cvs@perl.org

N: svn
U: svn
E: svn@perl.org