-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
950 lines (900 loc) · 55.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
<!DOCTYPE html>
<html lang="en" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Felipe Tuyama | Senior Software Engineer</title>
<meta property="og:image" content="https://ftuyama.github.io/public/images/thumb.png" />
<meta name="description" content="Felipe Tuyama is a Remote Senior Software Engineer with a degree from ITA (Aeronautics Institute of Technology) in 2017. Currently working as a Ruby software engineer in an international remote team.">
<meta name="keywords" content="Felipe Tuyama,ftuyama,tuyama,felipe-tuyama,software engineer,remote,software,ruby,developer,ita">
<meta name="author" content="Felipe Tuyama">
<!-- Open Sans Google font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400">
<!-- Raleway Google font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:700">
<!-- Favicons -->
<link rel="shortcut icon" href="/public/favico/ruby.ico">
<!-- Ionicon fonts css file -->
<link rel="stylesheet" href="/public/css/ionicons.min.css">
<!-- magnific popup css file -->
<link rel="stylesheet" href="/public/css/magnific-popup.css">
<!-- Animate.css file -->
<link rel="stylesheet" href="/public/css/animate.css">
<!-- Bootstrap.css file -->
<link rel="stylesheet" href="/public/css/bootstrap.min.css">
<!-- Owl carousel css file -->
<link rel="stylesheet" href="/public/css/owl.carousel.css">
<!-- Custom styles css file -->
<link rel="stylesheet" href="/public/css/style.css">
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"address": {
"@type": "PostalAddress",
"addressLocality": "SP",
"addressRegion": "BR"
},
"image": "https://ftuyama.github.io/public/images/me.webp",
"jobTitle": "Senior Software Engineer",
"name": "Felipe Tuyama",
"alumniOf": "Instituto Tecnológico de Aeronáutica",
"birthPlace": "Belo Horizonte, BH",
"birthDate": "1994-11-10",
"gender": "male",
"nationality": "Brazilian",
"url": "https://ftuyama.github.io",
"sameAs" : [
"https://www.linkedin.com/in/felipe-tuyama",
"https://github.com/ftuyama"
]
}
</script>
</head>
<body>
<!-- Start Loading page -->
<div class="loading loaded">
<div class="loading-wrapper">
<div class="rec r1"></div>
<div class="rec r2"></div>
<div class="rec r3"></div>
<div class="rec r4"></div>
<div class="rec r5"></div>
</div>
</div>
<!-- End Loading page -->
<!-- Start Header Section -->
<div class="header" id="header">
<div id="large-header" class="large-header" style="height: 608px;">
<canvas id="demo-canvas" width="1366" height="608"></canvas>
<div class="content center">
<div class="container">
<p>Hello, It's me</p>
<h1>Felipe Tuyama</h1>
<p>Remote Senior Software Engineer</p>
<a href='/public/resume.pdf'>Resume .pdf</a>
<a href="#experiences">my works</a>
</div>
<!-- End container -->
</div>
<div class="mouse" id="mouse"></div>
<!-- Mouse Icon -->
</div>
</div>
<!-- End Header Section -->
<!-- Start Side Menu -->
<nav id="top-nav">
<div class="logo center"><a href="#">Top</a></div>
<!-- LOGO -->
<div class="menu" id="menu">
<span class="bar b1"></span>
<span class="bar b2"></span>
<span class="bar b3"></span>
</div>
<div class="side-menu" id="side-menu">
<!-- Menu items -->
<a href="#header">Home</a>
<a href="#about-me">about me</a>
<a href="#experiences">experiences</a>
<a href="#portfolio">Portfolio</a>
<a href="#skills">skills</a>
<a href="#services">services</a>
</div>
<div class="right-menu">
<!-- Void -->
</div>
</nav>
<!-- End Side Menu -->
<!-- Start About Me Section -->
<div class="about-me clearfix" id="about-me">
<div class="container">
<div class="row">
<!-- Profile Pic -->
<div class="my-pic center col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="https://www.linkedin.com/in/felipe-tuyama">
<img loading="lazy" src="/public/images/me.webp" alt="Felipe Tuyama image" height="250">
</a>
<a target="_blank" href="https://github.com/ftuyama">
<img loading="lazy" src="https://avatars2.githubusercontent.com/u/11530478?s=460&v=4" alt="Felipe Tuyama Github image" height='75px' class='github-img'>
</a>
</div>
<div class="introduction col-sm-8 col-xs-12 wow fadeInUp" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<h2 class="h2">About me</h2>
<div class="heading-line"></div>
<p class="introduce">talented Senior Software Engineer</p>
<p class="intro">I am a <span class="age">26</span> years old remote senior software engineer
specialist in web development using Ruby
on Rails, Elixir, Vue.js and Typescript, with <span class="exp">5</span>+ years of
experience.
<br>
<br>
I enjoy solving complex challenges and building
applications, I'm often recognized for my strong
reasoning, quick-learning, and pro-activity.</p>
</div>
</div>
<div class="row">
<div class="profile col-sm-4 col-xs-12 wow fadeInUp text-center" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<h3>personal info</h3>
<div class="heading-line"></div>
<div class="personal-wrapper">
<span><strong>name: </strong>Felipe Tuyama</span>
<span><strong>time of experience: </strong><strong><span class="exp">5</span>+ years</strong>
<p><small>as Software Engineer</small></p>
</span>
<span><strong>graduation: </strong><a target="_blank" href="http://www.ita.br/" class="blue-link">ITA (2017)</a></span>
<span><strong>post graduation: </strong><a target="_blank" href="https://www.mtu.ie/" class="blue-link">MTU (2023)</a></span>
<span><strong>location: </strong><a target="_blank" href="#map" class="blue-link">🇧🇷 - SP - BR</a></span>
<div class="center">
<!-- Social links -->
<div class="icon-wrapper reduced center">
<a target="_blank" href="https://github.com/ftuyama" class="icon gh ion-social-github"></a>
<a target="_blank" href="https://www.linkedin.com/in/felipe-tuyama" class="icon li ion-social-linkedin"></a>
<a target="_blank" href="https://stackoverflow.com/users/6275081/felipe-tuyama" class="icon so ion-stackoverflow"></a>
</div>
</div>
</div>
</div>
<div class="why-me col-sm-8 col-xs-12 wow fadeInUp" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<!-- Start Accordion -->
<div class="accordion">
<div class="acc-item">
<div class="acc-title"><i class="ion-android-navigate"></i> Who am i?</div>
<div class="acc-content">I'm a software engineer interested in learning new technologies and facing new challenges. Since my first C coding class at university, I'm fascinated by software.</div>
</div>
<div class="acc-item">
<div class="acc-title"><i class="ion-android-navigate"></i> What I'm really good at?</div>
<div class="acc-content">Efficiently formulate solutions using logical approach to the problems. I'm a fast learner and thinker, using my knowledge to design the best strategy ever.</div>
</div>
<div class="acc-item">
<div class="acc-title"><i class="ion-android-navigate"></i> How can you contact me?</div>
<div class="acc-content">Simply send me an email or call me on LinkedIn. I'd be pleased to discuss some interesting idea or project proposal.</div>
</div>
<div class="acc-item">
<div class="acc-title active"><i class="ion-android-navigate"></i> Some public appearances</div>
<div class="acc-content" style="display: block;">
<ul>
<li><a target="_blank" href="http://www.ita.br/noticias169" class="blue-link">Featured in ITA</a> - my undergraduate university</li>
<li><a target="_blank" href="http://www.maximuscolegio.com.br/arquivos_2013/jornal/Jornal%20Maximus-Edi%C3%A7%C3%A3o%209.pdf" class="blue-link">Featured in Maximus</a> - my high school</li>
</ul>
</div>
</div>
</div>
<!-- End Accordion -->
</div>
</div>
</div>
</div>
<!-- End About Me Section -->
<!-- Start Fun Facts Section -->
<div class="fun-facts center" id="facts">
<div class="pattern"></div>
<div class="container">
<div class="row">
<!-- Fact No. 1 -->
<div class="col-md-3 col-sm-6">
<div class="fact">
<i class="ion-code-working"></i>
<p id="number_1" class="fact-number">0</p>
<span>lines of code</span>
</div>
</div>
<!-- Fact No. 2 -->
<div class="col-md-3 col-sm-6">
<div class="fact">
<i class="ion-fork-repo"></i>
<p id="number_2" class="fact-number">0</p>
<span>projects done</span>
</div>
</div>
<!-- Fact No. 3 -->
<div class="col-md-3 col-sm-6">
<div class="fact">
<i class="ion-coffee"></i>
<p id="number_3" class="fact-number">0</p>
<span>cups of coffee</span>
</div>
</div>
<!-- Fact No. 4 -->
<div class="col-md-3 col-sm-6">
<div class="fact">
<i class="ion-happy"></i>
<p id="number_4" class="fact-number">0</p>
<span>satisfied customers</span>
</div>
</div>
</div>
</div>
</div>
<!-- End Fun Facts Section -->
<!-- Start Experience Section -->
<div class="experiences center" id="experiences">
<div class="container">
<!-- Title -->
<div class="title wow fadeIn" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<h2 class="h2">work experiences</h2>
<div class="heading-line"></div>
<p class="main-para">Knowing better my trajectory. In essence, you make your choices, and then your choices make you.</p>
</div>
<!-- start timeline -->
<div class="timeline wow fadeIn" data-wow-duration="0.25s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<!-- Event No. 0 -->
<div class="timeline-block clearfix wow fadeInRight" data-wow-duration="0.25s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="http://www.maximuscolegio.com.br/arquivos_2013/jornal/Jornal%20Maximus-Edi%C3%A7%C3%A3o%209.pdf#page=7">
<div class="brand big icon">
<i class="ion-university"></i>
</div>
<div class="content right round-corners">
<h3 class="link-effect">Maximus</h3>
<span class="duration">( Jan. 2001 : Dec 2012 ) 🇧🇷</span>
<span class="job-title"> Student </span>
<p>
I always loved physics and math, solving puzzles used to be my hobby. After years of dedication,
I participated and won awards on national olympiads:
<br><br>
<ul>
<li>Gold Medal - Brazilian Physics Olympiad - OBF 2012</li>
<li>Gold Medal - Brazilian Astronomy Olympiad - OBA 2012</li>
</ul>
</p>
</div>
</a>
</div>
<!-- Event No. 1 -->
<div class="timeline-block clearfix wow fadeInLeft" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="http://www.ita.br">
<img loading="lazy" class="brand big" src="/public/images/brands/ita.webp" alt="ITA brand">
<div class="content left round-corners">
<h3 class="link-effect">ITA</h3>
<span class="duration">( Jan. 2013 : Dec 2017 ) 🇧🇷</span>
<span class="job-title"> Computer Engineer </span>
<p>
After learning how to develop, I never stopped anymore. Graduated as a Computer engineer
(with grades award) at ITA - Aeronautics Institute of Technology.
<br><br>
<a target="_blank" href="http://www.ita.br/noticias169" class="highlight link-effect">Professor Celso de Renna e Souza award
<br><b>(Best computer engineering student)</b>
</a>
</p>
</div>
</a>
</div>
<!-- Event No. 2 -->
<div class="timeline-block clearfix wow fadeInRight" data-wow-duration="0.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="http://www.ita.br">
<img loading="lazy" class="brand big" src="/public/images/brands/ita.webp" alt="ITA brand">
<div class="content right round-corners">
<h3 class="link-effect">ITA</h3>
<span class="duration">( Jan. 2015 : Dec 2015 ) 🇧🇷</span>
<span class="job-title"> Research and Development Intern </span>
<p>
Joined the undergraduate research mentorship program at ITA, developed software projects related
to academic research. Published articles in IEEE and Latin American Journal of Physics Education.
<br><br>
<ul>
<li><a target="_blank" href="https://ieeexplore.ieee.org/document/7822920/" class="highlight link-effect">Asynchronous Finite State Machines</a></li>
<li><a target="_blank" href="https://www.researchgate.net/publication/264120705_Simulacoes_do_Mathematica_aplicadas_ao_ensino_de_fisica" class="highlight link-effect">Physics simulation article</a></li>
<li><a target="_blank" href="https://www.researchgate.net/publication/264120801_Obtencao_da_temperatura_de_microplasmas_a_partir_das_linhas_de_espectro" class="highlight link-effect">Measuring microplasma temperature</a></li>
</ul>
</p>
</div>
</a>
</div>
<!-- Event No. 3 -->
<div class="timeline-block clearfix wow fadeInLeft" data-wow-duration="1.0s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="https://www.buson.com.br">
<img loading="lazy" class="brand" src="/public/images/brands/buson.webp" alt="Buson brand">
<div class="content left round-corners">
<h3 class="link-effect">Buson</h3>
<span class="duration">( Jan. 2016 : Dec. 2016 ) 🇧🇷</span>
<span class="job-title"> Intern Mobile developer</span>
<p>
Buson is an online marketplace that sells bus tickets in Brazil, with over 200 integrations and 4000 destinations.
</p>
<br>
<p>
Internship experience developing from scratch a native iOS application. I also built internal tools as a backend web developer for some time.
</p>
<br>
<p>
<b>Tech-stack</b>: Objective-C, Swift, Xcode, Spring, Java, Groovy
</p>
</div>
</a>
</div>
<!-- Event No. 4 -->
<div class="timeline-block clearfix wow fadeInRight" data-wow-duration="1.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="http://quero.education">
<img loading="lazy" class="brand" src="/public/images/brands/quero.webp" alt="Quero Education brand">
<div class="content right round-corners">
<h3 class="link-effect">Quero Educação</h3>
<span class="duration">( Jan. 2017 : June 2019 ) 🇧🇷</span>
<span class="job-title"> Intern Web Developer</span>
<p>
Quero Education is an online marketplace for college programs in Brazil. It helps
students search, compare and enroll in programs in over 1200 partner colleges,
saving money on tuition.
</p>
<br>
<p>
Joined the company as an intern web developer, being hired as a developer after 6 months in the company.
</p>
<hr>
<span class="job-title"> Full-Stack Web Developer</span>
<p>
Joined the CRM squad (Customer Relationship Management) developing tools to attract, track and qualify new users. Brokedown the monolith into many microservices applications using best practices and terraform.
</p>
<hr>
<span class="job-title"> Tech-Lead</span>
<p>
Technical Lead responsible for optimizing the performance and memory of a production project aimed to launch marketing campaigns to more than 600,000 customers every day.
</p>
<br>
<p>
<b>Tech-stack</b>: Ruby on Rails, Elixir, Vue.js, Sidekiq, RSpec, Docker, AWS, Terraform
</p>
</div>
</a>
</div>
<!-- Event No. 5 -->
<div class="timeline-block clearfix wow fadeInLeft" data-wow-duration="1.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="https://www.linkedin.com/company/infinitusgo/">
<img loading="lazy" class="brand" src="/public/images/brands/infinitusgo.webp" alt="Infinitus GO brand">
<div class="content left round-corners">
<h3 class="link-effect">Infinitus GO</h3>
<span class="duration">( Jun. 2019 : Feb 2020 ) 🇧🇷</span>
<span class="job-title"> Senior Software Developer</span>
<p>
A financial market investing startup needing to automate and improve operations at the Cryptocurrency financial market.
</p>
<br>
<p>
Built a web platform to help the trader’s operation. Architected a trading bot’s framework for concurrent and real time machine state transactions, using WebSocket integration with foreign cryptocurrency exchanges like Binance and Huobi.
</p>
<br>
<p>
<b>Tech-stack</b>: Python, Angular, Typescript, Chrome extension, Java, Elixir, AWS
</p>
</div>
</a>
</div>
<!-- Event No. 6 -->
<div class="timeline-block clearfix wow fadeInRight" data-wow-duration="1.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="https://www.thetrainline.com">
<img loading="lazy" class="brand" src="/public/images/brands/trainline.webp" alt="Trainline brand">
<div class="content right round-corners">
<h3 class="link-effect">Trainline</h3>
<span class="duration">( Feb 2020 : June 2023 ) Remote 🇬🇧</span>
<span class="job-title"> Software Engineer</span>
<p>
Trainline is the leading independent rail and coach travel platform selling rail and coach tickets to millions of travellers worldwide and across Europe.
</p>
<br>
<p>
Working in an international team at Trainline (UK, FR, and BR members). Responsible for maintaining and improving train carrier integrations and their stations. Also designed and developed a new carrier integration.
</p>
<hr>
<span class="job-title"> Software Engineering Team Lead</span>
<p>
Promoted to Engineering Team Lead, responsible for maintaining nd improving 5 vendor integrations.
</p>
<br>
<p>
My team was responsible for reducing Trainline's financial loss by 137,000 € / month, by designing a new asynchronous and fault-tolerant refunding operation.
</p>
<br>
<p>
<b>Tech-stack</b>: Ruby, Rack, Minitest, Kibana, React, AWS, Terraform
</p>
</div>
</a>
<a target="_blank" href="https://www.vigil.global">
<img loading="lazy" class="brand small" src="/public/images/brands/vigil.webp" alt="Vigil brand">
</a>
</div>
<!-- Event No. 7 -->
<div class="timeline-block clearfix wow fadeInLeft" data-wow-duration="1.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="https://www.thereformation.com/">
<img loading="lazy" class="brand" src="/public/images/brands/reformation.webp" alt="The Reformation brand">
<div class="content left round-corners">
<h3 class="link-effect">The Reformation</h3>
<span class="duration">( June 2023 : Now ) Remote 🇺🇸</span>
<span class="job-title"> Senior Software Engineer</span>
<p>
Founded in 2009, Reformation is a revolutionary lifestyle brand that proves fashion and sustainability can coexist.
</p>
<br>
<p>
Reformation combines stylish, vintage-inspired designs with sustainable practices, releasing limited-edition collections for individuals who want to look beautiful and live sustainably.
</p>
<br>
<p>
<b>Tech-stack</b>: Ruby on Rails, Rspec, Vue.js, AWS, AWS Lambda
</p>
</div>
</a>
<a target="_blank" href="https://www.teaminternational.com">
<img loading="lazy" class="brand small" src="/public/images/brands/teaminternational.webp" alt="Team International brand">
</a>
</div>
<!-- Event No. 8 -->
<div class="timeline-block clearfix wow fadeInRight" data-wow-duration="1.5s" data-wow-offset="200" style="animation-duration: 0.5s; animation-name: none;">
<a target="_blank" href="https://www.mtu.ie/">
<img loading="lazy" class="brand" src="/public/images/brands/mtu.webp" alt="Munster Technological University brand">
<div class="content right round-corners">
<h3 class="link-effect">Munster Technological University</h3>
<span class="duration">( September 2023 : Now ) Remote 🇮🇪</span>
<span class="job-title"> MSc in Software Architecture & Design </span>
<p>
The MSc in Software Architecture & Design programme is an advanced industry-focused programme that addresses the skills gap of software developers and/or architects in the face of evolving software development practices.
</p>
</div>
</a>
</div>
</div>
<!-- End Timeline -->
</div>
<div class="experience-section">
<p><b>Total Experience Time</b></p>
<div class="heading-line"></div>
<p class="experience-text"><span class="exp">5</span>+ years
<a target="_blank" href="https://www.linkedin.com/in/felipe-tuyama">
<span class="highlight">as Software Engineer</span>
</a>
</p>
</div>
</div>
<!-- End Experience Section -->
<!-- Start Quote Section -->
<div class="quote">
<div class="overlay"></div>
<div class="container">
<div class="qoute-wrapper">
<p class="words"><span class="quote-mark open">"</span>One cannot guess the real difficulties of a problem before having solved it.<span class="quote-mark end">"</span></p>
<p class="author">- Carl Siegel -</p>
</div>
</div>
</div>
<!-- End Quote Section -->
<!-- Start Portfolio Section -->
<div class="portfolio center" id="portfolio">
<div class="container">
<!-- Title -->
<div>
<h2 class="h2">My awesome portfolio</h2>
<div class="heading-line"></div>
<p class="main-para">Beautiful solutions and projects I have done in the past.</p>
</div>
<!-- Mixitup controls -->
<div class="controls">
<button class="filter round-corners active" data-filter="all" data-content="All">All</button>
<button class="filter round-corners" data-filter=".web" data-content="WEB">WEB</button>
<button class="filter round-corners" data-filter=".backend" data-content="BACKEND">BACKEND</button>
<button class="filter round-corners" data-filter=".other" data-content="OTHER">OTHER</button>
</div>
<div id="Container">
<div class="mix backend col-md-3 col-sm-6 col-xs-6" data-my-order="0" style="display: inline-block;" data-bound="">
<div class="img-wrapper overlay-slide-right center project-image-wrapper">
<img loading="lazy" src="public/images/projects/TEEG.webp" class="center-block img-responsive project-image-small" alt="TEEG project">
<div class="overlay-content">
<span>TEEG</span>
<a href="#project-0" class="open-popup-link" aria-label="Project 0">
<i class="ion-android-search"></i>
</a>
<!-- popUp content -->
<div id="project-0" class="white-popup mfp-hide">
<h3>
<a target="_blank" href="https://github.com/ftuyama/TEEG" class="black-link">
TEEG <i class="black-icon icon gh ion-social-github"></i></a>
</h3>
<div class="heading-line"></div><br>
<img loading="lazy" src="public/images/projects/TEEG-details.webp" class="center-block img-responsive project-image" alt="TEEG project">
<h4>Graduation Thesis</h4>
<p class="description">The thesis studies the EEG signals and their characteristics, using neural networks of deep learning to
model high level abstractions. The elaborated algorithm was used to control a robotic arm, culminating
in the proof of concept of a BCI (Brain Computer Interface) application.</p>
<div><a target="_blank" href="https://www.youtube.com/watch?v=jYJjh-k50YA" class="black-link">Youtube demonstration</a></div>
</div>
</div>
</div>
</div>
<div class="mix web col-md-3 col-sm-6 col-xs-6" data-my-order="1" style="display: inline-block;" data-bound="">
<div class="img-wrapper overlay-slide-right center project-image-wrapper">
<img loading="lazy" src="public/images/projects/crono.webp" class="center-block img-responsive project-image-small" alt="crono project">
<div class="overlay-content">
<span>Crono</span>
<a href="#project-1" class="open-popup-link" aria-label="Project 1">
<i class="ion-android-search"></i>
</a>
<!-- popUp content -->
<div id="project-1" class="white-popup mfp-hide">
<h3>
<a target="_blank" href="https://github.com/ftuyama/Crono" class="black-link">
Crono <i class="black-icon icon gh ion-social-github"></i></a>
</h3>
<div class="heading-line"></div><br>
<img loading="lazy" src="public/images/projects/crono-details.webp" class="center-block img-responsive project-image" alt="crono project">
<h4>University project</h4>
<p class="description">A web calendar application using Node.js and Angular.js, developed by
hobby. Crono integrates Google and Facebook events, adding extra features using, allowing a “Kanban
mode”. Also includes a chat using Redis cache as content storage.</p>
</div>
</div>
</div>
</div>
<div class="mix backend col-md-3 col-sm-6 col-xs-6" data-my-order="2" style="display: inline-block;" data-bound="">
<div class="img-wrapper overlay-slide-right center project-image-wrapper">
<img loading="lazy" src="public/images/projects/trader-bot.webp" class="center-block img-responsive project-image-small" alt="trader bot">
<div class="overlay-content">
<span>Trader Bot</span>
<a href="#project-2" class="open-popup-link" aria-label="Project 2">
<i class="ion-android-search"></i>
</a>
<!-- popUp content -->
<div id="project-2" class="white-popup mfp-hide">
<h3>
Trader Bot
</h3>
<div class="heading-line"></div><br>
<img loading="lazy" src="public/images/projects/trader-bot-details.webp" class="center-block img-responsive project-image" alt="trader bot">
<h4>Infinitus GO project</h4>
<p class="description">Trading bot is a complete bot engine framework built using Python3
and API integration to more then 60 exchanges such as Binance Futures and Huobi.<br>
It's a platform to easily build, test and simulate new trading strategies,
created together with the trader's team.</p>
</div>
</div>
</div>
</div>
<div class="mix backend other col-md-3 col-sm-6 col-xs-6" data-my-order="3" style="display: inline-block;" data-bound="">
<div class="img-wrapper overlay-slide-right center project-image-wrapper">
<img loading="lazy" src="public/images/projects/alcxms.webp" class="center-block img-responsive project-image-small" alt="alc xms">
<div class="overlay-content">
<span>ALC XMS</span>
<a href="#project-3" class="open-popup-link" aria-label="Project 3">
<i class="ion-android-search"></i>
</a>
<!-- popUp content -->
<div id="project-3" class="white-popup mfp-hide">
<h3>
<a target="_blank" href="https://github.com/ftuyama/ALC_XMS" class="black-link">
ALC XMS <i class="black-icon icon gh ion-social-github"></i></a>
</h3>
<div class="heading-line"></div><br>
<img loading="lazy" src="public/images/projects/alcxms-details.webp" class="center-block img-responsive project-image" alt="alc xms">
<h4>Scientific project</h4>
<p class="description">ALC XMS is a undergraduate scientific project to synthesize an asynchronous machine state VHDL
(Hardware Description Language) from a simple machine state description, using a C software I developed.</p>
<div><a target="_blank" href="https://ieeexplore.ieee.org/document/7822920/" class="black-link">IEEE publication</a></div>
</div>
</div>
</div>
</div>
<div class="mix backend web col-md-3 col-sm-6 col-xs-6" data-my-order="3" style="display: inline-block;" data-bound="">
<div class="img-wrapper overlay-slide-right center project-image-wrapper">
<img loading="lazy" src="public/images/projects/devmanager.webp" class="center-block img-responsive project-image-small" alt="devmanager">
<div class="overlay-content">
<span>Dev Manager</span>
<a href="#project-4" class="open-popup-link" aria-label="Project 4">
<i class="ion-android-search"></i>
</a>
<!-- popUp content -->
<div id="project-4" class="white-popup mfp-hide">
<h3>
<a target="_blank" href="https://github.com/ftuyama/dev-manager" class="black-link">
Dev Manager <i class="black-icon icon gh ion-social-github"></i></a>
</h3>
<div class="heading-line"></div><br>
<img loading="lazy" src="public/images/projects/devmanager-details.webp" class="center-block img-responsive project-image" alt="dev manager">
<h4>Engineering manager project</h4>
<p class="description">The Dev Manager Project is a tool designed to help development managers
track the performance of their developers by collecting data from Slack, JIRA, and Gitlab.
</p>
<div>
<a target="_blank" href="https://ftuyama.github.io/dev-manager/" class="black-link">https://ftuyama.github.io/dev-manager/</a>
</div>
</div>
</div>
</div>
</div>
<div class="mix web col-md-3 col-sm-6 col-xs-6" data-my-order="3" style="display: inline-block;" data-bound="">
<div class="img-wrapper overlay-slide-right center project-image-wrapper">
<img loading="lazy" src="public/images/projects/cracking-the-tech-interview.webp" class="center-block img-responsive project-image-small" alt="cracking the tech interview">
<div class="overlay-content">
<span>Cracking the Tech Interview</span>
<a href="#project-5" class="open-popup-link" aria-label="Project 5">
<i class="ion-android-search"></i>
</a>
<!-- popUp content -->
<div id="project-5" class="white-popup mfp-hide">
<h3>
<a target="_blank" href="https://github.com/ftuyama/cracking-the-tech-interview" class="black-link">
Cracking the Tech Interview <i class="black-icon icon gh ion-social-github"></i></a>
</h3>
<div class="heading-line"></div><br>
<p class="description">Cracking the Tech Interview is a live library project designed to help developers on technical interviews,
including knowledge of programming languages concepts, architecture, english, and much more
</p>
<div>
<a target="_blank" href="https://ftuyama.github.io/cracking-the-tech-interview/" class="black-link">https://ftuyama.github.io/cracking-the-tech-interview/</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Certificates -->
<div class="certificates center">
<h2 class="h2">My certificates</h2>
<div class="heading-line"></div>
<p class="main-para">Courses and certificates I achieved.</p>
<br>
<div id='certificates' class="owl-carousel owl-theme"></div>
</div>
</div>
<!-- End Portfolio Section -->
<!-- Start Technical Skills Section -->
<div class="technical-skills center" id="skills">
<div class="pattern"></div>
<div class="container">
<!-- Title -->
<div class="title">
<h2 class="h2">technical skills</h2>
<div class="heading-line"></div>
<p class="title">Authoritatively foster bricks-and-clicks networks rather than superior architectures. Compellingly mesh frictionless imperatives vis-a-vis emerging.</p>
</div>
<!-- Start main skills -->
<div class="skills-wrapper row">
<!-- main skill No. 1 -->
<div class="skill col-md-3 col-sm-6">
<div class="chart center" data-percent="88">
<span><span id="chart_num_1">0</span> %</span>
</div>
<h3 class="h2">Web Dev</h3>
<h4 class="h3">Ruby</h4>
<h4 class="h3">Python</h4>
<h4 class="h3">Elixir</h4>
</div>
<!-- main skill No. 2 -->
<div class="skill col-md-3 col-sm-6">
<div class="chart center" data-percent="63">
<span><span id="chart_num_2">0</span> %</span>
</div>
<h3 class="h2">Front Dev</h3>
<h4 class="h3">React.js</h4>
<h4 class="h3">Angular</h4>
<h4 class="h3">Vue.js</h4>
</div>
<!-- main skill No. 3 -->
<div class="skill col-md-3 col-sm-6">
<div class="chart center" data-percent="72">
<span><span id="chart_num_3">0</span> %</span>
</div>
<h3 class="h2">Tooling</h3>
<h4 class="h3">Testing</h4>
<h4 class="h3">Docker</h4>
<h4 class="h3">PostgreSQL</h4>
</div>
<!-- main skill No. 4 -->
<div class="skill col-md-3 col-sm-6">
<div class="chart center" data-percent="45">
<span><span id="chart_num_4">0</span> %</span>
</div>
<h3 class="h2">Devops</h3>
<h4 class="h3">AWS</h4>
<h4 class="h3">New Relic</h4>
<h4 class="h3">Terraform</h4>
</div>
</div>
<hr>
<!-- End main skills -->
<div class="other-skills">
<h2 class="h2">language skills</h2>
<div class="heading-line"></div>
<p class="title">Distinctively implement granular e-commerce whereas business innovation. Rapidiously unleash viral niches vis-a-vis real-time catalysts.</p>
<!-- Start dev skills -->
<div class="skills-wrapper row">
<!-- Skill No. 1 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-6" data-max="7">
<div class=" bar_group__bar thick red elastic" data-value="6" data-tooltip="true" data-label="ruby" data-show-values="true" data-unit="years" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 2 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-8" data-max="5">
<div class=" bar_group__bar thick red elastic" data-value="4" data-tooltip="true" data-label="python" data-show-values="true" data-unit="years" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 3 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-8" data-max="7">
<div class=" bar_group__bar thick red elastic" data-value="6" data-tooltip="true" data-label="javascript" data-show-values="true" data-unit="years" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 4 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-7" data-max="5">
<div class=" bar_group__bar thick red elastic" data-value="3" data-tooltip="true" data-label="elixir" data-show-values="true" data-unit="years" style="margin-bottom: 40px;"></div>
</div>
</div>
<!-- End other skills -->
<hr>
<!-- Start lanaguage skills -->
<div class="skills-wrapper row">
<!-- Skill No. 1 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-1" data-max="100">
<div class=" bar_group__bar thick elastic" data-value="100" data-tooltip="true" data-label="portuguese (native)" data-show-values="true" data-unit="%" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 2 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-2" data-max="100">
<div class=" bar_group__bar thick elastic" data-value="100" data-tooltip="true" data-label="english (fluent)" data-show-values="true" data-unit="%" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 3 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-5" data-max="100">
<div class=" bar_group__bar thick elastic" data-value="40" data-tooltip="true" data-label="japanese (basics)" data-show-values="true" data-unit="%" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 4 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-3" data-max="100">
<div class=" bar_group__bar thick elastic" data-value="40" data-tooltip="true" data-label="spanish (basics)" data-show-values="true" data-unit="%" style="margin-bottom: 40px;"></div>
</div>
<!-- Skill No. 5 -->
<div class="bar_group col-md-6 col-xs-12 group_ident-4" data-max="100">
<div class=" bar_group__bar thick elastic" data-value="30" data-tooltip="true" data-label="german (basics)" data-show-values="true" data-unit="%" style="margin-bottom: 40px;"></div>
</div>
</div>
</div>
</div>
</div>
<!-- End Technical Skills Section -->
<!-- Start Services Section -->
<div class="services center" id="services">
<div class="container">
<!-- Title -->
<div class="title">
<h2 class="h2">Here's what i'm doing</h2>
<div class="heading-line"></div>
<p class="main-para">About my daily work and stuff I really love doing.</p>
</div>
<div class="row">
<!-- Service No. 1 -->
<div class="col-md-3 col-sm-6">
<div class="service">
<i class="ion-social-css3-outline"></i>
<h3>HTML5/CSS coding</h3>
<p>I really like coding solutions to people, tools and pages that solve real problems.</p>
</div>
</div>
<!-- Service No. 2 -->
<div class="col-md-3 col-sm-6">
<div class="service">
<i class="ion-code"></i>
<h3>development</h3>
<p>Love coding and building amazing solutions, planning the best architecture I can.</p>
</div>
</div>
<!-- Service No. 3 -->
<div class="col-md-3 col-sm-6">
<div class="service">
<i class="ion-monitor"></i>
<h3>product</h3>
<p>Developing better products and giving user the best experience they can have.</p>
</div>
</div>
<!-- Service No. 4 -->
<div class="col-md-3 col-sm-6">
<div class="service">
<i class="ion-android-color-palette"></i>
<h3>architecture</h3>
<p>Designing software is not only about coding. It's about planning, making good choices.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Services Section -->
<div>
<!-- Google Map -->
<!-- https://maps-website.com/ -->
<div style="position: relative; overflow: hidden; width: 100%;">
<iframe title="Google Maps" style="width: 100%;" height="500" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=1000&height=500&hl=en&q=%20S%C3%A3o%20Jos%C3%A9%20dos%20Campos+()&t=&z=3&ie=UTF8&iwloc=B&output=embed">
</iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Start Footer Section -->
<div class="footer center">
<div class="container">
<div class="row">
<div class="follow-me">follow me</div>
<div class="col-md-12 col-xs-12 links">
<!-- Social links -->
<div class="icon-wrapper center">
<a target="_blank" href="#" class="icon fb ion-social-facebook" aria-label="Facebook"></a>
<a target="_blank" href="https://twitter.com/home" class="icon tw ion-social-twitter" aria-label="Twitter"></a>
<a target="_blank" href="https://www.youtube.com/channel/UCde9tQl7PSeTdMRMtcv-HTw" class="icon yt ion-social-youtube" aria-label="Youtube"></a>
<a target="_blank" href="https://github.com/ftuyama" class="icon gh ion-social-github" aria-label="Github"></a>
<a target="_blank" href="https://www.linkedin.com/in/felipe-tuyama" class="icon li ion-social-linkedin" aria-label="LinkedIn"></a>
<a target="_blank" href="https://stackoverflow.com/users/6275081/felipe-tuyama" class="icon so ion-stackoverflow" aria-label="Stack Overflow"></a>
</div>
</div>
<div class="col-md12 col-xs-12 copyright">
<h4 style="color:white">© Felipe Tuyama profile, <span class="year">2024</span></h4>
</div>
</div>
</div>
</div>
<!-- End Footer Section -->
<!-- Start To Top button -->
<div class="back-to-top center">
<i class="ion-android-navigate"></i>
</div>
<!-- End To Top button -->
<!-- Start scroll percentage -->
<div id="scroll"></div>
<!-- End scroll percentage -->
<!-- Including jQuery file -->
<script src="/public/js/jquery-1.12.1.min.js"></script>
<script src="/public/js/utils.js"></script>
<!-- Including jQuery.appear file -->
<script async src="/public/js/jquery.appear.min.js"></script>
<!-- Bootstrap js file -->
<script async src="/public/js/bootstrap.min.js"></script>
<!-- easy pie chart -->
<script async src="/public/js/jquery.easypiechart.min.js"></script>
<!-- NiceScroll plugin -->
<script async src="/public/js/jquery.nicescroll.min.js"></script>
<!-- animate numbers plugin -->
<script async src="/public/js/jquery.animatenumber.min.js"></script>
<!-- Horizontal bar chart -->
<script async src="/public/js/bars.min.js"></script>
<!-- mixitup plugin -->
<script async src="/public/js/jquery.mixitup.min.js"></script>
<!-- animated background header -->
<script async src="/public/js/tweenlite.min.js"></script>
<script async src="/public/js/animated-object.min.js"></script>
<script async src="/public/js/easy-pack.min.js"></script>
<!-- magnific popup js file -->
<script async src="/public/js/magnific-popup.min.js"></script>
<!-- Owl carousel js file -->
<script async src="/public/js/owl.carousel.min.js"></script>
<!-- Wow.js file -->
<script async src="/public/js/wow.min.js"></script>
<!-- Custom file -->
<script async src="/public/js/home.js"></script>
<div style="text-align: center;">
<div style="position:relative; top:0; margin-right:auto;margin-left:auto; z-index:99999">
</div>
</div>
<div id="ascrail2000" class="nicescroll-rails" style="width: 10px; z-index: 9999; cursor: default; position: fixed; top: 0px; height: 100%; right: 0px; opacity: 0;">
<div style="position: relative; top: 0px; float: right; width: 10px; height: 47px; background-color: rgb(17, 17, 17); background-clip: padding-box; border-radius: 0px;"></div>
</div>
<div id="ascrail2000-hr" class="nicescroll-rails" style="height: 10px; z-index: 9999; position: fixed; left: 0px; width: 100%; bottom: 0px; cursor: default; display: none; opacity: 0;">
<div style="position: relative; top: 0px; height: 10px; width: 1366px; background-color: rgb(17, 17, 17); background-clip: padding-box; border-radius: 0px;"></div>
</div>
<div id="ascrail2001" class="nicescroll-rails" style="width: 10px; z-index: 9999; cursor: default; position: fixed; top: 0px; height: 100%; right: 0px; opacity: 0;">
<div style="position: relative; top: 0px; float: right; width: 10px; height: 47px; background-color: rgb(17, 17, 17); background-clip: padding-box; border-radius: 0px;"></div>
</div>
<div id="ascrail2001-hr" class="nicescroll-rails" style="height: 10px; z-index: 9999; position: fixed; left: 0px; width: 100%; bottom: 0px; cursor: default; display: none; opacity: 0;">
<div style="position: relative; top: 0px; height: 10px; width: 1366px; background-color: rgb(17, 17, 17); background-clip: padding-box; border-radius: 0px;"></div>
</div>
</body>
</html>