forked from digitalinnovationone/dio-lab-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreturn
More file actions
4879 lines (3251 loc) · 156 KB
/
return
File metadata and controls
4879 lines (3251 loc) · 156 KB
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
[33mcommit 15d516c3d3b42a2beb6c138dc22fa398e57dfdae[m[33m ([m[1;36mHEAD -> [m[1;32mfeat/community/fernandallobao[m[33m)[m
Author: fernandallobao <fernandafcclobao@gmail.com>
Date: Sun Jul 30 21:09:51 2023 -0300
feat: add fernandallobao profile
[33mcommit 9cf0b4181d9458c55dafd9188628579c29aca76e[m[33m ([m[1;31mupstream/main[m[33m, [m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m, [m[1;32mmain[m[33m)[m
Merge: 59fe046 42a08d9
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 26 19:15:44 2023 -0300
Merge pull request #368 from hudsonfarias/feat/community/hudsonfarias
feat: add hudsonfarias profile
[33mcommit 59fe0462c892fd267c37fb7b56c29245de09c607[m
Merge: 812da84 ba87f29
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 26 19:15:22 2023 -0300
Merge pull request #367 from jeferson7717/feat/community/jeferson7717
feat: add jeferson7717 profile
[33mcommit 812da848bb42a5d08141c58d5234ceb4a4a7948f[m
Merge: a1dfe8f fe4567b
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 26 19:14:14 2023 -0300
Merge pull request #366 from LuisCrespoDev/feat/community/LuisCrespoDev
feat: add LuisCrespoDev profile
[33mcommit fe4567bcf85fb7d5d6d74f0dc8d438e209e54a7c[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 26 19:13:07 2023 -0300
Delete exit
[33mcommit a1dfe8f0ef1c2d991ebc328dc646a623e924b0ae[m
Merge: fa47999 f5182e2
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 26 19:12:07 2023 -0300
Merge pull request #365 from Y1zz23/feat/community/Y1zz23
feat: add Y1zz23 profile
[33mcommit 334807808daf10f244acedbbf6baa1a1dc584b11[m
Author: LuísCrespoDev <luiscrespodev@gmail.com>
Date: Fri Jul 21 21:39:02 2023 -0300
acrescentando exit
[33mcommit fa479998e038a045a811f8313a90cb542d0477a4[m
Merge: 99609d4 9a9cc1d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 21 17:11:31 2023 -0300
Merge pull request #352 from AngelOttoni/feat/community/AngelOttoni
feat: add angelottoni profile
[33mcommit 9a9cc1d2cf2e8760c8d540e580e6e38b2a4d9f52[m
Author: AngelOttoni <angel_m_ottoni@hotmail.com>
Date: Thu Jul 20 15:51:11 2023 -0300
chore:img folder deleted
[33mcommit 239cf6a4d84e117bce5e7dddc3e1921d60b8eae1[m
Merge: d4537e8 99609d4
Author: Angelina Meiras Ottoni <86311687+AngelOttoni@users.noreply.github.com>
Date: Thu Jul 20 16:04:52 2023 -0300
Merge branch 'elidianaandrade:main' into feat/community/AngelOttoni
[33mcommit 99609d4507973bfa229eb6d66b519fa078017822[m
Merge: 2505716 6143aee
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Jul 17 08:53:06 2023 -0300
Merge pull request #364 from vaolvi/feat/community/vaolvi
feat: add vaolvi profile
[33mcommit 2505716af0ea561d1f5e3787ed9f67ef26d863bf[m
Merge: a358e51 1f43e25
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Jul 17 08:52:39 2023 -0300
Merge pull request #363 from Pinheiro-dataset/feat/community/Pinheiro-dataset
feat: add pinheiro profile
[33mcommit 1f43e2597d9df1d0798f17db37cbe2ef897d5ea8[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Jul 17 08:52:28 2023 -0300
refactor: rename pinheiro.md to Pinheiro-dataset.md
[33mcommit a358e51101f42e6c2d841560a4b3eed7e080525d[m
Merge: 4ed60bf 556862b
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Jul 17 08:51:52 2023 -0300
Merge pull request #362 from camagnum/main
feat: add camagnum profile
[33mcommit 4ed60bf5ee8dcb383eec416659bcb6cc0a81ef03[m
Merge: c63fa84 37895d9
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Jul 17 08:51:19 2023 -0300
Merge pull request #361 from Luizifpb/feat/community/Luizifpb
feat: add Luizifpb profile
[33mcommit d4537e8602fab754767c88be4143c2910c3eeb4d[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Jul 17 08:40:26 2023 -0300
refactor: image upload in readme angelottoni.md
[33mcommit c63fa8469e1c5747e632813b1133610d7e3c7f6c[m
Merge: 55369e6 e9385ea
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sat Jul 15 12:36:34 2023 -0300
Merge pull request #354 from henriksson666/henriksson666
feat: add henriksson profile
[33mcommit 55369e6119468e3f3c6e6c398abd26a1ce075405[m
Merge: 1953ab3 2d28df3
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 14:19:45 2023 -0300
Merge pull request #360 from Foxtryan/main
feat: add foxtryan profile
[33mcommit 1953ab3de9ab3e4a42cb4dfcf7dae846feccb353[m
Merge: 8144be0 a053562
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 14:19:16 2023 -0300
Merge pull request #359 from AgenteDeveloper/feat/community/AgenteDeveloper
feat: add Agente Developer profile
[33mcommit 8144be0bb508763f95a49f18597a5476117291da[m
Merge: 14f03e5 8c88fa1
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 14:18:30 2023 -0300
Merge pull request #357 from ramon-campos/feat/community/ramon-campos
feat: add ramon-campos profile
[33mcommit 14f03e5ca3a56f7facb6994eeb2c23978cdb8739[m
Merge: d458640 caf9065
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 14:17:42 2023 -0300
Merge pull request #356 from DiegoMuniz92/feat/community/DiegoMuniz92
feat: add DiegoMuniz92 profile
[33mcommit d458640e7c69385d5287d494d909235d2656e9ca[m
Merge: 0934109 0aa9541
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 14:17:11 2023 -0300
Merge pull request #355 from lucasmenescal/feat/community/lucasmenescal
feat: add lucasmenescal profile
[33mcommit 093410902e94494b96c2a4509bc28cf5ab6177f4[m
Merge: 3547351 0516ded
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 14:16:01 2023 -0300
Merge pull request #353 from Grax4im/feat/community/grax4im
feat: add grax4im profile
[33mcommit 35473515ce2409cbfb74d4fe3685922a0551adbf[m
Merge: 4b1dd1c f2c1012
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 08:56:10 2023 -0300
Merge pull request #351 from Gaudereto-Sena/feat/community/Gaudereto-Sena
feat: add Gaudereto-Sena profile
[33mcommit 4b1dd1c45013f414e704638f1e3c48630e625857[m
Merge: 38e8cc0 80625ef
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 08:55:47 2023 -0300
Merge pull request #349 from adelino-masioli/feat/community/adelino-masioli
feat: add adelino-masioli profile
[33mcommit 38e8cc097cc7884dd9a8b35299b4d155cc3700b2[m
Merge: 692dfd7 3f1d631
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Wed Jul 12 08:54:13 2023 -0300
Merge pull request #348 from pedroarouck/feat/community/pedroarouck
feat: add pedroarouck profile
[33mcommit 692dfd73ccfeb566e6b24cae0f10e2022a33fe30[m
Merge: b384c0f d0057f8
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Jul 11 06:59:20 2023 -0300
Merge pull request #345 from BrunoVieiraSantana/feat/community/BrunoVieiraSantana
Feat/community/bruno vieira santana
[33mcommit b384c0f1625186fe24ad8c596e36c2308bde4193[m
Merge: 95da898 5b55fed
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Jul 11 06:54:42 2023 -0300
Merge pull request #346 from dsfilho/feat/community/dsfilho
feat: add dsfilho profile
[33mcommit 95da898287009aa31371926c94d94ed46bc4ac6a[m
Merge: 4293eaf 4b49b8d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Jul 11 06:53:47 2023 -0300
Merge pull request #344 from erikamaylim/feat/community/erikamaylim
feat: add erikamaylim profile
[33mcommit 4293eafa728cb161af98361c3c0c9292323007df[m
Merge: 035e1df 9f7c61f
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Jul 11 06:52:42 2023 -0300
Merge pull request #343 from Gimenez10/feat/community/Gimenez10
feat: add Gimenez10 profile
[33mcommit 035e1df64802a2210be352a3496876fc5850ef7f[m
Merge: 56216b4 33341e3
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Jul 11 06:48:26 2023 -0300
Merge pull request #340 from manolli/feat/community/manolli
feat: add manolli profile
[33mcommit 56216b49e4548ec6b344fc0402f49fca41a8e95d[m
Merge: c34a6b7 dd083ab
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Jul 11 06:48:00 2023 -0300
Merge pull request #339 from isasmelo/feat/community/isasmelo
Update isasmelo.md
[33mcommit c34a6b7432701945a485190c2e080d5b4ac809ee[m
Merge: 065c493 45add00
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 22:20:37 2023 -0300
Merge pull request #338 from thaisgarcia/patch-2
Update thaisgarcia.md
[33mcommit 065c493672bcc07045117b80322015f11f5336d6[m
Merge: 69e7c59 2163933
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:37:20 2023 -0300
Merge pull request #337 from Zocateli28/feat/communit/octoeli
feat : add Zocateli28 profile
[33mcommit 69e7c59adefb389ec9d6ff78cfdffc2a4e4e2290[m
Merge: 7cb0cfc 78bc674
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:36:41 2023 -0300
Merge pull request #336 from paulo-freitas-junior/main
refactor: rename paulo-freitas-junior.md.md to paulo-freitas-junior.md
[33mcommit 7cb0cfc90d6f9c4f764e3a98868ebded1ee52096[m
Merge: 8709462 3fa3f71
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:35:54 2023 -0300
Merge pull request #335 from lilandracunha/feat/community/lilandracunha
feat: add lilandracunha profile
[33mcommit 87094620196c9163724f1cde1e39e9650461ad72[m
Merge: a11cd49 1db5c4b
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:35:33 2023 -0300
Merge pull request #334 from luandiasrj/feat/community/luandiasrj
feat: add luandiasrj profile
[33mcommit a11cd49aeb35feff0c5ff79c1d17593623721b42[m
Merge: 889a2ce 1410155
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:35:01 2023 -0300
Merge pull request #331 from joaoclaudioprestes/feat/community/joaoclaudioprestes
Feat/community/joaoclaudioprestes
[33mcommit 14101554f5f43989646f24627a2a625e7e8cd207[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:34:35 2023 -0300
delete duplicate file
[33mcommit 889a2ce0b2d50cd86fcfd0162221ce81310086ef[m
Merge: 30f9c45 6c16baa
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:32:19 2023 -0300
Merge pull request #329 from abreugui-maker/feat/community/abreugui-maker
feat: add abreugui-maker profile
[33mcommit 30f9c45fff32d305fe93d6ac198119671beecff1[m
Merge: 2df802b c93ff3d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:31:51 2023 -0300
Merge pull request #327 from AdemirErthal/feat/community/AdemirErthal
feat: add AdemirErthal profile
[33mcommit 2df802b47b259d07544b545d6ce4ea3ec1cda785[m
Merge: 79366d9 b49d7a5
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:30:31 2023 -0300
Merge pull request #326 from DeivisonCs/feat/community/DeivisonCs
feat: add deivison profile
[33mcommit b49d7a53f26b099032c71bcf1f97a966ab944aa5[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:30:18 2023 -0300
refactor: rename deivison.md to DeivisonCs.md
[33mcommit 79366d96c11b0dbabe1652eedf9cffe6e42652bd[m
Merge: 37f6d98 e1bca7e
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:29:44 2023 -0300
Merge pull request #325 from matusaelopes/feat/community/matusaelopes
feat: add matusaelopes profile
[33mcommit 37f6d98a7bd1a592f85d774d82614c0f456ba8c3[m
Merge: 84c62cb c73acf6
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:29:14 2023 -0300
Merge pull request #324 from RafaelCSMorais/patch-1
docs: add RafaelCSMorais.md profile
[33mcommit 84c62cbd014631ab2c82e5dbb76a6fcbb4a65938[m
Merge: 8727d4b 1ce4af6
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:28:01 2023 -0300
Merge pull request #323 from joarfre/feat/community/joarfre
feat: add jonathan-freitas profile
[33mcommit 1ce4af676569af09962da6f6eedaa194e71b9e01[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:25:49 2023 -0300
refactor: rename jonathan-freitas.md to joarfre.md
[33mcommit 8727d4bb8589eef01c18e8b5074597fb3aa5315d[m
Merge: 0b33449 ce7545d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 14:24:04 2023 -0300
Merge pull request #406 from kaisy2020/feat/community/kaisy2020
feat: add kaisy2020 profile
[33mcommit 0b33449272fdf0699ddd3e9817ecad877cc853f6[m
Merge: 244b4db e4c5b12
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:46:43 2023 -0300
Merge pull request #322 from MarioFurtuoso/Teste
feat: add mariofurtuoso profile
[33mcommit 244b4db14aadb85c5e77bca877ff5348596b14c0[m
Merge: f304cbb 5dfbff9
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:45:52 2023 -0300
Merge pull request #320 from marcelo7xy/main
feat: add marcelorosa profile
[33mcommit 5dfbff99fd9ff534da3db77b013f71579d8368cd[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:45:44 2023 -0300
refactor: update and rename marcelorosa.md to marcelo7x.md
[33mcommit f304cbb3eb8fdccc13a7629d4e78e230a250371a[m
Merge: a463dee 89257cf
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:44:55 2023 -0300
Merge pull request #319 from gamaenrique/feat/community/gamaenrique
feat: add gamaenrique profile
[33mcommit a463deec32cea9a40a1302d1f066c84d44e751b9[m
Merge: cab1207 ba0e2fd
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:41:15 2023 -0300
Merge pull request #318 from caiython/feat/community/caiython
feat: add caiython profile
[33mcommit cab12074d8d06b3c4852621976074224708186ed[m
Merge: b2a229a cda6565
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:40:52 2023 -0300
Merge pull request #317 from AdemilsonSimiao/feat/community/AdemilsonSimiao
feat: add AdemilsonSimiao profile
[33mcommit b2a229ac2fd285f9698cc90ec00061749a266bf2[m
Merge: 8931c5c f3493e0
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:40:21 2023 -0300
Merge pull request #316 from Ismagold67/feat/community/IsmaGold67
feat: add ismaGold67 profile
[33mcommit 8931c5c8e0526a106b08b0099baca670f9907d94[m
Merge: 405d14c 61d424d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:39:57 2023 -0300
Merge pull request #314 from pedromellodev/feat/community/pedromellodev
feat: add pedromellodev profile
[33mcommit 405d14cce86c7b455dbd55b502027ca0581939c4[m
Merge: 5469d4e 78b51e2
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:39:37 2023 -0300
Merge pull request #313 from Tiagotanaka/feat/community/Tiagotanaka
feat: add TiagoTanaka profile
[33mcommit 5469d4edd6daeb463d7eaa58944a1109874c5f14[m
Merge: 7b50d2d 922c69f
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:39:18 2023 -0300
Merge pull request #312 from prikrdo/feat/community/prikrdo
feat: add prikrdo profile
[33mcommit 7b50d2d443d8fe5a3603df93a88387ff0d8ca2b5[m
Merge: 43cebe4 9c68e89
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:38:56 2023 -0300
Merge pull request #311 from BMarxG/feat/community/BMarxG
feat: add BMarxG
[33mcommit 43cebe4c6be9213e88018aacc5832d87d0c1a1cb[m
Merge: 5712993 1f2290b
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:38:37 2023 -0300
Merge pull request #310 from IcaroRP/feat/community/IcaroRP
feat: add IcaroRP profile
[33mcommit 5712993d84e5ca53077c38e3b9b7df62db6b9758[m
Merge: e13bc2a 07024a0
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:36:48 2023 -0300
Merge pull request #308 from kimanakim/feat/community/kimanakim
feat: add kimanakim profile
[33mcommit e13bc2ade306bf47c5e01a8546523954f8d9c059[m
Merge: 4cb1c56 5f64341
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:36:27 2023 -0300
Merge pull request #306 from thomillaz/feat/community/thomillaz
feat: add thomillaz profile
[33mcommit 4cb1c56104f6632dfbd3e3f0ca44ee75c40ab1a4[m
Merge: 7a50adf 4ecf365
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:36:04 2023 -0300
Merge pull request #305 from flavioalessandropereira/feat/community/flavioalessandropereira
feat: add flavioalessandropereira profile
[33mcommit 7a50adfb5dec10ed9d52f79f7775578b5cd3cbc1[m
Merge: da99eb9 d323ebe
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:35:31 2023 -0300
Merge pull request #304 from area-41/main
Create Victor.md
[33mcommit d323ebeabf9bde95363b20287cbe4bd48d132c8c[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:34:39 2023 -0300
refactor: rename Victor.md to area-41.md
[33mcommit e5b94482352cbcdaa95681a86492246a5853ff94[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:33:48 2023 -0300
refactor: discord badge logo color
[33mcommit da99eb910e66a0d6a50798cda3724603dc901634[m
Merge: 7c970f8 178efab
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:31:04 2023 -0300
Merge pull request #303 from danielshindi/feat/community/danielshindi
feat: add danielshindi profile
[33mcommit 7c970f82f48e7653b0306c17a9ddf7e7a1feaaf9[m
Merge: cbac8a1 b351b97
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:28:31 2023 -0300
Merge pull request #300 from SLV4/main
feat: add andreysilva profile
[33mcommit b351b97df5ddc1a8c4e7ab1c94d6211a943e7397[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:28:22 2023 -0300
refactor: rename andreysilva.md to SLV4.md
[33mcommit cbac8a1f77ebec8286baf7d58a01bfc75608c5af[m
Merge: 426cb28 5d2aeda
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:27:32 2023 -0300
Merge pull request #299 from neetosa/feat/community/neetosa
feat: add neetosa profile
[33mcommit 426cb281c2627d68f25cd5390e06ae4beb5c60c4[m
Merge: a27759c 1955b18
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:26:40 2023 -0300
Merge pull request #298 from VitorHJorge/feat/community/VitorHJorge
feat: add VitorHJorge profile
[33mcommit a27759cdbfd91698b0a74dfbd58a6f0be4c8d138[m
Merge: 9ee1e49 8444d40
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:25:40 2023 -0300
Merge pull request #290 from gdagomes/main
feat: add gdagomes profile and file COMANDOSGIT.md
[33mcommit 9ee1e49fcd1985a1e52dc9d96d57f6433e208c55[m
Merge: 5d4edfd 740168a
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:23:08 2023 -0300
Merge pull request #297 from Alan-Vasconi/feat/community/Alan-Vasconi
feat: add Alan-Vasconi profile
[33mcommit 5d4edfd43ee097833cc1fa8b728130b5613c3f4a[m
Merge: c0f274b a58e741
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sun Jul 9 10:22:42 2023 -0300
Merge pull request #296 from PhilTisoni/feat/community/PhilTisoni
feat: add PhilTisoni profile
[33mcommit ce7545d175796d494a867f7f15d68c43fd23ab09[m
Author: kaisy2020 <jeffersonjimenezump@gmail.com>
Date: Sun Jul 9 04:29:32 2023 -0400
feat: add kaisy2020 profile
[33mcommit c0f274ba8e7f2b37a441009e5fa7457c1027f727[m
Merge: 5994765 391b5c8
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sat Jul 8 17:15:42 2023 -0300
Merge pull request #295 from Lucasmbv/feat/community/Lucasmbv
feat: add Lucasmbv profile
[33mcommit 599476545f36bc4ed63606390c9932e51b29b7a8[m
Merge: b665694 a2b5cf6
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sat Jul 8 17:15:18 2023 -0300
Merge pull request #294 from OhanaLucas/feat/community/Ohana-9
feat: add OhanaLucas profile
[33mcommit b665694c19dd33809ecaf04fc83d406811b319bd[m
Merge: 396b8d8 45cb38d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sat Jul 8 17:14:46 2023 -0300
Merge pull request #293 from JeffersonLCXaxa/feat/community/JeffersonLCXaxa
Feat/community/jefferson lc xaxa
[33mcommit 45cb38dd50548b6e8017eb148558f1f66c0c179b[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Sat Jul 8 17:14:15 2023 -0300
docs: update README.md
[33mcommit 42a08d99730d22cabc4439ab84e4ab3402063562[m
Author: hudsonfarias <hudsantos15@gmail.com>
Date: Fri Jul 7 22:29:11 2023 -0300
feat: add hudsonfarias profile
[33mcommit 396b8d8db68d3b9b22a117bcdf8e242ac39bd561[m
Merge: fb4ff15 3d06f85
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 22:06:08 2023 -0300
Merge pull request #291 from GaZ33/feat/community/GaZ33
feat: add GaZ33 profile
[33mcommit fb4ff15a67ead00b1061f435b4715452895673a0[m
Merge: 1e67272 8e30bf4
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 22:05:53 2023 -0300
Merge pull request #292 from priscilaSartori/feat/community/priscilaSartori
feat: add priscilaSartori profile
[33mcommit 1e67272badbce0bb1b5fc400fecb711644924dce[m
Merge: 263177b 45813ce
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 22:01:32 2023 -0300
Merge pull request #288 from Azaton/feat/community/azaton
feat: add Thiago Mendes (Azaton) Profile
[33mcommit 40adf1fd04eff6ec16a004a761ffdc7afcaae40a[m
Author: LuísCrespoDev <luiscrespodev@gmail.com>
Date: Fri Jul 7 21:47:39 2023 -0300
feat: add LuisCrespoDev profile
[33mcommit 6143aee92ab14cec6d48f75912cdcf0676ad07a4[m
Author: Vanderson Vieira <vanderson.vieira85@gmail.com>
Date: Fri Jul 7 21:38:04 2023 -0300
feat: add vaolvi profile
[33mcommit f5182e20181f2a75db64d6d111393f084c758272[m
Author: MR <matheusri1@hotmail.com>
Date: Fri Jul 7 21:37:41 2023 -0300
feat: add Y1zz23 profile
[33mcommit 515270d62a22487a69e61a176ee9f8d4439337cd[m
Author: Pinheiro-dataset <rodrigosantospinheiro@gmail.com>
Date: Fri Jul 7 21:21:29 2023 -0300
feat: add pinheiro profile
[33mcommit ba87f29572f243b74afefc824aeb7bd92a14352a[m
Author: jeferson7717 <jefersonmelo.corretor@gmail.com>
Date: Fri Jul 7 21:07:27 2023 -0300
feat: add jeferson7717 profile
[33mcommit 556862b54e0f662c12b322a240cacd2a64c0009d[m
Author: Magnum Benevides <52930217+camagnum@users.noreply.github.com>
Date: Fri Jul 7 20:32:47 2023 -0300
feat: add camagnum profile
[33mcommit 37895d9b30d682fda0eaf9354c66c82abbe6835d[m
Author: Luiz Henrique da Silva Oliveira <41453112+Luizifpb@users.noreply.github.com>
Date: Fri Jul 7 20:03:01 2023 -0300
feat: add Luizifpb profile
[33mcommit 2d28df3e118dc7be878e936285591fb1e70ebd47[m
Author: Rafael Muller <rafamf2.2@gmail.com>
Date: Fri Jul 7 20:04:37 2023 -0300
feat: add Foxtryan profile
[33mcommit a053562cd1092b5973ad0c66c990ff5cf51258c6[m
Author: AgenteDeveloper <tiagoangeli96@gmail.com>
Date: Fri Jul 7 18:55:00 2023 -0300
feat: add Agente Developer profile
[33mcommit 8c88fa1ac4cc7ccac6e4ed0f5c4e367381b3f6f0[m
Author: ramon-campos <ramonramalhoc@gmail.com>
Date: Fri Jul 7 17:27:18 2023 -0300
feat: add ramon-campos profile
git status
clear
exit
[33mcommit caf9065c219d292599f64a9bb3b6fd31fdd6d008[m
Author: DiegoMuniz92 <diegooliveiramuniz2014@gmail.com>
Date: Fri Jul 7 17:16:21 2023 -0300
feat: add DiegoMuniz92 profile
[33mcommit 0aa954175808e9de1f009893beae53574b16789f[m
Author: Lucas Menescal <lucasmenescalpontes@gmail.com>
Date: Fri Jul 7 17:01:19 2023 -0300
feat: add lucasmenescal profile
[33mcommit e9385ea18094dcaf65e42c8bc74c73a14b0ad1d8[m
Author: João Henrique Silva Pinto <j.henrique.uesb@gmail.com>
Date: Fri Jul 7 16:40:04 2023 -0300
Create henriksson.md
[33mcommit 0516dedbfb50fd3285179caf4266d67060a6c467[m
Author: Robert <robert@caoscorp.com>
Date: Fri Jul 7 16:08:49 2023 -0300
feat: add grax4im profile
[33mcommit c18b4c58aa2806291fa4fa4adc380448183e8ba5[m
Author: AngelOttoni <angel_m_ottoni@hotmail.com>
Date: Fri Jul 7 14:38:53 2023 -0300
feat: add angelottoni profile
[33mcommit f2c1012678afc68892cd1996e2022f5eb4dc1e17[m
Author: Gustavo Sena <gaudereto.sena@gmail.com>
Date: Fri Jul 7 14:29:53 2023 -0300
feat: add Gaudereto-Sena profile
[33mcommit 80625ef27311f1ec593c70549276e64d06939284[m
Author: Adelino Masioli <adelino.masioli@deptagency.com>
Date: Fri Jul 7 16:56:41 2023 +0100
feat: add adelino-masioli profile
[33mcommit 3f1d6314855fcdef9604b2363574ae9f0b32a16d[m
Author: pedroarouck <pedrohenrique.sales@hotmail.com>
Date: Fri Jul 7 17:48:41 2023 +0200
feat: add pedroarouck profile
[33mcommit 5b55fed85bad3d364a9323fa8c2c7bf269d5663c[m
Author: Daniel Filho <danielfilho@mesalvati.com.br>
Date: Fri Jul 7 11:35:35 2023 -0300
feat: add dsfilho profile
[33mcommit d0057f8e5399dcc897cba5b8687e4834ac10c360[m
Author: BrunoVieiraSantana <brunonewdev@gmail.com>
Date: Fri Jul 7 11:30:26 2023 -0300
feat: add BrunoVieiraSantana profile
[33mcommit b97e9ef62cbd687db8ed9bea0d0a3d8cb95b6a7e[m
Author: BrunoVieiraSantana <brunonewdev@gmail.com>
Date: Fri Jul 7 11:26:14 2023 -0300
feat: add BrunoVieiraSantana profile
[33mcommit 4b49b8d8a49e1c412fadc031b61f0658a6358f3a[m
Author: Erika <dev.erikamaylim@gmail.com>
Date: Fri Jul 7 11:12:34 2023 -0300
Create erikamaylim.md
Arquivo criado para o desafio "Contribuindo em um Projeto Open Source no GitHub" da DIO.
[33mcommit 2a8c244785d1d5460274a4dc7db16411b0641ca0[m
Author: Victor Marques <87396846+area-41@users.noreply.github.com>
Date: Fri Jul 7 10:48:15 2023 -0300
Update badges.md
Adição do Link de DISCORD entre as opções de Badges.
[33mcommit 9f7c61fe50f972ea1b61fbe38c0229a0edf557cc[m
Author: Rafael <rapha.gimenez@gmail.com>
Date: Fri Jul 7 10:41:25 2023 -0300
feat: add Gimenez10 profile
[33mcommit 33341e34a0f882f3e538914b47611976ac871807[m
Author: Lucas Manolli <lucas.manolli.sfs@gmail.com>
Date: Fri Jul 7 10:29:27 2023 -0300
feat: add manolli profile
[33mcommit 78bc6749fb46ac7d2ef313bf5b840f807db4960a[m
Author: Paulo R. L. de F. Junior <63370929+paulo-freitas-junior@users.noreply.github.com>
Date: Fri Jul 7 09:59:23 2023 -0300
docs: Delete paulo-freitas-junior.md.md Duplicated
[33mcommit dd083ab48c127ef912f7cb1c5b6e8a145fc77ae6[m
Author: isamelo <135927071+isasmelo@users.noreply.github.com>
Date: Fri Jul 7 09:15:01 2023 -0300
Update isasmelo.md
[33mcommit 263177bbcd0a041f0e39f5c07a2929c7c1557aee[m
Merge: d8cf52c 29fa3e8
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:05:55 2023 -0300
Merge pull request #287 from gabrielviggianih/feat/community/gabrielviggianih
feat: add gabrielviggianih profile
[33mcommit d8cf52ce8289d368db94d5f596d8452ea6947a68[m
Merge: 7cc230c 91eefce
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:05:34 2023 -0300
Merge pull request #286 from Alcidesfrancisco/feat/community/Alcidesfrancisco
Feat/community/alcidesfrancisco
[33mcommit 7cc230ca5d5e4c0d7da72cd3e15fe751d1d22784[m
Merge: 136dfed a880e2d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:05:10 2023 -0300
Merge pull request #285 from Virardi78/feat/community/virardi78
feat: add virardi78 profile
[33mcommit 136dfedb3291d2faa6911fe7fe2aeb829617d12a[m
Merge: 5cb8aba 5edc230
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:04:49 2023 -0300
Merge pull request #284 from ElisCavalcante/feat/community/eliscavalcante
feat: add eliscavalcante profile
[33mcommit 5cb8aba78bc70b03aea676d19cddb53d112080d0[m
Merge: 844cce6 de7895c
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:04:32 2023 -0300
Merge pull request #283 from Rafael-Dutra-create/feat/community/Rafael-Dutra-create
feat: add Rafael-Dutra-create profile
[33mcommit 844cce6267202bb5c15c04ccf8b16e7f0c1fc469[m
Merge: 2bbf3e0 982b1fa
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:04:12 2023 -0300
Merge pull request #282 from FernandaMR-SI/feat/community/FernandaMR
feat: add FernandaMR_SI profile
[33mcommit 2bbf3e030e995f63780610543a4877623a927583[m
Merge: f1b36cb a96049d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 09:00:39 2023 -0300
Merge pull request #280 from JoseGet/feat/community/JoseGet
feat: add JoseGet profile
[33mcommit 45add00f8e75010dcaa7e2b256deb9748036be22[m
Author: Thais Garcia <95317220+thaisgarcia@users.noreply.github.com>
Date: Fri Jul 7 08:59:57 2023 -0300
Update thaisgarcia.md
[33mcommit f1b36cb404c8ef5cdc9a62c0af2dbd08c3a523ee[m
Merge: feb2932 56601f9
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:59:32 2023 -0300
Merge pull request #276 from isasmelo/feat/community/isasmelo
Feat: add isasmelo profile
[33mcommit feb29325846cd4e3bd9d8b2cec45d66c2adda599[m
Merge: 7037858 37e0650
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:58:54 2023 -0300
Merge pull request #271 from opusvix/main
feat: add opusvix profile
[33mcommit 703785874d2fba1028a044a2adcbb4a153a20d08[m
Merge: 63d9d56 2894c78
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:57:43 2023 -0300
Merge pull request #275 from euJonhen/feat/community/jonjon
feat: add EuJonhen profile
[33mcommit 63d9d569335726add2254bf0ff157cdb4353bc07[m
Merge: 22a1a7b b454b54
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:57:22 2023 -0300
Merge pull request #274 from thaisgarcia/thaisgarcia-patch-1
feat: add thaisgarcia profile
[33mcommit 22a1a7b43da1ff52c11cb7c7d75e2a2608301c55[m
Merge: 5e0e6ea 3d9d6d0
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:57:02 2023 -0300
Merge pull request #273 from m-sousa/feat/community/m-sousa
feat: add m-sousa profile
[33mcommit 5e0e6ea2d956d625ca87751abd424580a822826c[m
Merge: fa810b3 2b874ca
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:56:39 2023 -0300
Merge pull request #272 from totorourbem/feat/community/totorourbem
feat: add totrourbem profile
[33mcommit fa810b3694c2c98b3c81d5aa51ee867ce3816dc7[m
Merge: bfc7987 a11647e
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Fri Jul 7 08:55:11 2023 -0300
Merge pull request #270 from admfrancescousseau/main
feat: add admfrancescousseau profile
[33mcommit bfc79875188d4685e3b2405e1fa07ac40f4c5a22[m