-
Notifications
You must be signed in to change notification settings - Fork 39
/
Urls to commits
1180 lines (1126 loc) · 97.1 KB
/
Urls to commits
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
<<<<<<<<<<<<All Done>>>>>>>>>>>>>
Chase ******************************** Count: 20 reviews: 10
Commits
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/279ff275676a924690cef260640f4dba0501a280
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/7ae9ad4fb3bace35dba7aaf875aab25b2e3761c9
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/efdb581896dff1b714a665870c674cfdb98bd5df
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/fdb4f731637b2319070f216daa375bfd5c5aece0
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/0592cfbd6ae3e0bb8f2a3cfe359e32fdde0d3b2b
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/52e4f1e880352b9b6fe48b490453b6276af03526
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/990273dab8d591f7d5171a2559908f816a71ff67
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/8337109cc4231eaad84298159751d1e28a6755c6
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/831383aeeab9b190edbd69fa46942e6b6f31f4c3
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/d7b15483b45c89f479135d82065b4939f7c7a697
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/5401d400aebeb9e66fda14e150d5faec7eb98a83
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/2da83a9973825b3c0dba6bb2e17b054de1ba3c02
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/008b0b5105c8778b1e189534b2522b6c359e0617
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/a38c254ff90426e5862989cb0498739dc5504890
Nicholas Chase, https://github.com/NicholasChase/primitive/commit/e7abdaf6a8be623e32809fd5348c895ca3a735f4
Pull Request
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/8
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/20
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/24
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/25
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/31
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/36
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/38
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/44
Reviews
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/3
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/7
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/11
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/13
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/19
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/28
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/37
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/39
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/41
Nicholas Chase, https://github.com/NicholasChase/primitive/pull/42
**************************************count 21******************************************************
https://github.com/NicholasChase/primitive/pull/35/commits/c7b0d7657c8e385b02e2cdc7016aa9007e8ae7f0
https://github.com/NicholasChase/primitive/pull/21/commits/cdd566fe776ab810a0bb87b984e7ebfeac16bc27
https://github.com/NicholasChase/primitive/pull/21/commits/6a90e5795b6d6e37fb211b47c42e8de9395b7901
https://github.com/NicholasChase/primitive/pull/27/commits/320b87360d1a403286724be85a693ddf2a2a25d1
https://github.com/NicholasChase/primitive/pull/27/commits/6853552508b00e96d504568761d08d9a813fd929
https://github.com/NicholasChase/primitive/pull/27/commits/cd03a48549587de7d592f5e45e900b3864b5e620
https://github.com/NicholasChase/primitive/pull/19/commits/397bb54c6863c1dcbf229385d4c78965f32507b0
https://github.com/NicholasChase/primitive/pull/13/commits/57b026b3804ffec7d51219228a79e8262db0b0cc
https://github.com/NicholasChase/primitive/pull/13/commits/dbc503de4d294fec287bd9d419e9c8a2371a9e8d
https://github.com/NicholasChase/primitive/pull/29/commits/a502d97205d54bb80e0d6fa928414ade993c142d
**************************************************************************
Donovan ***************** Count 20 Review 10
https://github.com/NicholaiThe3rd/Craft/pull/3/commits/93204c7467d924a3b4f4912c90c64c5c6f67b658
https://github.com/NicholaiThe3rd/Craft/pull/5/commits/6cbe0d0adab54f687d6d6341a1e0615b0d11bb04
https://github.com/NicholaiThe3rd/Craft/pull/10/commits/7a9e6dfab55280ef8fc5d5ddbc922d455a44facd
https://github.com/NicholaiThe3rd/Craft/pull/11/commits/46979c5033c30abeafc09ccba63983bda5a37d2f
https://github.com/NicholaiThe3rd/Craft/pull/3
https://github.com/NicholaiThe3rd/Craft/pull/5
https://github.com/NicholaiThe3rd/Craft/pull/10
https://github.com/NicholaiThe3rd/Craft/pull/11
https://github.com/NicholaiThe3rd/Craft/pull/6#pullrequestreview-393188618
https://github.com/NicholaiThe3rd/Craft/pull/7#pullrequestreview-404560039
https://github.com/NicholaiThe3rd/Craft/pull/9#pullrequestreview-404560064
https://github.com/NicholaiThe3rd/Craft/pull/16#pullrequestreview-404559196
https://github.com/NicholaiThe3rd/Craft/pull/17#pullrequestreview-404559407
https://github.com/NicholaiThe3rd/Craft/pull/13#pullrequestreview-404559737
https://github.com/NicholaiThe3rd/Craft/pull/12#pullrequestreview-404559992
https://github.com/NicholaiThe3rd/Craft/pull/15#pullrequestreview-404560368
https://github.com/NicholaiThe3rd/Craft/pull/14#pullrequestreview-404560600
**************************************
Forshaw ***************** Count: 20 Reviews: 10
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/ad14037a78ab76c6b30b8f5f9076ac09e3c4bd3c
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/bf37196646baab14a5ad0e94c107dd07fa1b4b44
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/3596bc5edaa84b6b94238aa497f3ad3ec69a2ac1
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/8e30387c3f1f2a3646cd9467ffd0c1b6049bc87c
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/773d5251bb333843d5941bbdbdc81f3012d84003
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/c7446e1b931aa3412a3af41c393def5c0772d705
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/833d47cea807d0980b7bb00dd704408802d93fd0
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/a18fc7da6330f47f8507b842cc33583ee62bf4ad
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/b52611dd4b179ce36307e9b875c8ba376b2db6d5
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/fa1a89ee23a37a8fc3bae106118bd39d436dcfca
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/928288fe42873d23373bf3b83e84a069a69f3c23
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/a82ecfc2b878cfdd82ec2de46e9e5297f1f48dcb
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/4d6610652158250e14ad655b41c056bc20768f2b
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/33b24636c4b90ce7e41429c0c4be79c6e0078b33
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/f5224c6902116a58966806b0a0f97b09dae656f5
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/7b741446106da296d6e983f3caa342789ca551b7
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/fca80a2984d2f3b92be60c1d075fb59a5d9a8d9f
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/65ff344a2e83108854b4dfebc4c6ba899f4974b2
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/82197e438341e4e61cb66d775f05271bdeecd42d
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/8dfac616ecfebd013af0323bdf9e7202b0361520
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/da310c5792d300fdbe3708020aa3b1e8cf5a6f23
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/da89c94f5663e52afd4e4adc481615b86d2ad46a
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/pull/1
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/pull/2
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/pull/3
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/pull/4
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/1f6b1da773673cb59c513ea25ecc6b926d3eac87
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/17e52b831883fb41b975d253477dca092ee4b2d2
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/66f3644eb9eb5600b05fb80ecce46a19b39c128c
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/5a3c37353a83b3b349ca63c35c1921cbeaf41e52
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/e12c305d866d4b0522dd9f83a9a56836509c9b54
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/788278624d5b596ac2a507d9f7e348cc4d854c42
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/60490d52321d5d9f39a8c7936d1c8366990fb9a6
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/7122ddc89e0fd5991b4a4c2bfe6b652199204667
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/7004328f0bec02127736d46b052447056f645082
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/0f89483d9cd9df246d16a255760687cfc6ff48df
Laurence Forshaw, https://github.com/laurenceforshaw/primitive/commit/9525e41b181708783f032257661f4c21f58b8f84
Laurence Forshaw, https://github.com/fogleman/primitive/pull/93
Laurence Forshaw, https://github.com/fogleman/primitive/pull/77
Laurence Forshaw, https://github.com/robNoonan/JAdventure/pull/3
Laurence Forshaw, https://github.com/fogleman/primitive/pull/67
Laurence Forshaw, https://github.com/fogleman/primitive/pull/91
Laurence Forshaw, https://github.com/fogleman/primitive/pull/75
Laurence Forshaw, https://github.com/fogleman/primitive/pull/56
Laurence Forshaw, https://github.com/fogleman/primitive/pull/72
Laurence Forshaw, https://github.com/fogleman/primitive/pull/73
Laurence Forshaw, I wll also submit an affirmation concenring the change requests I approved at work.
**********************
Green ***************************** Count: 20 Reviews: 10
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/6
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/6/commits/a851cf1e97081014fe12ae0b6dc42854d10cdb4a
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/7
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/7/commits/7b3e1710dc98aa8744af805291f7d1aeb5084185
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/9
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/9/commits/5fe7c7d33fa5a5189bf59408356e77ec80d07a85
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/12
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/12/commits/2b7594ad684a8ef588a6d901547711dfa4a049d0
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/12/commits/ceadbcb213d7ce8fedc9c6fd9519dd4c6636563c
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/13
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/13/commits/6c01059fca87428aa7143a90cf89e68fbf556bf5
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/14
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/14/commits/027247f47d8dc2e2743856606ded96531352f3a7
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/14/commits/ad4a3a87df8dff56fdea72a96f3b90cf329703e7
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/15
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/15/commits/9cfdd9edec4e3a108b75038d2b787f5edecf8ca2
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/15/commits/3806b6b9fecd8468089be58efadbc6a779bdd769
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/16
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/16/commits/a55b67c4c3c8b5486bc18ad2d0dedbdffc232b59
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/16/commits/8204798d34575ef565ed3dd1b8fe4f43db5cf183
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/17
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/17/commits/6fb1027602691844597522ebd02aa8f0d8c64e64
Reviews
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/10
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/3
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/5
Austin Green, https://github.com/NicholaiThe3rd/Craft/pull/11
Austin Green, https://github.com/ryansteeters/Craft/pull/34
Austin Green, https://github.com/ryansteeters/Craft/pull/32
Austin Green, https://github.com/ryansteeters/Craft/pull/31
Austin Green, https://github.com/ryansteeters/Craft/pull/30
Austin Green, https://github.com/ryansteeters/Craft/pull/27
Austin Green, https://github.com/ryansteeters/Craft/pull/14
*****************************************************************
Hall ************* Count: 20 Reviews: 10
**************** Commits + Pull Requests (Count: 24)
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/18
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/16
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/14
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/12
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/11
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/11/commits/d53bff34b3b6b6be2acbd7674da32f29ea0992d2
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/11/commits/ac200c1e5525239d03228896613fef679e22ca52
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/11/commits/3bea47cf7ab1ef2053097498c0fd7ad468132956
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/11/commits/aff9f02ee9788e2a3e50ce2c16d7d6e08fb355c3
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/11/commits/0d3c280324c12821d0a95de2f67ede8c064796a5
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/12/commits/c703f27374331faf1186f54bcc04380c6f6efc5a
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/12/commits/0a7a7bd76b84b0d4e84d76cc91f966851baeb739
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/14/commits/a0fa04a4027904f8cefbdda85cb07a65b18c746d
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/14/commits/7aa349df34df9404e81a7eb54985e09252ea4fec
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/14/commits/133aed8fe2b584de95f3d252a8b26732fa266010
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/14/commits/b4c4b7cd747d0aca9b50d1d1a125910630f1c2a3
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/16/commits/b68c5a37e4b1275fdc5f10378e436a3265de11ea
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/16/commits/b4f81788520341977088c02cedad48d256cfd405
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/18/commits/96f9386fe3482ff76310247bb61099bb031bb62e
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/18/commits/ececa32d2f3f5e52a4e2454f7a7dbdca9ec89fb8
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/18/commits/767d5b9c0189a2fee003ba2fcfdaf3486ce87ed7
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/commit/80c145074cb76a507afa6e98341668e772dd9940
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/commit/8cd172632be3b99da1b6a0909c2d6996bab3f6c8
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/commit/7cd5e8f412bd76b9f893085db7412397ca2143e1
**************** Pull Reqeust Reviews
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/2
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/3
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/7
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/8
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/9
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/13
Jeremy T. Hall, https://github.com/DSF256/godot-demo-projects/pull/15
*************************************************************************************************
Hirzel************** Count 20 review 10
Nick Hirzel, Group 14, Commits + PRs: 43, Reviews: 10
PRs:
https://github.com/CEG4110-group14/boot-games/pull/4 3 commits
https://github.com/CEG4110-group14/boot-games/pull/5 3 commits
https://github.com/CEG4110-group14/boot-games/pull/6 3 commits
https://github.com/CEG4110-group14/boot-games/pull/11 2 commits
https://github.com/CEG4110-group14/boot-games/pull/12 2 commits
https://github.com/CEG4110-group14/boot-games/pull/22 1 commits
https://github.com/CEG4110-group14/boot-games/pull/24 8 commits
https://github.com/CEG4110-group14/boot-games/pull/25 7 commits
https://github.com/CEG4110-group14/boot-games/pull/26 2 commits
https://github.com/CEG4110-group14/boot-games/pull/28 2 commits
Reviews:
https://github.com/CEG4110-group14/boot-games/pull/1
https://github.com/CEG4110-group14/boot-games/pull/10
https://github.com/CEG4110-group14/boot-games/pull/21
https://github.com/CEG4110-group14/boot-games/pull/27
https://github.com/CEG4110-group14/boot-games/pull/30
https://github.com/CEG4110-group14/boot-games/pull/40
*********************************************
Huynh ***************** Count 20 Reviews 10
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/1
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/2
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/3
https://github.com/stimulsoft/Samples-Dashboards-WinForms-CSharp/pull/5#issue-402222152
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/1/commits
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/2/commits
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/3/commits
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/5
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/5/commits/6332b955bc08554c65843bae278e39092ebfa5ca
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/5/commits/89b5031d529c82e534170328e10d278e87b69525
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/8
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/10
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/11
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/commit/b9d2cc045252f6ce10a9f0d87a951e3846dc4373
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/commit/73f2034b232632a4f26331f17a635fb6376fc7ba
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/4
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/6
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/7
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/9
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/12
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/13
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/14
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/pull/15
Commits: 36
https://github.com/kenvnus/Samples-Dashboards-WinForms-CSharp/commits/master
Review purequest: 10
https://github.com/keilyn-will6/Spades-Game/pull/1
https://github.com/keilyn-will6/Spades-Game/pull/2
https://github.com/keilyn-will6/Spades-Game/pull/3
https://github.com/keilyn-will6/Spades-Game/pull/4
https://github.com/keilyn-will6/Spades-Game/pull/5
https://github.com/keilyn-will6/Spades-Game/pull/6
https://github.com/keilyn-will6/Spades-Game/pull/7
https://github.com/keilyn-will6/Spades-Game/pull/8
https://github.com/keilyn-will6/Spades-Game/pull/9
https://github.com/keilyn-will6/Spades-Game/pull/10
***********************************************
Layne ************************ count 20 reviews 10
*********Pull Request Reviews******* Count:10
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/37
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/35
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/34
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/31
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/28
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/27
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/25
++ Layne Dustin, https://github.com/D-B-Cooper/jgit/pull/32
++ Layne Dustin, https://github.com/D-B-Cooper/jgit/pull/31
++ Layne Dustin, https://github.com/D-B-Cooper/jgit/pull/30
*********Pull Requests and Commits******* Count:22
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/36
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/36/commits/bcebb7a71f8c3c3a5ab2306bcec5ebe8d545236f
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/33
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/33/commits/f572eb188bf0952ffa047d6376119baf8da31df4
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/33/commits/6ef3abc80610e3a2e944e1ce2300bb8d099ebcea
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/32
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/32/commits/6b71c6561568254ab974ea930e6947024d86f32a
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30/commits/c7b9254b0d157e44f5589840896a902e8081a769
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30/commits/bb54f537746ef08608ce3cec7b1fac4318eec622
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30/commits/142dca40d88f9f4a15732212ee4b8718c20a6824
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30/commits/8c25e930a59f70f4ebf26a4ac55a8e3948709c0d
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30/commits/167d2878174040dc026e788a732979c704ad6982
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/30/commits/144e67d9f34f3e90b44f662d993e5d397a87b83b
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/21
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/21/commits/aca7beac0b8470bff22fa9879b3a65472d88b364
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/15
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/15/commits/e766a45a0072680097644092ab0de5b68492a045
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/39
++ Layne Dustin, https://github.com/ryansteeters/Craft/pull/39/commits/bf1cb799e0d5ea7f59961320c83f7c465ab3461e
++ Layne Dustin, https://github.com/Dustin-Layne/Craft/pull/2
++ Layne Dustin, https://github.com/Dustin-Layne/Craft/pull/1
***********************************************************************
Mahaffy ******************************** Count: 20 Reviews 10
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/30/commits/8c58dcdef86850130ba0ffc342f9d8af7ef9f281
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/30/commits/2b126531bc041e120e1db230f93cd54b09e1c406
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/30/commits/902edd1c8e50b4387a7483aecde575819296a962
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/30
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/0cd154d01a81f642c877f103d4ac6f3752f6db13
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/9f15e00111e9a71de101d211cce0d58682d98ea2
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/320b6499f8351dd43f80593648530acc4073693e
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/f53fa87308806664c58028775c421f2827e2dad0
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/00f81fd0204d123bdbd4e2737cc45ca81fc438a3
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/28
NOTE: I emailed about this commit counting as multiple commits.
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/56be0298bf922930c56723b49136c7de4f307872
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/29
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/864c40e558fe1960909a03533f21b7822457d3f2
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/4ef811f66b71681c52e999c6fa9552edd0f3d4a2
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/253b560d530e5477d1ee84c9405648c473d522c0
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/b75efb3a37182d721de6cf20fd3bf2985aa33cc9
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/d44f77f2c10fc2dad328b6b39de62789363aec28
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/31
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/bbad231b0877eae88a4f30e06af4873def0711ed
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/26af5bdccd8770c4e31e5842a8deb98fdcd99077
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/commit/2739bb85839d2120bb575dbad89889539dda42c7
++ Ian Mahaffy, https://github.com/D-B-Cooper/jgit/pull/32
Pull Request reviews: 11
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/27
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/25
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/24
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/22
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/9
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/11
++ Ian Mahaffy, https://github.com/DSF256/godot-demo-projects/pull/2
++ Ian Mahaffy, https://github.com/DSF256/godot-demo-projects/pull/3
++ Ian Mahaffy, https://github.com/DSF256/godot-demo-projects/pull/9
++ Ian Mahaffy, https://github.com/DSF256/godot-demo-projects/pull/15
++ Ian Mahaffy, https://github.com/iNateDawg/Craft/pull/28
*************************************************************************************
Richards ******************************** Count: 20 Reviews 10
--Jonathan Richards, https://github.com/ryansteeters/Craft/commit/e65e8e05b1ee88bff998d04686e3bbd732f68d8c
--Jonathan Richards, https://github.com/ryansteeters/Craft/commit/fd662a20b59a331282afde6ff2db02d3c46aa0c7
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/446cd3dd0317b0584c0b42fd9421e404a47c5628
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/4ad00373bed977260001e74fb68e84e6f519a94e
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/5915c0b1003ae77235862e897ad3d249cc7f0887
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/f43dc75117b95817faa73b562351a3c49166c9e3
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/f4eb4a19b4383785127b3bb6272e984a49537200
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/09207f36c0be1beaf040ad109a46498cfb6c381e
++Jonathan Richards, https://github.com/ryansteeters/Craft/commit/a26cf1801e8cd819f6d5cc0fe10c5296f0fd4fa5
--Jonathan Richards, https://github.com/ryansteeters/Craft/commit/5bd6d22151a4e3e233be6e12ee38b49bf5d4ffeb
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/0fbaac03dc630db96d3c077978b1d67bc6ce390a
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/151c3c4250812da839c12246267a8ced49bbcded
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/9259cb053ff279e51ae5cbec289a4a9b6e3059e7
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/f63fa3ff5ede9880f4361842f5028efd413f9dbd
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/036465668987ba2dee9af3353a2e711964729bf2
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/df40ff7bfd160194b82479e6201e9cf62eefe692
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/c3913725a53fc0b3bda8d6009f2edf2b3c453358
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/f6f41becaee17edc5524ef59ba3272648cdac902
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/21960a009d1cb98c8fef06fdbbb350434f71e35b
Jonathan Richards, https://github.com/ryansteeters/Craft/commit/e3460423631f3aa8d8cb778a46e44bdf800f0461
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/27
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/22
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/19
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/18
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/3
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/34
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/35
Pull request Reviews:
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/26
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/15
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/28
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/30
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/32
Jonathan Richards, https://github.com/NicholaiThe3rd/Craft/pull/6
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/33
Jonathan Richards, https://github.com/NicholaiThe3rd/Craft/pull/7
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/38
Jonathan Richards, https://github.com/ryansteeters/Craft/pull/39
******************************************************
Steingass ******************************** Count: 20 Reviews: 10
++Hannah Steingass, https://github.com/NicholasChase/primitive/pull/6#pullrequestreview-386828321
++Hannah Steingass, https://github.com/NicholasChase/primitive/commit/e69c7f83b81bdc8f9eb97dc55900eefaae8db164
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/41/commits/136951640554dd62a931ef466e0e0f8011019752
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/34/commits/a78de021668941a68a34ec3c388df532c64c3f5b
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/33/commits/8fc780adb79073e06bea8ff4de0ccd85b21f650b
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/30/commits/e0a8978be1348dd5cbed099c95e016ae8a518c51
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/26/commits/d79676f2ce20d1dc4361af0e0ef622970b1a1e3d
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/23/commits/16a607ff28b5506fc78c30fd80fece9b646e6e57
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/22/commits/692935283a60d7e79ffbf295ed83e017b3ecc7ac
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/18/commits/128062dd8888397160cbfff4c635c974b8be24e3
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/16/commits/23a6ae76c61d0016acd496582dc7b9d1dc7d460a
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/16/commits/6bfc8344c2c703df45b9b44c1519d2028e95ec68
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/14/commits/adea203fb517db24896ba15d30677932f61d9790
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/14/commits/5baabe7e8b7d648361705bbb5875c55b8d54003d
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/12/commits/0f54dffb3500baab3b43c87cd98336f094002dec
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/12/commits/eb4ae789c2e19f4e53b2532e0754f9842b793fc0
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/12/commits/c17d530039d4dce8b2de2e159278c355b812d2f8
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/7/commits/6761a7d6828ed05a14840cf090ab0f14bfe1f66b
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/7
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/9
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/12
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/14
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/18
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/22
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/23
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/26
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/30
Hannah Steingass, https://github.com/NicholasChase/primitive/pull/34
***************************************************************
Teeters *********** Count: 20 Reviews: 10
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/0465c6ab3cb635c3194d865062c948d9685d0cf5
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/ad4e4340fdb0445b2260c823e8fdc6e4f5bc73f0
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/d935317f5209056a1f2fc88468fddc2461749665
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/8bd28ca58c3c78e747636bd766d357a08940d198
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/d259ab8a2fe43bfea4ed50e8c60828fbfe2dbe89
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/8ce59fc83e8f6f069d068a49e006a42a93a2fa17
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/38
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/788cd5563e34ce9f4b85189d1cbfa7309c13f940
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/e36dd1bfbb0d2e1eae6b5263dce50c247b2156d3
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/a1731b6211d8902cd7191b6ce106e6e06e606418
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/c995fe2590d14d26244117dc1302e0364961bdec
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/73ee5ccafed8e5c716dc2724baf3ffef9ffca9fb
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/dfc50130d749f8d89af85a9ad0be23623ec695a3
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/40
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/41
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/73b29cdb7d286580028868167639c8b50d859de0
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/633832936dc659985a3c35f1848f74a69e1dc3f7
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/b0e38ef19cd6a252c5e79993e0a40c920f75ca38
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/cee027bc78942a5e0a4e467516053590e88c546c
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/43
Ryan Teeters, https://github.com/ryansteeters/Craft/commit/1b003b34a27ef088f810cc162f15851895769613
Pull Request Approvals
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/21
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/18
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/17
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/14
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/6
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/5
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/31
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/33
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/34
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/35
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/36
Ryan Teeters, https://github.com/ryansteeters/Craft/pull/38
https://github.com/ryansteeters/Craft/pull/42
*****************************************************************
Wynkoop ********************** Count: 20 Review 10
Reid Wynkoop
Commits/Pull reqs: (21)
https://github.com/DSF256/godot-demo-projects/pull/1
https://github.com/DSF256/godot-demo-projects/pull/1/commits/488d1e4c1c7a979ebef9eb4ee2791c23458e0595
https://github.com/DSF256/godot-demo-projects/pull/5
https://github.com/DSF256/godot-demo-projects/pull/5/commits/0dfcae7b7c6976ca106525c3216b7145a5a5fe9a
https://github.com/DSF256/godot-demo-projects/pull/5/commits/cfa35250e1584715dc5fe70d7ded17d12459ca89
https://github.com/DSF256/godot-demo-projects/pull/5/commits/4372691af0876dae3a61f9b8273e931c62a4d061
https://github.com/DSF256/godot-demo-projects/pull/5/commits/a35497b8bfcd376cb020dbf505b189ec2cd2d69d
https://github.com/DSF256/godot-demo-projects/pull/8
https://github.com/DSF256/godot-demo-projects/pull/8/commits/ef2a80eab36ac83fbf95f1de56e1682164abbbb3
https://github.com/DSF256/godot-demo-projects/pull/8/commits/0f86cb184e6362fd4ac6034e582bd9455a26833a
https://github.com/DSF256/godot-demo-projects/pull/8/commits/0f86cb184e6362fd4ac6034e582bd9455a26833a
https://github.com/DSF256/godot-demo-projects/pull/8/commits/922b141af1bb65c006f382aee013ed7d5f171062
https://github.com/DSF256/godot-demo-projects/pull/8/commits/3ad6c52ef9f4f9784a8ec629374be4550da002fa
https://github.com/DSF256/godot-demo-projects/pull/9/commits/af04fb8b58c5fdd20aad88998812e1c1d6e257a7
https://github.com/DSF256/godot-demo-projects/pull/13
https://github.com/DSF256/godot-demo-projects/pull/13/commits/6b7f4ddd83de67068942d5ff7a21919e7067ea60
https://github.com/DSF256/godot-demo-projects/pull/13/commits/611f5c1abb10b99f5adb567508fcf01278b5f371
https://github.com/DSF256/godot-demo-projects/pull/15
https://github.com/DSF256/godot-demo-projects/pull/15/commits/cc071d2b59149b103ef971782a4cb8e1f7f31929
https://github.com/DSF256/godot-demo-projects/pull/15/commits/28fce0e0141b45483120c33cf47b1b2649f15f3b
https://github.com/DSF256/godot-demo-projects/pull/15/commits/082ab95cfb22b6cfe93e6ddb23f5aaa5d4e5d938
Reviews: (10)
https://github.com/DSF256/godot-demo-projects/pull/16
https://github.com/DSF256/godot-demo-projects/pull/14
https://github.com/DSF256/godot-demo-projects/pull/12
https://github.com/DSF256/godot-demo-projects/pull/11
https://github.com/DSF256/godot-demo-projects/pull/7
https://github.com/DSF256/godot-demo-projects/pull/4
https://github.com/DSF256/godot-demo-projects/pull/3
https://github.com/D-B-Cooper/jgit/pull/33
https://github.com/D-B-Cooper/jgit/pull/32
https://github.com/DSF256/godot-demo-projects/pull/18
******************************
<<<<<<Needs Reviews>>>>>>>>>>
Anderson ******************************** Count: 20
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/12
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/11
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/9
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/8
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/5
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/4
++Gavin Anderson, https://github.com/callmehgav/Craft/pull/2
++Gavin Anderson, https://github.com/callmehgav/Craft/commit/cf439fd16adcf741c4d6954a4128ec97a396253a
++Gavin Anderson, https://github.com/callmehgav/Craft/commit/85f0151f4c7ca580f537321d68ed483457419770
++Gavin Anderson, https://github.com/callmehgav/Craft/commit/59139559f32b08fa5e11b6178258b19cf6fea873
++Gavin Anderson, https://github.com/callmehgav/Craft/commit/093fa194e9b8790a89e5f690e5bf82c92ba5f87e
++Gavin Anderson, https://github.com/callmehgav/Craft/commit/62b436dc7730331684235c4f2495a69ff82ef695
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/5f3767bf2298c86840f27d3d0d37e9cbad270066
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/b18e40c8bf287f9674a755db757c7c9142578861
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/5ab13749b6290597fcb087e9d9b5d211af6295a8
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/89546fd8716396ac9d07522eac6f83e15a214c0d
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/59139559f32b08fa5e11b6178258b19cf6fea873
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/79ef4df26cfbc135a9b9c53fb5cf91b939953972
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/61c19477dab20ec5863e87d3e5295c38d4c61983
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/27fb9743688a1bce7dbad83b155a0fb0b4c54248
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/67523b08d13be310b24f66d6393d128e5cff3869
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/6f7b7ecd49c2865406a92b833564a92553d9e3dd
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/126fa13188c33b90338590d7f601640266268395
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/e58e1011805c14b5dfde75be33d988a8566e9d49
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/af665abb2d7737fcc177072f60dfc9dbec639e87
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/c4dbface6977cd78dafc17dfe34968328ddeeb37
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/e2d2463acbbf1ae1a241aacb0884df6739cd089a
++Gavin Anderson,https://github.com/callmehgav/Craft/commit/7bbec1acd85116831fefcdf6ed606bfa3e79cfcb
******************************************************************************
Austin ******************************** Count: 20
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/75bea4051fa6d7622870c2be05a537cf7c9badc9
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/f92a6d3fdd94da0c6992a14730caa12ec286ac73
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/94eb3000b1911e8c697853675dce9dcaf00d2bff
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/e362aad3b1a2d9fc7a4e1cd25b0a97107321859d
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/7104771dba4f3ef17888540bf7322a2dd2400ccf
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/a04f6099e296cfc754f7fba1cd1f3bb8883a96ba
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/19/commits/b9877fae3e86ce28b58823610ba849f0f9484d11
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17/commits/f35dad75789a5d350b966337ab6262b80a14e077
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17/commits/bcaeee2455a4176f34fb7fa828c05ffdefd488a0
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17/commits/86e1e2bf2c98d28face5532d7c803f9e742519da
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17/commits/cb3a12e46649be1cff519a761702bbfe858f03ee
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17/commits/e790fd4fe2e886d00df477fdacb9612c7ebe8c4d
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/17/commits/025cf4f7b80bab3b9d9f13436293175274b36b8b
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/bc29c4e35a2adcf1da563727695b876588573296
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/7e7e711803d2f497c8e367cbd66284e224fc3039
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/54c6a7f6d9a039afe2df25fa83bc70eeba2aea10
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/f3b3cfdad0d952ef803ab8fbf876a30fd256155d
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/19e9fb4add4a22aa8b9974b89382545d93040690
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/9155082d4436328a67d4d7a27ff132c998f609ce
++Caleb Austin, https://github.com/TonePoems/PyRPG_Mini/pull/13/commits/ca60aeda5c3a7a935df2c06525a2b8f8381da9d
***************************************************************************
Bagwell ******************************** Count: 20
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/02f13a948c373a2fbfb7130f2c5e41fd4fdb5d24
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/bf2f569231bdf2c71e4cef86556838501362071e
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/8b032c9160e8b15a7de2128189b08b467081d29b
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/8631738aebe1521f18cb4b1ed36341ba9692b43f
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/b080f5c488455b2ef45e254b857f5c08a068ad9f
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/f5372746d90d133e3b041414e6ffb7dbf0c0e738
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/83dfb585cc9b875ca3a34f33376442f1492ec155
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/4/commits/9c5935dd383292ac7cc8318a53d8f87be9b5a71a
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/5925a0802bfda048a6afec31476626a56cca6c39
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/0edcaa2a5585cbba24104e945f1cb006066c1927
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/810fb1df2ee58b6cd3b3dced948e3264663fcf95
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/74a873d60a3b5e5f3ea99fff9ed0f50735f69d4a
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/d6c7f3a289e50b26bc107c7649cb321eb005db06
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/9ac35e039982ca5db01c73f0c49b845a3711812d
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/6f481132a1985d703278e072621bc1fea88edfef
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/4e6c3021fa21ad1f9c4f8d297e916295b7a56f43
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/c2498a5565c58209ebbcffa6f108c99b1d2ce04d
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/147a7701cf8a2c7ed8bb640df92857c58e24cb19
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/3d69a0b99320173832f5355329fd31bb6b820881
++Mathew A. Bagwell, https://github.com/DSF256/godot-demo-projects/pull/7/commits/266e44d20b87f277538e6710bfe6bdd1307d0be6
*****************************************************************
Blair *************************Count:20
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/8/commits/0f54f04856d94a16d8acf03143aec2cb33770612
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/8/commits/d9042c08bb7b507fe5d45cb6186db0083c484272
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/36/commits/96ac2a2961eed7784ef43a6725badcfbc450b45c
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/36/commits/fb63f6cd063a286375d4bde6641216bd57e470fe
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/38/commits/cb552be7b135f7bd4cac065660efd95a9c5ad45f
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/40/commits/ccfe90978c50742abe328f86c2477e7ff4a1eaec
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/41/commits/f1221c49bb0999443fca845e80c7a9219fb8b3e9
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/44/commits/d3d03d0c0c22bcf41cbc2615553e138cdad31cc0
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/47/commits/9f10cf0c95b3a5339f628e95bb09f1257c72e1f9
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/48/commits/7a1d83b94361c4f78d5ecb5bf9dea3a2950ef07e
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/49/commits/1c8a1f344954943eaeb5e3ee5df07ec40d1233f4
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/50/commits/cfaa1203402a9f9656d82845d93ae8d517a8be7b
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/8
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/36
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/38
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/40
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/41
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/44
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/47
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/48
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/49
++Christopher Blair, https://github.com/MatthewHemmelgarn37/Craft/pull/50
*****************************************************
Chong ******************************** Count: 20
++Daniel Chong, https://github.com/d-chong/Craft/commit/a51d6a9174c95a066b289d508fc6d1f6f3a3f254
++Daniel Chong, https://github.com/d-chong/Craft/commit/a29c33944f9a4d31eb40b213bf3a4e3a9ad42acb
++Daniel Chong, https://github.com/d-chong/Craft/commit/c7909990645e4f1224c27ea982b0ec3a424847cf
++Daniel Chong, https://github.com/d-chong/Craft/commit/f0a6f4dcd11472ff8038a1d0d6995937b39835ea
++Daniel Chong, https://github.com/d-chong/Craft/commit/bb30030bebcbfe295584604ad235e1659c4eb542
++Daniel Chong, https://github.com/d-chong/Craft/commit/4383928018a510fce4f83627aed1d0bfd1c59e7c
++Daniel Chong, https://github.com/d-chong/Craft/commit/5ab5c3e94ffca5e9deef6d2c7398b6a7ddb77ff9
++Daniel Chong, https://github.com/d-chong/Craft/pull/7/commits/61a916ea46090e2e4071c6237e2c691d4d1a69fd
++Daniel Chong, https://github.com/d-chong/Craft/pull/8/commits/1ce3585f0f4b5194fa2ac118d6e4fc87cf816004
++Daniel Chong, https://github.com/d-chong/Craft/pull/8/commits/014502d504805ee73245eb4cfb39aedc8421ed52
++Daniel Chong, https://github.com/d-chong/Craft/pull/8/commits/173d9d7bcfe1cf1b9cb2d5932415d90986271c96
++Daniel Chong, https://github.com/d-chong/Craft/commit/97d2f610e17c78695f8454e27805ac83c54d9ba2#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/b756e30a4eff7ba9dbf29c78e3acaed38845df24#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/57e0390e9c43a608e72598f420d389844a78d12a#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/b18e40c8bf287f9674a755db757c7c9142578861#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/4bf0207ba88c1f1b0b20037a329bdfde7a9427c9#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/036c36018c88acb5ed6068a36f1476ae65635919#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/e507284513e487d41f1903b41ed41b2c6d8579c4#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/81d633b63caa6b2669aa031e75c4b16940513dd1#diff-25d902c24283ab8cfbac54dfa101ad31
++Daniel Chong, https://github.com/d-chong/Craft/commit/469341b95a7225068953b274db5d5d14d82d2720
*********************************************************************************
Confer ******************************** Count: 20
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/2/commits/f115ec34bd8f4240c5db24872bb1b3f4f5e7f2ff
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/5/commits/cc82b746d49f2096faa22c14a05413e51e9c6453
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/5/commits/a6f68919026a2f08d3c48a5554c539bd5c932794
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/5/commits/72acd185efd2891a6618a666e78260153c30d18e
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/13/commits/bfdc417e0901a869b9ff07196fe021994728833f
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/13/commits/93b1277151c22efc459cd2cadbb61687fd78b826
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/13/commits/f895e3d97cc9dc478513970bb5eab7a42d6b4278
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/13/commits/55d20fef74b6be10f79e00a2732a684a176a9d6c
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/13/commits/0c0bae945c9b989348d8befa472c3e7fb5d22dc6
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/20/commits/de491ab4cc27a0f11dea7d50b2a1f338590f3552
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/20/commits/15599a87e9767b0de0b57bc31d2a9cf035bf80a3
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/20/commits/cfd448b22495c2c5ee4edf8a67800534acd71363
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/22/commits/10a0f4a6b092843da484cbb95ed62f6835c99ad8
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/22/commits/d8d60878385213fa7cbcc2f9863cef95e0a40430
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/22/commits/543a065215f92e55e7e310a88a19fe16ad3ce77a
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/22/commits/cc3f78cd081dc0fe73e16940725f326683047725
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/23/commits/954c961e9e96266a527694995e73afcbc59c7668
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/23/commits/d420b935d46f1c7e780666d1d3681b94f3841983
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/23/commits/a7411eeb0a237d0e14ca50d720650240be4ca327
++Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/23/commits/f31178e754f2b4376d7898caa7089aae55a3afae
+ Pull Request Review: 8
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/4
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/7
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/9
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/12
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/14
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/16
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/18
+ Jonathan Confer, https://github.com/SenatorConfer/Turn/pull/19
******************************************
Comendador ******************************** Count: 20
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/c7e9eac35854143149f9c9b4b8323e0d3d781b4d
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/638b3854192ec446802b448e988e41e9e80f7dfa
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/a8122b10ad47acc99f03642806c0b20c9e21cb63
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/ca739e3486e8e5c8783f223325e0c042b177332d
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/ce2e95fb7fd13946336c4db0076bedfae8766cfa
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/ca4c4753c5c4d97f6b78f2c668064aa7e32fcc15
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/9dad7c8713f3174c42e9013262c8d3339053ad17
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/d5a5e650d03b72a2c3a82a3967395bc29fb8adb6
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/2df7222da4a692e4fc46d9dca6c696ce885efde8
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/e47c47daf2fc24f805c84d587efe93d542914a09
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/a604c2cb28f76e0a311b774a3f73a6a1b12fa522
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/efd55f2c2093bfdfb57a17e99ccb49305f7f23e6
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/pull/11
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/9a539cef199d8320ae0e42bb561eca93dfb2caf8
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/3941e4169040af8d78f3ad89918e17512f09462d
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/1272943d56834752c53bf0064113c43df424d2d9
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/8b821da6b3666c2e5542a0a947ff39e11b707c16
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/8e951d58a9a1c0ce55deb063bfa2d586190f215a
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/commit/73a4483d83505bf4aa501d3d5482696b1252bf08
++Nico Comendador, https://github.com/OGWeekendWarriors/calculator/pull/13
*************************************************************************
Covault ******************************** Count: 20
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/15
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/29
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/31
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/36
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/37
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/15/commits/df2b221959dddeb400d445637e1d8c8361a2c1bb
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/15/commits/9a8fee78fd0147ea4632dc5d09728595a550db14
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/ec006a27bd8c9fbc1f381f830d9e2e884d2179b7
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/54568ecb83d4d234d977debdfc55c0b7270a220d
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/f1c06414f0438ea6ad109683351c6c181e2b9142
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/fc5b140df500a9cfb0adba62e9a15aaebe1ad958
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/7ee8a3a3362d8dbb7b198339e5aa9bf39c51b62c
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/67a4e9b3602046891e01d111c224200ac2258a4b
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/67a4e9b3602046891e01d111c224200ac2258a4b
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/e8cb336567a2022e5be6ddf7e6b06860a86221c5
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/a0c00e96717889481f8b5033341ce8dc2def7fc7
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/c05c6c53ce22bbade23a687ed446e57a573b3fc1
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/21/commits/be7901a1277fc79edc7e6c21d63297c8d6e4fc8c
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/29/commits/eb86edb2b4208763c78d173bbf57bf63d5bc8630
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/31/commits/41b44f90987cc9fb5255ca51d083678a90b60631
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/36/commits/3950332fae198aee34d7137a2b2c89a39686bac1
Spencer Covault, https://github.com/CEG4110-group14/boot-games/pull/37/commits/1f7873a08172ded65bd37df6c403f0bb9e1f8e55
*******************************************************************************************
Ehlinger ******************************** Count: 21 Reviews: 4
++Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/5c8178fe9775aa498224fdd45161f5c0336d5d01
++Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/3a61180230af69a9e0bbe901489035372e999725
++Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/a9e16e3f5f1e4c42bcbc524ea343173dcc2416df
++Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/40e2c5bb7f4b20b3760a2d47b079bdc101b9fc45
++Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/9
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/1b5568b3f5cd68defe992cc868a183c868663a6f
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/b93a3a1f001f7e09820dc19a9ff1e97fb2b96326
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/e9ed21eed2db0d2f311e9c3199f20d74c5b2b56a
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/ede4e29494152be92bdeadb2f5fae0a0a8fc1b6e
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/e3ae0b72c40d49dcf61708f13adbe3233449f069
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/380cddc297640102418d77dbcb59d64034e6a54e
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/bbbdb98cd3f40fb7435cef88c18ebdb582461113
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/a19ca7d012f9c929f442293ed2c3180122403789
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/fd57179cc2988749b301dbe25adb85b35d38034a
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/ee3341db438fce2017d8f38e0f008f12204ca47c
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/3ed48b23cf3171ef7b86d7a8f6718e295ba72f67
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/83385f7b96f948c8af7e1453f9ba16ea4955b28c
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/b0f6c6460793e45e4a495ddf95a1980291ecbe56
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/0456cc619180e9de27a726d2b4c3ef9db7c3606c
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/commit/9a1506283732195acebf2d2a77d1fa893a10481c
Joshua C. ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/15
Reviews:
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/7#pullrequestreview-389629943
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/11#issuecomment-622465436
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/13#issuecomment-623178118
Joshua C. Ehlinger, https://github.com/OGWeekendWarriors/calculator/pull/14#pullrequestreview-404673811
**********************************************
Eyongherok**************** Count: 20
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/14
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/15
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/16
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/17
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/18
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/19
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/20
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/21
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/22
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/23
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/24
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/26
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/27
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/28
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/29
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/30
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/31
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/32
++Brandon Eyongherok, https://github.com/MatthewHemmelgarn37/Craft/pull/33
*********************************************************
Farmer **************** Count 20
Harold Farmer, https://github.com/NicholasChase/primitive/pull/37
Harold Farmer, https://github.com/NicholasChase/primitive/pull/35
Harold Farmer, https://github.com/NicholasChase/primitive/pull/29
Harold Farmer, https://github.com/NicholasChase/primitive/pull/27
Harold Farmer, https://github.com/NicholasChase/primitive/pull/21
Harold Farmer, https://github.com/NicholasChase/primitive/pull/19
Harold Farmer, https://github.com/NicholasChase/primitive/pull/17
Harold Farmer, https://github.com/NicholasChase/primitive/pull/15
Harold Farmer, https://github.com/NicholasChase/primitive/pull/13
Harold Farmer, https://github.com/NicholasChase/primitive/pull/10
Harold Farmer, https://github.com/NicholasChase/primitive/pull/11
***************************************************************************
Hijazi ************************* Count:20
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/c41f6ae4ac81966ea2148bacd3afd0493b787fcd
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/02733f3c67c20d8860512accaf018f69b2733702
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/2f8963bf315523d521ec38c7cfe286ea1e2a2c44
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/9daf4ab6e8d4d57bdb502c95c1a9f0d77e6ccf62
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/24545b7dacee3b2df924bde502838ac090792a1f
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/f187a6ab607f81503835cb070b768d1a9f71d638
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/aba1e871f7c09a1afc319ea1d54c519c780acb74
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/d1ff031e2fa8ba7e0abccda41a75932a86a9bc8f
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/91eed0c673e893bf41b5e40e3113fa4d275488e3
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/e8d70d6f6a90099bf96e652043dfca0098fdcf3c
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/ed32778a623e54a104d6ac79ae482ae1404aa88a
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/325e6c7436d91e2bbdd39882000687152c2773a7
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/fdc6ee24b6ae991b2675489c3dc1af7bffcc4df0
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/ac60f72d79ca0dd431893665ba8f71d2d6f642d4
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/d69a124f8b2c41601cd71ef3f0cd7c758d4e70cf
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/06d1ddf782300c3d462c02621923af0a427498f4
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/8f35d15744387595925c69c02ee4d31e8cad9fda
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/commit/19f0eee9f34f1fbee7c767a27964eb15be1f920c
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/pull/22
NourEddine Hijazi https://github.com/TonePoems/PyRPG_Mini/pull/16
******************************************************************
McFarland ******************************** Count: 20
++Nathan , https://github.com/iNateDawg/Craft/pull/2
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/9
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/11
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/22
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/23
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/24
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/25
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/26
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/27
++Nathan McFarland, https://github.com/iNateDawg/Craft/pull/28
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/af88d6462c069143d6dc8e1a6ff5df69e33e6061
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/5b248212d5a0f2ad8b8d0c1483a42191f38da589
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/9d4925654001c078e3e30c4c4062fb463d2c7acd
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/93935914a178b67bc23e9d6f7b934b95d6f8dc3c
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/55862528ea616dc214698bf9e0bf34cb43317020
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/d6ea7aee7b08f42b088c36d8faaa41b023f8069b
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/1d763d452a915690f42a8c9dc0656b441be69310
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/9b2c0105c6f15a729a719ee7ede91ea03e9130c9
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/acbda0199b6f67ac1dcf6722cf1ff16c4e242ba8
++Nathan McFarland, https://github.com/iNateDawg/Craft/commit/c97d93f3db0cfcba657c1e45acd5a307c718de7b
******************************************
Mitchell ******************************** Count: 20
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/70020e881c6ffa33a13c1972b845b1a5d748ec62
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/9018a7dac5156c272750a6e5385f0457fc94efe6
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/dd824f3da4f1506a2574d8dba38a5a182835c0e4
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/cf1eb85c61183f8fb688e4a7de652a4dde61666a
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/d61c912ac43506dc368c46b06b5b5fecf8912ab0
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/f62e3d59192f668c98c30d0935ae220e673a2fde
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/2f9b0988564bb1109c2f515500ba8ac9ddf371cf
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/9280dde8c4279b861a95841f5b0d0e4998a4473c
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/f92388c2e2996e3ed0bfbacc9f7e965cde98e217
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/ab8e37bb73c92bdd52d20eefd3c31383e82799bb
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/c44840f6f5c71b5274822bd14cf739c225d4a51b
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/5ac1ba045a51092e4cfbb910d5e745423651aed2
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/pull/6
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/0fd6cf361e221b273d70d5a3c2fbd097d4492e04
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/6e8ad0d6c5b8b450a44135e58a60d5afbfdb15a7
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/pull/8
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/2f3bc733a1ab9dd8df6edb712aaad98fe748ef4f
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/f7afb63d1a009cd76e62f47fbccc012462877175
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/commit/2d9fa23a35bf578d26a01ef686e1911733a8dc8a
++Anthony D. Mitchell, https://github.com/TonePoems/PyRPG_Mini/pull/12
******************************************************************************
Noonan ******************************** Count:20
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/58fc03c1a605b13e9d4b29e23de05c4bf68bcccc
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/b0073ee073b8ea0accfbd68e97df95cff35d3ecc
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/48a0d7b86ec235e148584fd4f2d42ae74ac7f15f
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/724de7e7bdcf1b26b3cfd37c5fed14622ca08574
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/404736d3dc797159645de33e3be47ab169b700e1
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/7cb2c2dc87012a31b14c38bdab3d34611aef0250
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/49f1ec9ded8036050c370fe95ce245568a273d84
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/cda9c56701eb1b8f7256bb3d703ca19ff93916f5
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/f3cb5b8f4f9b57673cc6a9b72b862d7b39202f52
++Robert Noonan, https://github.com/robNoonan/JAdventure/pull/1
++Robert Noonan, https://github.com/robNoonan/JAdventure/pull/1/commits/a04cf7c9ad899699676aeeabcc291181dcd77ee9
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/b0073ee073b8ea0accfbd68e97df95cff35d3ecc
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/97bb1f9ab3187da20aba938415a7dace5db36834
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/44d5dcb175a64c79a5d1cb82adfec5c7876b8292
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/251bae6f0bec0a93ded79eeea9bf33ff164dc3e7
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/56ce19acd3f40088f5b26eed2dc83f706cacebfb
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/e718a527da9ade34eb38c2e29d226548828862e1
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/e718a527da9ade34eb38c2e29d226548828862e1
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/b1a0e5cc8a336aa39ec120f344904a01ef26fdb7
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/ab403fdd1c868933bdbfca55c326f1110e25b146
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/125a857ce1537b0fc8c3ef818b6b95d4cf69a7eb
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/47cb91963e8eb03b18ae5211896fe28c6bfb2860
++Robert Noonan, https://github.com/robNoonan/JAdventure/commit/73cc73bf0bb638436d70a4d9b782ae249e035ef2
*********Pull Request Reviews******* Count: 10
++Robert Noonan, https://github.com/laurenceforshaw/primitive/pull/4
++Robert Noonan, https://github.com/laurenceforshaw/primitive/pull/3
++Robert Noonan, https://github.com/laurenceforshaw/primitive/pull/2
++Robert Noonan, https://github.com/laurenceforshaw/primitive/pull/1
++Robert Noonan, https://github.com/Turah09/Craft/pull/1
++Robert Noonan, https://github.com/DSF256/godot-demo-projects/pull/2
++Robert Noonan, https://github.com/DSF256/godot-demo-projects/pull/12
++Robert Noonan, https://github.com/DSF256/godot-demo-projects/pull/13
++Robert Noonan, https://github.com/DSF256/godot-demo-projects/pull/15
++Robert Noonan, https://github.com/DSF256/godot-demo-projects/pull/16
***************************************************************************
Pettit ******************************** Count: 20
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/13/commits/3d2106cec038a5d63830f9c1558b67e7a2780619
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/12
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/12/commits/73fe1fb3e566c1e4ddfbe2c0d405a51487d99f1c
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/12/commits/1ef9984139195450a517cc357d00ec03308ff084
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/10
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/10/commits/e25e2a97c864ffeb0368c4ffbc782dd54760a406
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/10/commits/855324b0e3c7f8dee97176d63c9ba2e5856e98e6
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/3
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/9
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/13
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/14
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/9/commits/34581e0a4b2b411a5ca30eaa6965774e77ca3d0f
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/9/commits/947c3afd06c1e9fcc0161994105997e25d46f57b
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/9/commits/764909200025fc14855fca81a419aad67c38df63
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/9/commits/c424e41bb832298bbd07646256583e78eefe49f9
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/10/commits/138f151e25530be3c3c3842e4d6feedd3242f8f0
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/10/commits/14c249885d4701df9f3026f9b37eed3325e61739
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/10/commits/e5705232d750a1488d181bfa9491a6945ac6064c
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/14/commits/a46e0d6ace9ddda4d61dd861b8a9b8afd7813a81
++Ryan Pettit, https://github.com/doorz1009/teeworlds/pull/11/commits/9a35c8a998d1afbc88e90c4320d773f289d5e936
++Ryan Pettit, https://github.com/swartzy4/Craft-1/pull/4#pullrequestreview-404268943
++Ryan Pettit, https://github.com/swartzy4/Craft-1/pull/3#pullrequestreview-400547789
****************************************************
Price ***************************** Count20
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/17
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/17/commits/e483e68ce3617f8e0f76bde9bc16e53f7d67afda
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/17/commits/617f16505354ce90bdb66cc7c3b9bce201e6f2b1
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/17/commits/9d54994ca4d3eee3bccb854a94fd43233976a802
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/17/commits/ed1e27bdba7082bdba4005e2aea5b4d82cd9d194
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/30
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/30/commits/38d97b6abf743e0fe6935d669e9450d6a1dec4b3
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/30/commits/ed281e03989128b8cfcf6d50ec4c06a2968aa7ba
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/30/commits/62f3487c111d33fc7a3debd2ec4a7cb2abffa793
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/30/commits/eac521e9c081f2efe98e18a901c1dbb3fa3a7cd8
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/32/commits/904c0fa457423b69bd57874f39907c79f470ec00
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/33
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/33/commits/648806c2c58e206d3307f5cfa1a5188466aa4ed9
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/34
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/34/commits/eadbebd5964c6d574394511e8c60515ec1de588a
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/35
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/35/commits/2ad5293330d5ac163ea86ee0970f95cc5974b227
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/35/commits/3dcc0f1782f847f0a0b61121ad13b1e2a97c1848
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/35/commits/83aabf672a375b591a36c7142e0c966ca362b63a
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/38
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/38/commits/45da3eb45ce387ca0b5ab6371a0ebaad92d0ae63
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/38/commits/672780236f7fc03b398b85330a119ff95e61b998
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/39
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/39/commits/f66012f7af8cd3337a77ffdc00a66a032ee04700
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/39/commits/028b03f57ecd75964bb07e060f9984b876f1d6fd
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/40
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/40/commits/ddb380bdb56b34ef138e10ae91bf58ac4bb5d3fc
Nathaniel Price, https://github.com/CEG4110-group14/boot-games/pull/40/commits/03217a57d71e36b1e44bfc6c156dc4bbd752b8d6
*********************************************
Richter ******************************** Count: 20
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/4/commits/a740f9b61d4ea3057a97645bf5fef41818cac081
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/4/commits/3a1f2d875bb09d5e1b7be1eb5311a743fe0f965a
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/4
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/7/commits/d48d8a197e4ed777adcc00bd690c8e056439b774
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/7/commits/3601df06129a68b438d465bc41e848511959d218
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/7
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/9/commits/b784a80aba65a6a4c5f736a22302f0857e30c128
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/9/commits/d465cd9195e0d49b3788dc5dbf392265904bee69
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/9/commits/2db457dee38bc5ea55f487ecfd2e4528fd291762
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/9
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/12/commits/928adab04bbf966736aee9c63583a6e912b9fb2e
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/12/commits/d6979c4859ea6a2408a6bfd83acd93aa30661919
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/12/commits/b45432d15876667d1640b24748604f7086af447f
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/12/commits/03a07a72695f028655863b3b8347cd47632c9236
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/12/commits/f907404d0d38f8cadc82330f72fe353b2f4f7191
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/12
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/16/commits/9a3516528b0d8ede77b3338d88028808a116b8e4
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/16/commits/c06826c4841549cf78670eb19a51c1a973defeed
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/16/commits/3b85882c2fd394dec315d126e91fee76662f1e2b
++Hayden Richter, https://github.com/SenatorConfer/Turn/pull/16
Pull Request Review Count: 9
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/23
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/22
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/20
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/17
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/13
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/8
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/5
Hayden Richter, https://github.com/SenatorConfer/Turn/pull/2
Hayden Richter, https://github.com/SenatorConfer/Turn/commit/5cc62f5b70e7289cb408dd3386d7d99f4dfcbde2
***************************************************************************
Roberts ********************* Count: 20 Review: 6
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/f7a70001628f651e162cfb5efde4b41288990e8d
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/928a6cd18389fd8a4c2aa2a97840aa497a16e4bc
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/19ad45221862067b8e16ba806a025c4640d09f85
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/ab43ee7849c0fb704e9823b8ae3f8d359fa5d09e
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/e8225bfc8ffdceddb23af920be237dd6ab378aca
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/bf184f31b469549d291108d649b2f9ddd4fa49e0
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/ee62c5eaffec4c6495dcda450f5da185b186978a
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/47e7ee355ccf0bfc54f8c01ab53320f506e46fa4
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/5f443aaf88023025597148d6720add4fcf523043
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/68677e056cf794c05955cff45534cfd2ee394437
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/92188e013cd949b15d14f1d721b0e88efb448c80
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/77b05528018ebf21e3a33420da8407ee74957354
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/9069558d283f76fd26bdb90972e3784ecb2c2a05
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/ec6bb33e1c43205b78b049cb9df0407a313d0df9
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/82a81f4cbeffadea09926a95c31787ea99c0cd8b
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/78ef88eadaefe7bea1b24d76a555649bfccd6e50
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/be85bd1684d1a0f482b60a0bee2a5d5fa6659d95
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/f6c14b96e62ed77729c78effa3a208138f9c7a1e
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/dbd2df30fd8bf5903b6c9d30267ce3f64c2eb068
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/commit/ebd51cc0d98a7071035a4fdb79d67817b609f291
Pull Request Reviews
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/pull/7#issuecomment-623192155
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/pull/9
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/pull/11
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/pull/13
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/pull/14
Austin M. Roberts, https://github.com/OGWeekendWarriors/calculator/pull/15
***************************
Salyer ******************************** Count: 20
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/77f71de8401607b0fde7dfc02bb31031b110f268
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/a9d37769d22176bc104018ad69e8c39c69fc68d4
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/e8da687e4cdd41233fcda0ddc2f0740ad4c42cd2
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/1beb904e758372726bdca226dfa83ad9f4cf8c06
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/498a0f1f65ec8b2e9868ca29b62e7c8b3544b533
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/4ff3a5226b3db05f0573b031475bf61df35041dc
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/d3c839ca116ba428611a38ada08faaba37d27c4a
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/36cd3c898c4bb68749b22c5eb585dd30ab74d071
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/37096ff8b58c76eaf52e5bd16d710f3a1bb93570
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/7b8171b62511e519f1fbe28ce552871da859158f
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/f9623ed786a55be8b29cfd4c06467f376a910f6c
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/0ef9cb3b70d3d1fb691be67df914be26d6c05baa
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/7835d3319d82e188d364e1f18df6c73d99412b3c
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/3d9af18dbd95fb2e10c850000d3b0847ed9a0370