-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish.html
1572 lines (1511 loc) · 47.7 KB
/
english.html
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
<!DOCTYPE html>
<html lang="en" class="fontawesome-i2svg-active fontawesome-i2svg-complete">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Gabriel Augusto De Vito</title>
<!-- Meta -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Responsive Portfolio Template" />
<meta name="author" content="" />
<style type="text/css">
svg:not(:root).svg-inline--fa {
overflow: visible;
}
.svg-inline--fa {
display: inline-block;
font-size: inherit;
height: 1em;
overflow: visible;
vertical-align: -0.125em;
}
.svg-inline--fa.fa-lg {
vertical-align: -0.225em;
}
.svg-inline--fa.fa-w-1 {
width: 0.0625em;
}
.svg-inline--fa.fa-w-2 {
width: 0.125em;
}
.svg-inline--fa.fa-w-3 {
width: 0.1875em;
}
.svg-inline--fa.fa-w-4 {
width: 0.25em;
}
.svg-inline--fa.fa-w-5 {
width: 0.3125em;
}
.svg-inline--fa.fa-w-6 {
width: 0.375em;
}
.svg-inline--fa.fa-w-7 {
width: 0.4375em;
}
.svg-inline--fa.fa-w-8 {
width: 0.5em;
}
.svg-inline--fa.fa-w-9 {
width: 0.5625em;
}
.svg-inline--fa.fa-w-10 {
width: 0.625em;
}
.svg-inline--fa.fa-w-11 {
width: 0.6875em;
}
.svg-inline--fa.fa-w-12 {
width: 0.75em;
}
.svg-inline--fa.fa-w-13 {
width: 0.8125em;
}
.svg-inline--fa.fa-w-14 {
width: 0.875em;
}
.svg-inline--fa.fa-w-15 {
width: 0.9375em;
}
.svg-inline--fa.fa-w-16 {
width: 1em;
}
.svg-inline--fa.fa-w-17 {
width: 1.0625em;
}
.svg-inline--fa.fa-w-18 {
width: 1.125em;
}
.svg-inline--fa.fa-w-19 {
width: 1.1875em;
}
.svg-inline--fa.fa-w-20 {
width: 1.25em;
}
.svg-inline--fa.fa-pull-left {
margin-right: 0.3em;
width: auto;
}
.svg-inline--fa.fa-pull-right {
margin-left: 0.3em;
width: auto;
}
.svg-inline--fa.fa-border {
height: 1.5em;
}
.svg-inline--fa.fa-li {
width: 2em;
}
.svg-inline--fa.fa-fw {
width: 1.25em;
}
.fa-layers svg.svg-inline--fa {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
}
.fa-layers {
display: inline-block;
height: 1em;
position: relative;
text-align: center;
vertical-align: -0.125em;
width: 1em;
}
.fa-layers svg.svg-inline--fa {
-webkit-transform-origin: center center;
transform-origin: center center;
}
.fa-layers-counter,
.fa-layers-text {
display: inline-block;
position: absolute;
text-align: center;
}
.fa-layers-text {
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-transform-origin: center center;
transform-origin: center center;
}
.fa-layers-counter {
background-color: #ff253a;
border-radius: 1em;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: #fff;
height: 1.5em;
line-height: 1;
max-width: 5em;
min-width: 1.5em;
overflow: hidden;
padding: 0.25em;
right: 0;
text-overflow: ellipsis;
top: 0;
-webkit-transform: scale(0.25);
transform: scale(0.25);
-webkit-transform-origin: top right;
transform-origin: top right;
}
.fa-layers-bottom-right {
bottom: 0;
right: 0;
top: auto;
-webkit-transform: scale(0.25);
transform: scale(0.25);
-webkit-transform-origin: bottom right;
transform-origin: bottom right;
}
.fa-layers-bottom-left {
bottom: 0;
left: 0;
right: auto;
top: auto;
-webkit-transform: scale(0.25);
transform: scale(0.25);
-webkit-transform-origin: bottom left;
transform-origin: bottom left;
}
.fa-layers-top-right {
right: 0;
top: 0;
-webkit-transform: scale(0.25);
transform: scale(0.25);
-webkit-transform-origin: top right;
transform-origin: top right;
}
.fa-layers-top-left {
left: 0;
right: auto;
top: 0;
-webkit-transform: scale(0.25);
transform: scale(0.25);
-webkit-transform-origin: top left;
transform-origin: top left;
}
.fa-lg {
font-size: 1.3333333333em;
line-height: 0.75em;
vertical-align: -0.0667em;
}
.fa-xs {
font-size: 0.75em;
}
.fa-sm {
font-size: 0.875em;
}
.fa-1x {
font-size: 1em;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-6x {
font-size: 6em;
}
.fa-7x {
font-size: 7em;
}
.fa-8x {
font-size: 8em;
}
.fa-9x {
font-size: 9em;
}
.fa-10x {
font-size: 10em;
}
.fa-fw {
text-align: center;
width: 1.25em;
}
.fa-ul {
list-style-type: none;
margin-left: 2.5em;
padding-left: 0;
}
.fa-ul > li {
position: relative;
}
.fa-li {
left: -2em;
position: absolute;
text-align: center;
width: 2em;
line-height: inherit;
}
.fa-border {
border: solid 0.08em #eee;
border-radius: 0.1em;
padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
float: left;
}
.fa-pull-right {
float: right;
}
.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
margin-right: 0.3em;
}
.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
margin-left: 0.3em;
}
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.fa-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.fa-rotate-90 {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.fa-rotate-180 {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.fa-rotate-270 {
-webkit-transform: rotate(270deg);
transform: rotate(270deg);
}
.fa-flip-horizontal {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.fa-flip-vertical {
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
-webkit-transform: scale(-1, -1);
transform: scale(-1, -1);
}
:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
-webkit-filter: none;
filter: none;
}
.fa-stack {
display: inline-block;
height: 2em;
position: relative;
width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
}
.svg-inline--fa.fa-stack-1x {
height: 1em;
width: 1.25em;
}
.svg-inline--fa.fa-stack-2x {
height: 2em;
width: 2.5em;
}
.fa-inverse {
color: #fff;
}
.sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
.svg-inline--fa .fa-primary {
fill: var(--fa-primary-color, currentColor);
opacity: 1;
opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa .fa-secondary {
fill: var(--fa-secondary-color, currentColor);
opacity: 0.4;
opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa.fa-swap-opacity .fa-primary {
opacity: 0.4;
opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa.fa-swap-opacity .fa-secondary {
opacity: 1;
opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
fill: #000;
}
.fad.fa-inverse {
color: #fff;
}
</style>
<link
rel="shortcut icon"
href="https://themes.3rdwavemedia.com/instance/bs4/favicon.ico"
/>
<!-- Google Font -->
<link href="./src/css" rel="stylesheet" />
<!-- FontAwesome JS -->
<script defer="" src="./src/all.js.download"></script>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="./src/theme-1.css" />
<style>
.resume-header .title {
font-size: 1rem !important;
}
.resume-header .name {
font-size: 1.5rem !important;
}
</style>
<style type="text/css"></style>
</head>
<body>
<header class="header">
<div class="top-bar theme-bg-primary-darken">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-dark position-relative">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item">
<a
class="text-white"
target="_blank"
href="https://www.linkedin.com/in/gabriel-augusto-de-vito-d-guimar%C3%A3es-71319b60"
><svg
class="svg-inline--fa fa-linkedin-in fa-w-14 fa-fw"
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="linkedin-in"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
data-fa-i2svg=""
>
<path
fill="currentColor"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
></path></svg
><!-- <i class="fab fa-linkedin-in fa-fw"></i> --></a
>
</li>
<li class="list-inline-item">
<a
class="text-white"
target="_blank"
href="https://github.com/gabrieldvt"
><svg
class="svg-inline--fa fa-github-alt fa-w-15 fa-fw"
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="github-alt"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 480 512"
data-fa-i2svg=""
>
<path
fill="currentColor"
d="M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"
></path></svg
><!-- <i class="fab fa-github-alt fa-fw"></i> --></a
>
</li>
</ul>
<!--//social-list-->
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navigation"
aria-controls="navigation"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</div>
<!--//container-->
</div>
<!--//top-bar-->
<div
class="header-intro header-intro-resume theme-bg-primary text-white py-5"
>
<div class="container position-relative">
<!-- <a class="btn theme-btn-on-bg download-resume position-absolute font-weight-bold mx-auto" href="https://themes.3rdwavemedia.com/resources/sketch-template/pillar-sketch-sketch-resume-template-for-developers/" target="_blank"><svg class="svg-inline--fa fa-download fa-w-16 mr-2" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="download" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"></path></svg>Download PDF Version</a> -->
</div>
<!--//container-->
</div>
<!--//header-intro-->
</header>
<!--//header-->
<article class="resume-wrapper text-center position-relative">
<div class="resume-wrapper-inner mx-auto text-left bg-white shadow-lg">
<header class="resume-header pt-4 pt-md-0">
<div class="media flex-column flex-md-row">
<img
class="mr-3 img-fluid picture mx-auto"
src="./src/profile.jpg"
alt=""
/>
<div
class="media-body p-4 d-flex flex-column flex-md-row mx-auto mx-lg-0"
>
<div class="primary-info">
<h1
class="name mt-0 mb-1 text-white text-uppercase text-uppercase"
>
Gabriel Augusto De Vito D'Abbadia Guimarães
</h1>
<div class="title mb-1">
Bachelor in Computer Engineer
<a target="_blank" href="https://ufgnet.ufg.br/"
>Universidade Federal de Goiás</a
>
</div>
<div class="title mb-2">
Full Stack and Mobile Developer at
<a href="https://www.pivot.com.br" target="_blank"
>Pivot Irrigação</a
>
</div>
<ul class="list-unstyled">
<li class="mb-2">
<a href="mailto:[email protected]"
><svg
class="svg-inline--fa fa-envelope fa-w-16 fa-fw mr-2"
data-fa-transform="grow-3"
aria-hidden="true"
focusable="false"
data-prefix="far"
data-icon="envelope"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
data-fa-i2svg=""
style="transform-origin: 0.5em 0.5em"
>
<g transform="translate(256 256)">
<g
transform="translate(0, 0) scale(1.1875, 1.1875) rotate(0 0 0)"
>
<path
fill="currentColor"
d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"
transform="translate(-256 -256)"
></path>
</g>
</g></svg
><!-- <i class="far fa-envelope fa-fw mr-2" data-fa-transform="grow-3"></i> -->[email protected]</a
>
</li>
</ul>
</div>
<!--//primary-info-->
<div class="secondary-info ml-md-auto mt-2">
<ul class="resume-social list-unstyled">
<li class="mb-3">
<a
target="_blank"
href="https://www.linkedin.com/in/gabriel-augusto-de-vito-d-guimar%C3%A3es-71319b60/"
><span class="fa-container text-center mr-2"
><svg
class="svg-inline--fa fa-linkedin-in fa-w-14 fa-fw"
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="linkedin-in"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
data-fa-i2svg=""
>
<path
fill="currentColor"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
></path></svg
><!-- <i class="fab fa-linkedin-in fa-fw"></i> --></span
>linkedin.com/gabriel-augusto</a
>
</li>
<li class="mb-3">
<a target="_blank" href="https://github.com/gabrieldvt"
><span class="fa-container text-center mr-2"
><svg
class="svg-inline--fa fa-github-alt fa-w-15 fa-fw"
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="github-alt"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 480 512"
data-fa-i2svg=""
>
<path
fill="currentColor"
d="M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"
></path></svg
><!-- <i class="fab fa-github-alt fa-fw"></i> --></span
>github.com/gabrieldvt</a
>
</li>
</ul>
</div>
<!--//secondary-info-->
</div>
<!--//media-body-->
</div>
<!--//media-->
</header>
<div class="resume-body p-5">
<section class="resume-section summary-section mb-5">
<h2
class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3"
>
Carreer Summary
</h2>
<div class="resume-section-content">
<p class="mb-0">
Computer Engineer by Universidade Federal de Goiás
</p>
<p class="mb-0">
6 years of experience as a Full Stack developer 3 years working
with mobile development (Android and iOS) using React Native
Many side projects alongside my carreer.
</p>
</div>
</section>
<!-- CARREIRA -->
<div class="row">
<div class="col-lg-12">
<section class="resume-section experience-section mb-5">
<h2
class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3"
>
Carreer
</h2>
<div class="resume-section-content">
<div class="resume-timeline position-relative">
<!-- Pivot -->
<article
class="resume-timeline-item position-relative pb-5"
>
<div class="resume-timeline-item-header mb-2">
<div class="d-flex flex-column flex-md-row">
<h3
class="resume-position-title font-weight-bold mb-1"
>
Full Stack and Mobile Developer
</h3>
<div class="resume-company-name ml-auto">
<a href="https://www.pivot.com.br" target="_blank"
>Pivot Sistemas de Irrigação</a
>
</div>
</div>
<!--//row-->
<div class="resume-position-time">07/2021 - Today</div>
</div>
<!--//resume-timeline-item-header-->
<div class="resume-timeline-item-desc">
<p></p>
<h4
class="resume-timeline-item-desc-heading font-weight-bold"
>
Accomplishments:
</h4>
<!-- <p>Second contact with a company</p> -->
<ul>
<li>
Development of an Enterprise Resource Planning
system integrated with SAP capable of managing most
of the activities from the company, such as sales
management, purchases, service orders, invoices and
other vital activities for the company.
</li>
<li>
Reports development, data extraction for dashboards.
</li>
<li>
App development for the company, where users can see
their invoices, check their service orders, download
invoices.
</li>
</ul>
<ul class="list-inline">
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>React Native</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Javascript</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Typescript</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Context API</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Styled Components</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>React JS</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>PHP</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Laravel Framework</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>HTML/CSS</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>MySQL</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Oracle</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>GIT</span
>
</li>
</ul>
</div>
<!--//resume-timeline-item-desc-->
</article>
<!--//resume-timeline-item-->
<!-- Simeon -->
<article
class="resume-timeline-item position-relative pb-5"
>
<div class="resume-timeline-item-header mb-2">
<div class="d-flex flex-column flex-md-row">
<h3
class="resume-position-title font-weight-bold mb-1"
>
React Native Developer
</h3>
<div class="resume-company-name ml-auto">
<a href="https://www.simeon.com.br" target="_blank"
>Simeon Estratégia para Ação</a
>
</div>
</div>
<!--//row-->
<div class="resume-position-time">
11/2020 - 07/2021
</div>
</div>
<!--//resume-timeline-item-header-->
<div class="resume-timeline-item-desc">
<p></p>
<h4
class="resume-timeline-item-desc-heading font-weight-bold"
></h4>
<ul>
<li>
Creation of the app for the company (for both
Android and iOS) using React Native and Laravel
Framework as backend for the API.
</li>
<li>
The app allows manager of companies (clients) to
check their strategic goals, monitor their teams
indicators, create and manage business plans, check
the users tasks, create and manage service orders,
check teams activities.
</li>
<li>
Also worked on the backend of a few functionalities
of the system.
</li>
<li>
Optimized SQL queries so that the system operates
better.
</li>
</ul>
<ul class="list-inline">
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>React Native</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>PHP</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Laravel Framework</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Javascript</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>HTML/CSS</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>MySQL</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>GIT</span
>
</li>
</ul>
</div>
<!--//resume-timeline-item-desc-->
</article>
<!--//resume-timeline-item-->
<article
class="resume-timeline-item position-relative pb-5"
>
<div class="resume-timeline-item-header mb-2">
<div class="d-flex flex-column flex-md-row">
<h3
class="resume-position-title font-weight-bold mb-1"
>
Desenvolvedor Web
</h3>
<div class="resume-company-name ml-auto">
<a
href="https://www.polichat.com.br"
target="_blank"
>Polichat</a
>
</div>
</div>
<!--//row-->
<div class="resume-position-time">
08/2018 - 11/2020
</div>
</div>
<!--//resume-timeline-item-header-->
<div class="resume-timeline-item-desc">
<p></p>
<h4
class="resume-timeline-item-desc-heading font-weight-bold"
>
Legado
</h4>
<ul>
<li>
Started as an intern, developing new features using
PHP (Laravel), Javascript, HTML, CSS, solving bugs.
</li>
<li>
Created a frontend where the managers could create a
workflow for their chatbot conversation using React.
</li>
<li>
Created and managed a team for remaking the entire
system of the company (including chat) using React,
NodeJS, Websocket
</li>
<li>
Developed a distribution system so that the clients
could be distributed to the correct available
attendance at the moment
</li>
<li>
Worked with queue management and mensageria systems
using Kafka
</li>
<li>
Created an entire chat (frontend and communication
with backend), end to end application using
Websocket, React, NodeJS, PHP
</li>
<li>
Worked in the transition of a monolith application
in Laravel to microservices in NodeJS and MongoDB
</li>
<li>
Worked in PoliPay, a system to manage and integrate
payment gateway with their chat
</li>
</ul>
<ul class="list-inline">
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>ReactJS</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Redux</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>NodeJS</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>PHP</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Laravel Framework</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>Javascript</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>jQuery</span
>
</li>
<li class="list-inline-item">
<span class="badge badge-secondary badge-pill"
>HTML/CSS</span
>
</li>
<li class="list-inline-item">