forked from digitalinnovationone/dio-lab-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit status
More file actions
5550 lines (3700 loc) · 178 KB
/
git status
File metadata and controls
5550 lines (3700 loc) · 178 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 260b2be6829417ae22a49e8ce3d13903e979d3a8[m[33m ([m[1;36mHEAD -> [m[1;32mfeat/comuniy/CleiltonF[m[33m)[m
Author: CleiltonF <jsfacunde@gmail.com>
Date: Tue Sep 5 18:48:16 2023 -0300
feat: add CleiltonF profile
[33mcommit d08848f408a077d8d905507aa88487c8432919cd[m[33m ([m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m, [m[1;32mmain[m[33m)[m
Merge: 0dfad3a 1046a6c
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:41:23 2023 -0300
Merge pull request #428 from Joao-Cardosoo/feat/community/Joao-Cardosoo
feat: add Joao-Cardosoo profile
[33mcommit 0dfad3a8b305b08b7b0d8004ebf660ab68554b94[m
Merge: 82e7445 5d9ced9
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:41:06 2023 -0300
Merge pull request #427 from JulianoStulp/feat/community/JulianoStulp
feat: add JulianoStulp profile
[33mcommit 82e74455f87d1ce5297aebcb17e16db54c7b3001[m
Merge: af6de72 87d8871
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:40:50 2023 -0300
Merge pull request #426 from cleberjunior/feat/community/cleberjunior
feat: add cleberjunior profile
[33mcommit af6de7239f243b54555a69af73efe6dfa5d2d9a7[m
Merge: 6a2186a 3137ce5
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:40:17 2023 -0300
Merge pull request #425 from bruribeiro108/feat/community/bruribeiro108
feat: add bruribeiro108 profile
[33mcommit 6a2186a04613a88993999a092b6e70bab9340ed5[m
Merge: ac15b26 c350bea
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:39:55 2023 -0300
Merge pull request #423 from Belletati/feat/community/Belletati
feat: add Belletati profile
[33mcommit ac15b2607357056314fb4c3e53be7b98afda2626[m
Merge: 15ff5be de4230d
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:39:36 2023 -0300
Merge pull request #420 from RafaelDaSilva1984/feat/community/RafaelDaSilva1984
feat: add RafaelDaSilva1984 profile
[33mcommit 15ff5be6f61469e17b3f825161d7f82a0b73af6c[m
Merge: 2865807 6b78afd
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:39:00 2023 -0300
Merge pull request #419 from Gabsll/feat/community/Gabsll
Feat/community/gabsll
[33mcommit 2865807ba5a39a4d9499735500ae8512354deb33[m
Merge: 53bc8ff 6dc3aae
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:38:35 2023 -0300
Merge pull request #418 from ladcs/Ladcs-Profile
feat: ladcs profile in community
[33mcommit 6dc3aae9d8fa933636bb2ce82c2a7dfcc9d0c773[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:37:17 2023 -0300
refactor: rename ladcsProfile to ladcs.md
[33mcommit 53bc8fff7590752992536fbe8bb94ef3f40eafa3[m
Merge: b2615bf eda442e
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:36:44 2023 -0300
Merge pull request #417 from AlissonJB13/feat/community/AlissonJB13
feat: add AlissonJB13 profile
[33mcommit b2615bf902ed959fd95a7686d57e9db88f2d46bd[m
Merge: 95e06b5 6a5b0ce
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:36:32 2023 -0300
Merge pull request #416 from luizfernandopavanello/feat/community/luizfernandopavanello
feat: add luizfernandopavanello profile
[33mcommit 95e06b588a4d3a4f9fe7a969b522683cb29b2eec[m
Merge: aabbb01 24390ff
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:36:17 2023 -0300
Merge pull request #415 from LucasSimoes89/main
feat add LucasSimoes89 profile
[33mcommit aabbb010f8190c40970d1276e3fd7b91537115f4[m
Merge: b0d4397 94bf939
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:36:01 2023 -0300
Merge pull request #412 from lucasramosdev/feat/community/lucasramosdev
feat: add lucasramosdev profile
[33mcommit b0d43973593eec65147af186651d4c748a1db41c[m
Merge: eaf962b 1f4f0be
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:35:47 2023 -0300
Merge pull request #411 from ennymoraes/feat/community/ennymoraes
feat: add ennymoraes profile
[33mcommit eaf962bb51a45958d0fa55efb4248710686976ca[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:34:09 2023 -0300
refactor: rename felipebdp to felipebdp.md
[33mcommit 422e6701c31f11846a9c1b6e9a8fe639acf16590[m
Merge: f22a048 a1d8558
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:33:32 2023 -0300
Merge pull request #405 from fernandodelin/feat/community/fernandodelin
feat: add fernandodelin profile
[33mcommit a1d8558f9bf5d5102f9df0d40cabe7b076bb5593[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:33:23 2023 -0300
refactor: rename fernandodelin to fernandodelin.md
[33mcommit f22a048a35ccb6d04d70f2bb5722a70485a8d948[m
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:32:30 2023 -0300
refactor: rename JoaoGaBRiel-X to JoaoGaBRiel-X.md
[33mcommit 1671f004340df094f7f15f77c640fa2de8b6b7df[m
Merge: 35b95ca 07257bc
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:31:50 2023 -0300
Merge pull request #410 from JoaoEmanuel1/feat/community/JoaoEmanuel1
feat: add JoaoEmanuel1 profile
[33mcommit 35b95ca96198952f6885a4cdde77129782305633[m
Merge: 99285b6 5fb5b1b
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:30:12 2023 -0300
Merge pull request #404 from taynanmancilla/feat/community/taynanmancilla
feat: add taynanmancilla profile
[33mcommit 99285b62a47a1569a817829f6c38afad3b0ddda3[m
Merge: dd6d725 aa428cb
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:29:58 2023 -0300
Merge pull request #402 from thiagosantos2021/feat/community/thiagosantos2021
feat: add thiagosantos2021 profile
[33mcommit dd6d72576cb65b9db8764c7c15dcd17a857c2082[m
Merge: 4ff528c 2eacbd7
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:29:31 2023 -0300
Merge pull request #401 from FelipeBDP/patch-1
feat: add felipebdp profile
[33mcommit 4ff528cdd1af968b934ff6ed08faeaf828e0822a[m
Merge: c58ab27 dd62318
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:29:09 2023 -0300
Merge pull request #397 from Dan-Teles/feat/community/Dan-Teles
feat: add Dan-Teles profile
[33mcommit c58ab270ef2aecfb44cc81d2eaf70b3de38f35cd[m
Merge: 2453442 3714a34
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:28:44 2023 -0300
Merge pull request #400 from rixargolo/feat/community/rixargolo
feat: add rixargolo profile
[33mcommit 2453442a90244cc61ce87caaf8db1a8a9803a512[m
Merge: e4dafed ec283c2
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:28:28 2023 -0300
Merge pull request #398 from Estevan-Tomazini/feat/community/Estevan-tomazini
feat: add Estevan-Tomazini profile
[33mcommit e4dafeddbd676848b63c21ee8b4b077bf4e7c10f[m
Merge: fed63ad 09dfcf5
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:27:43 2023 -0300
Merge pull request #396 from 2509tiago/feat/community/2509tiago
feat: add 2509tiago profile
[33mcommit fed63adfe3ac3951e2330ba2821399b2b6c6e665[m
Merge: 9cb9b5c c2ab4c7
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:27:29 2023 -0300
Merge pull request #395 from HenriqueMessias/main
feat: add HenriqueMessias profile
[33mcommit 9cb9b5c278a0fe8e2cfc6b03e571ec7e99140c72[m
Merge: 636a689 d886063
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 22 21:27:00 2023 -0300
Merge pull request #393 from tcr235/feat/community/tcr235
feat: add tcr235 profile
[33mcommit 636a689b068074bbe240eaf8ee9413fd83ec218d[m
Merge: e41747f 235a913
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Aug 21 22:02:28 2023 -0300
Merge pull request #392 from MaylaSilva/feat/community/maylasilva
feat: add maylasilva profile
[33mcommit e41747f82a82e37db3eddf96d315e0565877158c[m
Merge: 77d6657 3fbdb70
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Aug 21 22:02:01 2023 -0300
Merge pull request #391 from Carlos-Juni0r/feat/community/Carlos-Juni0r
feat: add Carlos-Juni0r
[33mcommit 77d6657d9740cd7b4e76845077d953a01af9e03d[m
Merge: c1c2410 d71cfef
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Mon Aug 21 21:32:17 2023 -0300
Merge pull request #4442 from voaneves/main
feat: Adicionando um perfil (@voaneves)
[33mcommit d71cfefaea45b3edf86de481995b5dc2f5eb126d[m
Author: Victor Neves <victorneves478@gmail.com>
Date: Mon Aug 21 21:03:42 2023 -0300
Adicionando um perfil (@voaneves)
[33mcommit c1c24103d4b3fb29971d8632bb5e8f00a6759e36[m
Merge: 2828b47 018af44
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 17 10:18:19 2023 -0300
Merge pull request #387 from NeresMath/feat/community/NeresMath
feat: add NeresMath profile
[33mcommit 2828b47e32edfea5e90db918a66cba749dfc382f[m
Merge: 8c04fab fd8cf90
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 17 10:18:02 2023 -0300
Merge pull request #386 from Werricsson-Santos/feat/community/Werricsson-Santos
feat: add Werricsson-Santos profile
[33mcommit 8c04fab2d37e536e8db3ca28d24cc5b50c00722c[m
Merge: 5a0c380 622339f
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 17 10:16:54 2023 -0300
Merge pull request #385 from JoaoGaBRiel-X/feat/community/JoaoGaBRiel-X
feat: add JoaoGaBRiel-X profile
[33mcommit 5a0c380392af3939fe82f1d793c01fd6936df592[m
Merge: 3da60da 23d6c74
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 3 08:49:46 2023 -0300
Merge pull request #383 from VanJoaoPedro/feat/community/vanjoaopedro
feat: add vanjoaopedro profile
[33mcommit 3da60da875b26f23c935b9cdf0654fc56f6a8391[m
Merge: b4ded06 0725279
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 3 08:49:15 2023 -0300
Merge pull request #382 from GabriellCarvalho/feat/community/GabriellCarvalho
feat: add GabriellCarvalho profile
[33mcommit b4ded06652d150d5bf8b4f4e9cb398e0247761bb[m
Merge: 8f02fb9 38bb32a
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 3 08:48:48 2023 -0300
Merge pull request #381 from CaioCarv/feat/community/CaioCarv
feat: add CaioCarv profile,
[33mcommit 8f02fb92aa39359b53348277b9b78ee159211fa1[m
Merge: 0b9ed40 ad05b19
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 3 08:48:28 2023 -0300
Merge pull request #378 from casjunior93/feat/community/casjunior93
Criando o meu perfil
[33mcommit 0b9ed40cd1c5a34b22812a229f1fb2269a04d68f[m
Merge: b0405a3 4e27802
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Thu Aug 3 08:47:43 2023 -0300
Merge pull request #375 from brendowcaval/feat/community/brendowcaval
feat: add brendowcaval profile
[33mcommit b0405a3860736eb3d3c98d0242426dfc513abe17[m
Merge: 1a02fad 43a1f78
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 1 14:57:36 2023 -0300
Merge pull request #374 from Wellington-Barbosa/master
feat: add wellingtonbarbosa profile
[33mcommit 1a02fad6ac9aba00edabae9a461de3169c2b0388[m
Merge: ff053bf bb9b2a4
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 1 14:57:05 2023 -0300
Merge pull request #372 from unbestimmt/feat/community/unbestimmt
feat: add unbestimmt profile
[33mcommit ff053bf52c0241c5f53844f9e7488e06a890bc36[m
Merge: 1d6608a 0739ec3
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 1 14:55:43 2023 -0300
Merge pull request #371 from Beatriz-Lim/patch-2
Beatriz-Lima.md
[33mcommit 1d6608a6ecb73771df199050e59002bc3ff741f1[m
Merge: 9cf0b41 2290e2e
Author: Elidiana Andrade <97471199+elidianaandrade@users.noreply.github.com>
Date: Tue Aug 1 14:55:19 2023 -0300
Merge pull request #369 from jeferson7717/patch-1
feat: add jeferson77172 profile
[33mcommit 9cf0b4181d9458c55dafd9188628579c29aca76e[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 fd8cf9070498d8c4813fd50873f1fcb4e4acc6c7[m
Merge: 37e2713 fa47999
Author: Werricsson Santos <112734393+Werricsson-Santos@users.noreply.github.com>
Date: Wed Jul 26 00:03:04 2023 -0300
Merge branch 'elidianaandrade:main' into feat/community/Werricsson-Santos
[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 37e2713588169eb4aa796afe689f91040baf0f07[m
Merge: 0381abd c34a6b7
Author: Werricsson Santos <112734393+Werricsson-Santos@users.noreply.github.com>
Date: Mon Jul 10 22:53:02 2023 -0300
Merge branch 'elidianaandrade:main' into feat/community/Werricsson-Santos
[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 1046a6c476097cc55916bdb0314161243cd568c1[m
Author: joãoCardoso <joaocardosowork@hotmail.com>
Date: Sun Jul 9 20:11:25 2023 -0400
feat: add Joao-Cardosoo profile
[33mcommit 5d9ced9bc28a10a1c488aaeed5cfddb9b2ae1e94[m
Author: Juliano Stulp <juliano_stulp@hotmail.com>
Date: Sun Jul 9 20:29:47 2023 -0300
feat: add JulianoStulp profile
[33mcommit 87d88712d87b682b9a23deb3060a081224485a77[m
Author: Cleber Farias <jrf.bynho@hotmail.com>
Date: Sun Jul 9 20:24:51 2023 -0300
feat: add cleberjunior profile
[33mcommit 3137ce54891e3e6f33561800579ff70e40859487[m
Author: bruribeiro108 <bruribeiro108@gmail.com>
Date: Sun Jul 9 20:16:43 2023 -0300
feat: add bruribeiro108 profile
[33mcommit c350beaa02f7c89b1ec91db8b3112ab4caab8998[m
Author: Belletati <julianabelletati@hotmail.com>
Date: Sun Jul 9 19:03:46 2023 -0300
feat: add Belletati profile
[33mcommit de4230daba9c0da7b44a61d6fb543cd9f212a0db[m
Author: Rafael da Silva <rfsrafaelsilva@gmail.com>
Date: Sun Jul 9 17:18:39 2023 -0300
feat: add RafaelDaSilva1984 profile
[33mcommit 6b78afd01e5a0120279b9e216551dd84790992d3[m
Merge: 87d962a 065c493
Author: Gabsll <gabrielsr0302@gmail.com>
Date: Sun Jul 9 17:08:29 2023 -0300
Merge branch 'main' of https://github.com/elidianaandrade/dio-lab-open-source into feat/community/Gabsll
[33mcommit de04bfb4900cedf14f46a5647c247f17a9318833[m
Author: Luciano Augusto <82337394+ladcs@users.noreply.github.com>
Date: Sun Jul 9 17:05:34 2023 -0300
feat: ladcs profile in community
[33mcommit 87d962ab61e0d548b1a796f5d94229a3b7907e92[m
Author: Gabsll <gabrielsr0302@gmail.com>
Date: Sun Jul 9 17:01:01 2023 -0300
feat: add Gabsll profile
[33mcommit 6a5b0ce677a6aa2f6dc562c05e7d3f429260944a[m
Author: Nitneciv <nitneciv@pop-os.localdomain>
Date: Sun Jul 9 16:50:22 2023 -0300
feat: add luizfernandopavanello profile
[33mcommit eda442e1def783021fa40c545726cb41c97b4869[m
Author: AlissonJB13 <alissonjb13@gmail.com>
Date: Sun Jul 9 16:44:28 2023 -0300
feat: add AlissonJB13 profile
[33mcommit 24390ff668390c93008c078d9e49ec057f6500f0[m
Author: Lucas Simões <89492522+LucasSimoes89@users.noreply.github.com>
Date: Sun Jul 9 15:43:05 2023 -0300
Update and rename LucasSimoes89 to LucasSimoes89.md
[33mcommit de25c4c159c75069461730bf92c06b72b92abe51[m
Author: Lucas Simões <89492522+LucasSimoes89@users.noreply.github.com>
Date: Sun Jul 9 15:41:09 2023 -0300
feat: add LucasSimoes89 profile
[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 94bf9395d17df117bf904803e8868075b2168996[m
Author: Lucas Ramos <lucasramos@nexxoempresarial.com>
Date: Sun Jul 9 11:42:33 2023 -0300
feat: add lucasramosdev profile
[33mcommit 1f4f0be7f32100e94894209275598b38e8b087e1[m
Author: ennymoraes <enny.moraes@outlook.com>
Date: Sun Jul 9 11:29:26 2023 -0300
feat: add ennymoraes profile
[33mcommit 07257bcfb75f66d2e2686bdc1a4ca5595b38c0ec[m
Author: J.Emanuel <joaoemanuelcf01@gmail.com>
Date: Sun Jul 9 11:14:17 2023 -0300
feat: add JoaoEmanuel1 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