-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1162 lines (1072 loc) · 75.6 KB
/
index.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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roger Funaki - QA Analyst | WEB | Mobile | API | Scrum Master</title>
<!-- CSS files-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/skins/color-1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<!--Style switcher-->
<link rel="stylesheet" href="css/skins/color-1.css" class="alternate-style" title="color-1" disabled>
<link rel="stylesheet" href="css/skins/color-2.css" class="alternate-style" title="color-2" disabled>
<link rel="stylesheet" href="css/skins/color-3.css" class="alternate-style" title="color-3" disabled>
<link rel="stylesheet" href="css/skins/color-4.css" class="alternate-style" title="color-4" disabled>
<link rel="stylesheet" href="css/skins/color-5.css" class="alternate-style" title="color-5" disabled>
<link rel="stylesheet" href="css/style-switcher.css">
</head>
<body>
<!--Main Container Start-->
<div class="main-container">
<!--Aside Start-->
<div class="aside">
<div class="logo">
<a href="#"><span>F</span>unaki</a>
</div>
<div class="nav-toggler">
<span></span>
</div>
<ul class="nav">
<li><a href="#home" class="active"><i class="fa fa-home"></i> Home</a></li>
<li><a href="#about"><i class="fa fa-user"></i> About</a></li>
<!-- <li><a href="#services"><i class="fa fa-list"></i>Services</a></li> -->
<li><a href="#projects"><i class="fa fa-briefcase"></i>Projects</a></li>
<li><a href="#contact"><i class="fa fa-comments"></i>Contact</a></li>
</ul>
</div>
<!--Aside End-->
<!--Main content Start-->
<div class="main-content">
<!--Home Section Start-->
<section class="home active section" id="home">
<div class="container">
<div class="row">
<div class="home-info padd-15">
<h3 class="hello">Hello, My name is <span class="name">Roger Funaki</span></h3>
<h3 class="my-profession"><span class="typing">I'm a QA Analyst</span></h3>
<p>
🛠️ HARD SKILLS:<br><br>
Basic Knowledge in Infrastructure and Networks; <br>
Basic knowledge and experience with Google Cloud Platform (GCP), Amazon Web Services
(AWS);<br>
Knowledge in unit, e2e, integration, regression, functional, API, and automated
testing;<br>
Basic knowledge in programming: CSS, HTML, JavaScript, Python, and SQL (databases);<br>
Experience in Monitoring and Observability (SRE): New Relic, Zabbix, Prometheus, and
Grafana;<br>
Experience in Hardware and Support for corporate systems (e.g., CRM, SAP, and
Salesforce);<br>
Knowledge of agile methodologies (Scrum and Kanban) and tools that use these
methodologies: Jira, Trello, and Monday;<br>
Experience with Operating Systems such as Windows and Linux;<br>
Basic knowledge of DevOps Tools: CI/CD - pipelines, Jenkins, Git Runner (GitLab),
GitHub, and Terraform;<br>
Basic knowledge of Testing Frameworks: Postman, Cypress, Cucumber, Selenium, and
WebDriver;<br>
Basic knowledge of Test Scenario Creation and Utilization: BDD (Behavior Driven
Development);<br><br>
🧠 SOFT SKILLS:<br><br>
Clear and effective communication;<br>
Analytical thinking;<br>
Problem-solving;<br>
Team management;<br>
Organization and planning;<br>
Decision-making ability;<br>
Critical thinking;<br>
Adaptability;<br>
Respect for diversity;<br>
Teamwork;<br>
Empathy;<br>
Collaboration;<br>
</p>
<a href="https://github.com/funaki-roger/" class="btn" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/rogerfunaki/" class="btn" target="_blank">LinkedIn</a>
<a href="#contact" data-section-index="0" class="btn hire-me">My contacts</a>
</div>
<div class="home-img padd-15">
<img src="images/perfil.png" alt="">
</div>
</div>
</div>
</section>
<!--Home Section End-->
<!--Abount Section Start-->
<section class="about section" id="about">
<div class="container">
<div class="now">
<div class="section-title padd-15">
<h2>About me</h2>
</div>
</div>
<div class="ro">
<div class="about-content padd-15">
<div class="row">
<div class="about-text padd-15">
<h3>I am a Quality Assurance Analyst and also a <span>Scrum Master</span></h3>
<p>👨💻 I work as a QA (Quality Assurance), responsible for analyzing projects,
identifying necessary tests, and creating detailed test plans.
I conduct functional, regression, and acceptance testing, executing them
accurately and reporting any defects found. I also track these defects,
log incidents and non-conformities, and create comprehensive reports on progress
and results. <br><br>
🛠️ My journey in IT began in 2013, where I developed a solid foundation in
technical support. Over the years, I’ve had the opportunity to work in various
areas,
including Service Desk, Help Desk, IT Technician, Support Analyst, and Cloud
Support. These experiences have given me a broad understanding of the challenges
and
technological needs of companies, enabling me to solve complex problems and
offer efficient support in dynamic environments.<br><br>
🚀 Last year, I transitioned into the QA field, where I can apply my technical
knowledge to ensure products meet the highest quality standards.
My focus is on functional, exploratory, and automated testing, along with
actively participating in continuous improvement processes and test automation.
I contribute to creating new scripts and maintaining automated tests, always
seeking to learn and implement industry best practices.
I also work in Agile environments and support my team as a Scrum Master,
facilitating the effective implementation of agile methodologies. <br><br>
🌐I have an intermediate level of English, with good reading and writing
comprehension, and can understand spoken English well, allowing me to interact
with international teams and projects. <br><br>
</p>
</div>
</div>
<div class="row">
<div class="personal-info padd-15">
<div class="row">
<div class="info-item padd-15">
<p>Birthday: <span>September 1994</span></p>
</div>
<div class="info-item padd-15">
<p>Age: <span>30</span></p>
</div>
<div class="info-item padd-15">
<p>Positions: <span>QA Analyst - Software Testing</span></p>
</div>
<div class="info-item padd-15">
<p>Locations (in person): <span>Downtown SP</span></p>
</div>
<div class="info-item padd-15">
<p>(Remote) Locations: <span>Brazil or let's talk</span></p>
</div>
<div class="info-item padd-15">
<p>Start Date: <span>Imediatamente</span></p>
</div>
<div class="info-item padd-15">
<p>Locality types: <span>Hybrid or Remote</span></p>
</div>
<div class="info-item padd-15">
<p>Freelancer: <span>Available</span></p>
</div>
<div class="info-item padd-15">
<p>Marital status: <span>Married</span></p>
</div>
<div class="info-item padd-15">
<p>City: <span>Barueri - SP</span></p>
</div>
</div>
<div class="row">
<div class="buttons padd-15">
<a href="https://api.whatsapp.com/send?phone=5511942396406&text=&type=phone_number&app_absent=0"
target="_blank" class="btn hire-me">WhatsApp</a>
<a href="https://drive.google.com/file/d/1tkCb1JgmW_Ccd9YNbQl37H-VOXNTcILy/view?usp=sharing"
class="btn" target="_blank">Download CV</a>
</div>
</div>
</div>
<div class="skills padd-15">
<div class="row">
<div class="skill-item padd-15">
<h5>JS</h5>
<div class="progress">
<div class="progress-in" style="width: 46%;"></div>
<div class="skill-percent">46%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>Python</h5>
<div class="progress">
<div class="progress-in" style="width: 46%;"></div>
<div class="skill-percent">46%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>SQL - (banco de dados)</h5>
<div class="progress">
<div class="progress-in" style="width: 70%;"></div>
<div class="skill-percent">70%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>CSS / HTML</h5>
<div class="progress">
<div class="progress-in" style="width: 76%;"></div>
<div class="skill-percent">76%</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="education padd-15">
<h3 class="title">Education</h3>
<div class="row">
<div class="timeline-box padd-15">
<div class="timeline shadow-dark">
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> March 22, 2021 (Completed)
<h4 class="timeline-title">GCP for Beginners 2021</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 5, 2021 (Completed)
<h4 class="timeline-title">LGPD: Understanding Its Impacts</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 10, 2021 (Completed)
<h4 class="timeline-title">Power BI Overview</h4>
<p class="timeline-text">Certificate of Completion: Ka Solution
</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 20, 2021 (Completed)
<h4 class="timeline-title">Google Certified Associate Cloud
Engineer</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> October 6, 2021 (Completed)
<h4 class="timeline-title">Grafana and Telegraf: Real-Time
Monitoring</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> October 6, 2021 (Completed)
<h4 class="timeline-title">Git and GitHub: Control and Share
Your Code</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> October 11, 2021 (Completed)
<h4 class="timeline-title">Git and GitHub: Branching Strategies,
Conflicts, and Pull Requests</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> October 13, 2021 (Completed)
<h4 class="timeline-title">Deploy on Amazon EC2: High
Availability and Scalability of an Application</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 2, 2021 (Completed)
<h4 class="timeline-title">Scrum: Agility in Your Project</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 2, 2021 (Completed)
<h4 class="timeline-title">Linux Terminal, Shell Scripting, and
Network Management</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> January 17, 2022 (Completed)
<h4 class="timeline-title">DevOps Essentials</h4>
<p class="timeline-text">Certificate of Completion: 4Linux</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> January 20, 2022 (Completed)
<h4 class="timeline-title">Containers Fundamentals</h4>
<p class="timeline-text">Certificate of Completion: 4Linux</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> February 3, 2022 (Completed)
<h4 class="timeline-title">Network Architecture</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> February 5, 2022 (Completed)
<h4 class="timeline-title">AWS Cloud Practitioner Essentials Day
</h4>
<p class="timeline-text">Certificate of Completion: Ka Solution
</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> March 31, 2022 (Completed)
<h4 class="timeline-title">AWS for Beginners 2022</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> April 7, 2022 (Completed)
<h4 class="timeline-title">Terraform - From Basics to Advanced
</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> April 11, 2022 (Completed)
<h4 class="timeline-title">DevOps: AWS with Terraform</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> May 2, 2022 (Completed)
<h4 class="timeline-title">New Relic APM</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> May 9, 2022 (Completed)
<h4 class="timeline-title">HTTP: Understanding the Web Behind
the Scenes</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> January 20, 2023 (Completed)
<h4 class="timeline-title">Docker: Creating and Managing
Containers</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> January 20, 2023 (Completed)
<h4 class="timeline-title">Docker: Creating Containers Without a
Headache</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> May 9, 2023 (Completed)
<h4 class="timeline-title">Git and GitHub: Repository, Commit,
and Versions</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> June 5, 2023 (Completed)
<h4 class="timeline-title">MongoDB Champion Certification</h4>
<p class="timeline-text">Certificate of Completion: MongoDB</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> June 15, 2023 (Completed)
<h4 class="timeline-title">SI Associate Certification</h4>
<p class="timeline-text">Certificate of Completion: MongoDB</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> June 17, 2023 (Completed)
<h4 class="timeline-title">DevOps: Starting with DevOps</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 8, 2023 (Completed)
<h4 class="timeline-title">Discover SQL</h4>
<p class="timeline-text">Certificate of Completion: LinkedIn
Learning</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 26, 2023 (Completed)
<h4 class="timeline-title">PostgreSQL</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 14, 2023 (Completed)
<h4 class="timeline-title">Quality Assurance: Test Plan and Bug
Management</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 16, 2023 (Completed)
<h4 class="timeline-title">Quick Start in Testing and QA</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 22, 2023 (Completed)
<h4 class="timeline-title">BDD with Cucumber in JAVA</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 27, 2023 (Completed)
<h4 class="timeline-title">Learn CI/CD with GitLab</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 30, 2023 (Completed)
<h4 class="timeline-title">Postman (2023): From Zero to Advanced
+ Automated Tests</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> December 4, 2023 (Completed)
<h4 class="timeline-title">Automated Testing</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> January 9, 2024 (Completed)
<h4 class="timeline-title">Monday - Basic to Advanced</h4>
<p class="timeline-text">Certificate of Completion: Udemy</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> June 29, 2024 (Completed)
<h4 class="timeline-title">Agile Teams: Organizing Roles in a
Team</h4>
<p class="timeline-text">Certificate of Completion: Alura</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2022 - 2023 - (Completed)
<h4 class="timeline-title">Educational Institution: ETW Idiomas
- Language School</h4>
<p class="timeline-text">Field of Study: English Language and
English Literature</p>
</h3>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2023 - 2025 (Program Paused)
<h4 class="timeline-title">Educational Institution: Estácio de
Sá University</h4>
<p class="timeline-text">Field of Study: Full Stack Development
<br>
Degree: Technologist
</p>
</h3>
</div>
</div>
</div>
</div>
</div>
<div class="experience padd-15">
<h3 class="title">Experience</h3>
<div class="row">
<div class="timeline-box padd-15">
<div class="timeline shadow-dark">
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> November 2023 - Present (11
months)
</h3>
<h4 class="timeline-title">BLOCKBR - Digital Assets - QA Analyst +
Scrum Master</h4>
<p class="timeline-text">
- Team Facilitation: Acted as Scrum Master, facilitating
communication between team members and stakeholders, ensuring
clarity on project status, goals, and obstacles.<br>
- Sprint Management: Planned, executed, and reviewed sprints,
including removing obstacles and collecting metrics to assess
team performance.<br>
- Testing and Quality: Performed functional, regression, and
acceptance testing to ensure product quality.<br>
- Documentation and Reporting: Developed test plans, identified
and reported defects, and prepared detailed incident and
non-conformance reports.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> March 2023 - October 2023 (8
months)
</h3>
<h4 class="timeline-title">SantoDigital - Cloud Analyst</h4>
<p class="timeline-text">
- Database Migration: Migrated PostgreSQL database to GCP Cloud
Spanner, improving performance and scalability.<br>
- Application Development: Participated in all stages of
application deployment, using the Go language.<br>
- Documentation and Presentations: Created detailed
documentation on process advancements and status presentations
for clients.<br>
- Code Review: Reviewed codes on GitHub, applying DevOps best
practices.<br>
- SRE and FinOps Implementation: Implemented SRE practices to
ensure system reliability and adopted FinOps for cloud cost
optimization.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> March 2022 - December 2022 (10
months)
</h3>
<h4 class="timeline-title">Stone Co - Cloud Support Engineer</h4>
<p class="timeline-text">
- Planning and OKRs: Contributed to company planning and
achievement of OKRs.<br>
- Agile Methodologies: Used Scrum and Kanban for time tracking
and structuring tasks via Jira.<br>
- Monitoring and Observability: Used tools like New Relic for
AWS service monitoring, alert creation, and anomaly
detection.<br>
- Development in JavaScript and Python: Developed and maintained
scripts and solutions using these languages.<br>
- Performance Reports: Explained metrics and logs to leadership,
focusing on service performance and availability.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> May 2021 - March 2022 (11 months)
</h3>
<h4 class="timeline-title">Prime Arte - Cloud Analyst</h4>
<p class="timeline-text">
- GCP Management: Managed Google Cloud Platform, implementing
monitoring and automation ideas.<br>
- Cost Optimization: Reduced operational costs through
optimization of virtual machines used for commercial video
editing.<br>
- Backup and Support: Implemented backups on GCP and supported
developers in granting access to APIs and other cloud
resources.<br>
- Azure Hybrid Services: Introduced Azure hybrid services to
improve efficiency and flexibility in managing technological
resources.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> February 2021 - May 2021 (4
months)
</h3>
<h4 class="timeline-title">INTECOM Inteligência Logística - Junior
Support Analyst</h4>
<p class="timeline-text">
- Critical Incident Support: Provided support for critical
incidents and resolved issues in legacy systems.<br>
- Application Installation: Formatted and installed
applications, created documentation, and configured collectors
and POS systems.<br>
- Access Management: Managed backups and access control in data
centers.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> August 2019 - February 2021 (1
year 7 months)
</h3>
<h4 class="timeline-title">TPC - Logistica - IT Technician</h4>
<p class="timeline-text">
- Training and Supervision: Trained and supervised junior
technicians, organized hardware, and managed asset
inventories.<br>
- Network Monitoring: Monitored and analyzed networks (TCP/IP,
DHCP, DNS) and created access through Active Directory.<br>
- Installation Support: Supported installations in branches and
maintained equipment and systems.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> April 2017 - January 2019 (1 year
10 months)
</h3>
<h4 class="timeline-title">Boa Vista SCPC - Helpdesk Technician</h4>
<p class="timeline-text">
- Remote and On-Site Support: Provided support for antivirus and
Office 365 issues.<br>
- Ticket Management: Created and resolved tickets, keeping the
knowledge base up-to-date.<br>
- Process Improvement: Proposed improvements to technical
support processes.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 2016 - October 2016 (4
months)
</h3>
<h4 class="timeline-title">SGS - Helpdesk Technician</h4>
<p class="timeline-text">
- Equipment Inventory: Conducted inventory of equipment and
implemented Office 365 and Windows 10.<br>
- VIP Support: Provided VIP support to clients and attended to
on-call shifts on weekends and holidays.<br>
- Ticket Backlog Management: Opened and closed backlog tickets,
ensuring timely support.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> July 2014 - January 2016 (1 year
7 months)
</h3>
<h4 class="timeline-title">Grupo Protege - Service Desk Analyst</h4>
<p class="timeline-text">
- User Support: Provided support to users, recorded problems,
and resolved low-complexity incidents.<br>
- Access Management: Created and managed access, resolved level
1 tickets, and escalated critical incidents.<br>
- Service Communication: Sent notifications about maintenance
and service interruptions.
</p>
</div>
<!--timeline item-->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> December 2013 - June 2014 (7
months)
</h3>
<h4 class="timeline-title">SONDA IT - IT Assistant</h4>
<p class="timeline-text">
- Administrative Support: Provided administrative support to
departments such as HR and Finance.<br>
- Ticket Management: Organized and tracked technical tickets for
McDonald's stores.<br>
- Equipment and Invoice Management: Managed physical backup
equipment and handled invoice documentation.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Abount Section End-->
<!--
Services Section Start
<section class="service section" id="services">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Services</h2>
</div>
</div>
</div>
<div class="row">
Service item start
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fab fa-whatsapp"></i>
</div>
<h4>WhatsApp</h4>
<p>
+55 11 94239 - 6406
</p>
</div>
</div>
Service item end
Service item start
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fab fa-linkedin-in"></i>
</div>
<h4>LinkedIn</h4>
<p>
linkedin.com/in/rogerfunaki
</p>
</div>
</div>
Service item end
Service item start
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fab fa-instagram"></i>
</div>
<h4>Instagram</h4>
<p>
instagram.com/funakiroger
</p>
</div>
</div>
Service item end
Service item start
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fab fa-github"></i>
</div>
<h4>GitHub</h4>
<p>
github.com/funaki-roger
</p>
</div>
</div>
Service item end
Service item start
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fab fa-telegram"></i>
</div>
<h4>Telegram</h4>
<p>
+55 11 94239 - 6406
</p>
</div>
</div>
Service item end
Service item start
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fab fa-microsoft"></i>
</div>
<h4>Outlook</h4>
<p>
rogerfunaki@outlook.com
</p>
</div>
</div>
Service item end
</div>
</section>
Services Section End
-->
<!--Portfolio Section Start-->
<section class="portfolio section" id="projects">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Portfolio</h2>
</div>
</div>
<div class="row">
<div class="portfolio-heading padd-15">
<h2>Dev Burguer, <br><br>
Online store for burger joints, with features to add and delete snacks via modal.
When finalizing an order, the customer's address is sent to the store's WhatsApp. The
store is open from 6pm to 10pm,
and these hours can be adjusted if necessary. <br><br>
A simple and functional digital menu for a burger joint, developed with HTML, CSS,
TailwindCSS and JavaScript. <br><br>
<a href="https://dev-hamburgueria.vercel.app/" target="_blank" class="btn hire-me">SITE:
Dev Burguer</a>
<a href="https://github.com/funaki-roger/dev-hamburgueria" target="_blank"
class="btn hire-me">GitHub: Dev Burguer</a>
</h2>
</div>
</div>
<div class="row" style="display: flex; gap: 15px;">
<!--portfolio item start-->
<div class="portfolio-item" style="flex: 1;">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/portfolio-1.png" alt="">
</div>
</div>
</div>
<!--portfolio item end-->
<!--portfolio item start-->
<div class="portfolio-item" style="flex: 1;">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/portfolio-2.png" alt="">
</div>
</div>
</div>
<!--portfolio item end-->
</div>