forked from NinoMirtskhulava/CEG4110
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Urls to commits
873 lines (825 loc) · 71.6 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
All done ************** 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
*********************************************
All done ****************** count 20 review 10
Commits/pull requests (nadamswsu and n0dam are me): count 20
https://github.com/ryansteeters/Craft/commit/8cff5f7be12e9847ef9909ddcd02b847e6a57550
https://github.com/ryansteeters/Craft/commit/37f74c007d3a67d6f045fcf6edd6eb362cdd7454
https://github.com/ryansteeters/Craft/commit/c5bfdd17c583d3d9abde27d84eb68edd8c941a25
https://github.com/ryansteeters/Craft/commit/7ea5cbcbe9f978dd05edf1f8a0899604e27726e4
https://github.com/ryansteeters/Craft/commit/f384c3b737d9253d4aba35893b07fe5d935fb046
https://github.com/ryansteeters/Craft/commit/35964be64623152b54e955116a089729f7b218d0
https://github.com/ryansteeters/Craft/commit/a7affe1b85d5a2a69895780bd56836cd0b4c79c9
https://github.com/ryansteeters/Craft/commit/cf0d19f9df9e15166daffdb651d060cfe0b04c41
https://github.com/ryansteeters/Craft/commit/be8aba91d78f09535c3226189a40524dac9d2ab6
https://github.com/ryansteeters/Craft/pull/28
https://github.com/ryansteeters/Craft/commit/c0b888f116b2ffd26ac3a3788c522a1f57333b7c
https://github.com/ryansteeters/Craft/commit/d4388efe843f1e9955bbd6a8119930639b31a3b3
https://github.com/ryansteeters/Craft/pull/31
https://github.com/ryansteeters/Craft/commit/7fd950201e60ee0c83dc8b3958ba24c010ac306c
https://github.com/ryansteeters/Craft/commit/1450281a227f739c86c816ef6b0b38485e211578
https://github.com/ryansteeters/Craft/pull/37
Reviews (nadamswsu and n0dam are me): count 10
https://github.com/ryansteeters/Craft/pull/12
https://github.com/ryansteeters/Craft/pull/21
https://github.com/ryansteeters/Craft/pull/24
https://github.com/ryansteeters/Craft/pull/26
https://github.com/ryansteeters/Craft/pull/34
https://github.com/ryansteeters/Craft/pull/32
https://github.com/ryansteeters/Craft/pull/30
https://github.com/ryansteeters/Craft/pull/18
https://github.com/ryansteeters/Craft/pull/17
https://github.com/ryansteeters/Craft/pull/33
****************************************************************
All done******************************** Count: 2
++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
***************************************************************
All done ******************************** Count: 7
--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
******************************************************
All Done ***************************** 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
*****************************************************************
All done ******************************** Count: 23 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
**************************************************************************
All done ******************************** Count: 22
++ 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
*************************************************************************************
All Done ************************ 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
***********************************************************************
==========================================================================
Pr. Done *************************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
*****************************************************
Pr. done ******************************** 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
***************************************************************************
Pr. done ******************************** 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
***************************************************************************
PR done ************* count 20
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/1
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/49e15044aaa552bac78d27578e89653f73fbe6f2
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/2
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/7824041d5b05cff9aac1d6e0bc9fc9fae0567b09
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/3
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/b776507bcc357ab92c000ea6062abdfb9c5befa9
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/4
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/3a2da0dcec405690c9ea1d4e23bfa9546ced338b
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/5
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/ada2794f008ba3d9890e8a8435fe44b9a85e0b3f
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/6
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/93a8832353217f0f1549d202efa65f1df6c440cb
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/7
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/a4c8e86872d333f3d7dfd1cb88915a102c72544a
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/8
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/88d2b772adc1f401f5e41eabd084efe5672f67a2
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/9
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/3ce708a3175a245a2ff71fc7ac395d121db01dc8
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/pull/10
Keilyn Williamson, https://github.com/keilyn-will6/Spades-Game/commit/e46dad09071791e677fcae801849c70a54829be9
**************************************************
Pr. Done ********************* Count: 10 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
***************************
Pr. done ******************************** 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
******************************************************************************
PR. Done******************************** 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
***************************************************************************
Pr. Done**************** 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
*********************************************************
Pr. Done **************** 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
***************************************************************************
Pr. Done ******************************** Count: 23
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
*******************************************************************************************
PR. Done******************************** Count: 22
++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
*****************************************************************
Pr. Done ******************************** 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
*************************************************************************
PR done******************************** Count: 25
++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
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/commit/5f047fbd31503b156a2c39149ec67350d618852b
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/27/commits/8cc75f08efbfe609d0e413338cc95542326fd4be
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/9
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/10
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/13
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/14
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/16
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/18
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/19
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/20
++Brett Salyer, https://github.com/CEG4110-group14/boot-games/pull/27
*******************************************************************
Pr. done ******************************** Count: 21
++Nathan McFarland, 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
******************************************
Pr. done******************************** Count: 22
++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
****************************************************
Pr. Done: ************************* 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
******************************************************************
Pr. Done******************************** 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
*********************************************************************************
PR. Done ******************************** 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
******************************************************************************
========================================================================================
Pr. Wait******************************** Count: 14
++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
*******************************************
PR. wait******************************** Count: 18
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/15
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/15/commits/a21f6adf6c2795188884cf7158ce670adc5485be
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/15/commits/71f432115d26c96110a5bd3e332207851b8da6f1
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/15/commits/4849016c15d8d22f466c721e2e47e6a41322b000
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/15/commits/089f11fb9682c62bd7fb0c7403d5d1189a024ac1
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/15/commits/f6e16e9b26164674849d92f78e88d0281b327253
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/18
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/18/commits/aa23ea38142a5b9784ad8af185bda7e7c55e63f2
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/18/commits/f6607b4ad72aad0f53b3b5cf61fcffdd71122009
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/18/commits/dd59a693f910b871eb1afa404b6b3735f6bcb0c6
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/18/commits/43a4231982cc2a2f2565ff4716840ed3a624f97e
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21/commits/cedf6463865e357a9dd9f9266ef19cfb3ee3acd8
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21/commits/bdbde3f40987bb702b2c8385e78d9d129a1243ca
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21/commits/49ca78af7ad8b7f32d464861fba65fc0066e0c71
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21/commits/c8aedc0095d7f6e4c062c14ea11db7bcc75b5367
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21/commits/4e3c0c8a74cef769c21ea4a40c7bd7fbe94cae8d
++George Brown, https://github.com/TonePoems/PyRPG_Mini/pull/21/commits/9604342037287990c44869218af7955aa8152c8c
***********************************************************************
Pr. wait ******************************** Count: 9 Review: 3
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/759c2dd508288b012b3b08dc0e5bc8cec3b8e9a9
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/f3929e705455679b51b2da5177d97b6281c01676
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/d33172146a4627019fbdf2d6d8a5def84db674fe
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/f055e799df53390bb595e508ff741c624de56797
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/eae0cc8befddf9e4eb4cec96ce17738a43567275
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/1c49b232039d71ebd9723431e72c23879a47fc6f
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/d3b49e93cc41bd51645f8723fa81fb15637c8a3a
++Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/7/commits/d876af6f94381e463811a13babb37284c0b9278a
Jared-Gibson-commits
Pull request reviews:
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/9#issuecomment-612691235
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/13#pullrequestreview-401413403
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/pull/11#pullrequestreview-401375447
commits:
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/commit/3fd711f4df15fcab7ebb0bd43d1d817644864fd8
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/commit/e343dfd0708224c041f1f662006089dc4846781f
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/commit/75149056d0c3dc1c51cfacad9f8d7a0cd0304b81
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/commit/ec4c6a655fc86e08833dc3771e018f6e69e84083
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/commit/c574a48a46471e3cb81420cc3a891e5b4b6f700e
Jared Gibson, https://github.com/OGWeekendWarriors/calculator/commit/d56ffffa374d32c7f69bab1a3be82247c1636240
********************************************************************
Pr. wait ******************************** Count: 9
++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
**********************************************
Pr. Wait******************************** Count: 8
Jimmy Lambert, https://github.com/ryansteeters/Craft/pull/4/commits/6f9c86ac5abd0ef07efabb6bf1ca1c35fda86c2c
Jimmy Lambert, https://github.com/ryansteeters/Craft/pull/17/commits/123645c6bf2077ea2f99e4d13e28a58efab6f907
Jimmy Lambert, https://github.com/ryansteeters/Craft/pull/25/commits/3cf4d166a65281819da710fa8b5fbecf84463ae4
Jimmy Lambert, https://github.com/ryansteeters/Craft/pull/26/commits/1185d34afd496bb6e0acccbc00c3d2e62882b074
https://github.com/ryansteeters/Craft/pull/4
https://github.com/ryansteeters/Craft/pull/17
https://github.com/ryansteeters/Craft/pull/25
https://github.com/ryansteeters/Craft/pull/26
************************************************
PR wait******************************** Count:5
++Ryan Vieu, https://github.com/swartzy4/Craft-1/pull/3/commits/44fbc388d1ddf4ad3eb17128cb41d95a22c5cca7
++Ryan Vieu, https://github.com/swartzy4/Craft-1/pull/3/commits/d4723ea71c0649b27039d76d8b8b762457ec0c03
++Ryan Vieu, https://github.com/swartzy4/Craft-1/pull/3/commits/eb4c0f9555206fb36d8e5b7a664b193dd56044be
++Ryan Vieu, https://github.com/swartzy4/Craft-1/pull/1
++Ryan Vieu, https://github.com/swartzy4/Craft-1/pull/2
**************************************************************
================================================
******************************** Count:
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
*******************************************************************
******************************** Count: 2
++Abhishek Pandya, https://github.com/Abhishek3098/Grocery-App/pull/13
++Abhishek Pandya, https://github.com/Abhishek3098/Grocery-App/pull/15
*********************************************************
********************************
Final Project link for Caleb Austin, Anthony Mitchell, Nour Hijazi, and Andrew Brown
https://github.com/TonePoems/PyRPG_Mini
********************************