-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1066 lines (1014 loc) · 52.1 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
<?php
if($_POST["submit"]) {
$recipient="[email protected]"; //Enter your mail address
$subject=$_POST["subjecttext"]; //Subject
$subject=$subject + "website"
$sender=$_POST["nametext"];
$senderEmail=$_POST["emailtext"];
$message=$_POST["message"];
$mailBody="Name: $sender\nEmail Address: $senderEmail\n\nMessage: $message";
mail($recipient, $subject, $mailBody);
sleep(1);
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Carlos Simões</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flaticons -->
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/about.jpg);"></div>
<h1 id="colorlib-logo"><a href="index.html">Carlos Simões</a></h1>
<span class="position"><a href="#" >Eletrical and Computer Engineer</a> in Portugal</span>
</div>
<nav id="colorlib-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li class="active"><a href="#" data-nav-section="home">Home</a></li>
<li><a href="#" data-nav-section="about">About</a></li>
<!--<li><a href="#" data-nav-section="services">Services</a></li>-->
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<li><a href="#" data-nav-section="experience">Experience</a></li>
<li><a href="#" data-nav-section="work">Work</a></li>
<li><a href="#" data-nav-section="blog">Future</a></li>
<li><a href="#" data-nav-section="contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="colorlib-footer">
<p class="active"><a href="https://github.com/carlosimoes" target="_blank">GitHub</a> <a><i class="icon-github"></i></a></p>
<p class="active"><a href="https://linkedin.com/in/cmasimoes" target="_blank"> Linkedin </a> <a><i class="icon-linkedin2"></i></a></p>
<p><small>© <!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | Initial template used from <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --> </span> <span>Images: <a href="https://unsplash.com/" target="_blank">Unsplash.com</a></span></small></p>
</div>
</aside>
<div id="colorlib-main">
<section id="colorlib-hero" class="js-fullheight" data-section="home">
<div class="flexslider js-fullheight">
<ul class="slides">
<li style="background-image: url(images/img_bg_1.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner js-fullheight">
<div class="desc">
<h1>Hi! <br>I'm Carlos</h1>
<h2>Welcome to my World!</a></h2>
<p><a href="cv/CarlosSimoescv.pdf" download="CarlosSimoescv.pdf" class="btn btn-primary btn-learn">Download CV<i class="icon-download4"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li>
<li style="background-image: url(images/img_bg_2.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner">
<div class="desc">
<h2 style="color:black "> <strong>Eletrical and Computer Engineer</strong> <br></h2>
<h2 style="color:black; "> <strong>A student of the mind</strong> <br></h2>
<h2 style="color:black; "> <strong></strong> <br></h2>
<h2 style="color: black"> <strong></strong><br></h2>
<h2 style="color:black; "> <strong></strong> <br></h2>
<h2 style="color: black"> <strong></strong><br></h2>
<h2 style="color:black; "> <strong></strong> <br></h2>
<h2 style="color: black"> <strong></strong><br></h2>
<!--<p><a class="btn btn-primary btn-learn">View Portfolio <i class="icon-briefcase3"></i></a></p>-->
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<section class="colorlib-about" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12">
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<div class="about-desc">
<span class="heading-meta">About Me</span>
<h2 class="colorlib-heading">Who Am I?</h2>
<p><strong>Hi I'm Carlos Simões</strong> an enthusiastic engineer eager to learn and make a positive impact on the world through work and life. I strongly believe in technology as an enabler of change, and would like to help steer this change in the right direction.</p>
<p>My interests include:</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-1">
<span class="icon2"><i class="icon-bulb"></i></span>
<h3>Artificial Intelligence</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInRight">
<div class="services color-2">
<span class="icon2"><i class="icon-eye"></i></span>
<h3>Computer Vision</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInTop">
<div class="services color-3">
<span class="icon2"><i class="icon-reddit"></i></span>
<h3>Robotics</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-4">
<span class="icon2"><i class="icon-phone3"></i></span>
<h3>Biomedical applications</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-1">
<span class="icon2"><i class="icon-group-outline"></i></span>
<h3>Machine Learning</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<!--<div class="hire">
<h2>I am happy to know you <br>that 300+ projects done sucessfully!</h2>
<a href="#" class="btn-hire">Hire me</a>
</div>-->
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="colorlib-services" data-section="services">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">What I do?</span>
<h2 class="colorlib-heading">Here are some of my expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-bulb"></i>
</span>
<div class="desc">
<h3>Innovative Ideas</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-2">
<span class="icon">
<i class="icon-data"></i>
</span>
<div class="desc">
<h3>Software</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-3">
<span class="icon">
<i class="icon-phone3"></i>
</span>
<div class="desc">
<h3>Application</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h3>Graphic Design</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-data"></i>
</span>
<div class="desc">
<h3>Software</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-6">
<span class="icon">
<i class="icon-phone3"></i>
</span>
<div class="desc">
<h3>Application</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics</p>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<div id="colorlib-counter" class="colorlib-counters" style="background-image: url(images/cover_bg_1.jpg);" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="colorlib-narrow-content">
<div class="row">
</div>
<!--<div class="row">
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="309" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Cups of coffee</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="356" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Projects</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="30" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Clients</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="10" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Partners</span>
</div>
</div>-->
</div>
</div>
<section class="colorlib-skills" data-section="skills">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Specialty</span>
<h2 class="colorlib-heading animate-box">My Skills</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<p>This hard skills were developed through the projects, personal motivation, external courses and internships.</p>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Python</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>C++</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%">
<span>70%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Matlab</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100" style="width:85%">
<span>85%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Git</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:75%">
<span>75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>MySQL</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%">
<span>70%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>PHP, HTML, CSS</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="60"
aria-valuemin="0" aria-valuemax="100" style="width:60%">
<span>60%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Java</h3>
<div class="progress">
<div class="progress-bar color-7" role="progressbar" aria-valuenow="60"
aria-valuemin="0" aria-valuemax="100" style="width:60%">
<span>60%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="education">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Education</span>
<h2 class="colorlib-heading animate-box">Education</h2>
</div>
</div>
<!-- colocar aqui timeline-->
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<!-- <article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Full Stack Developer</a> <span>2017-2018</span></h2>
<p>Tolerably earnestly middleton extremely distrusts she boy now not. Add and offered prepare how cordial two promise. Greatly who affixed suppose but enquire compact prepare all put. Added forth chief trees but rooms think may.</p>
</div>
</div>
</article>-->
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Electrical and Computer Engineering - Master's degree</a> <span>2018-2020</span></h2>
<p>[IST] Instituto Superior Técnico, Portugal</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Electrical and Computer Engineering - Bachelor's degree</a> <span>2015-2018</span></h2>
<p>University of Coimbra, Portugal</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Technological Specialization Course in Energy and Automation</a> <span>2014-2015</span></h2>
<p>[ISEC] Instituto Superior de Engenharia de Coimbra, Portugal</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Professional Course in Renewable Energy</a> <span>2011-2014</span></h2>
<p>High School Secondary Education at Avelar Brotero, Portugal</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-experience" data-section="experience">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Experience</span>
<h2 class="colorlib-heading animate-box">Work Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<!--<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Full Stack Developer</a> <span>2017-2018</span></h2>
<p>Tolerably earnestly middleton extremely distrusts she boy now not. Add and offered prepare how cordial two promise. Greatly who affixed suppose but enquire compact prepare all put. Added forth chief trees but rooms think may.</p>
</div>
</div>
</article>-->
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Machine Learning & AI Engineer </a> <span>2020-2021</span></h2>
<p>Nokia </p>
<p>- Developed and evaluated machine learning models and training data to improve performance and quality.</p>
<p>- Collaborated with cross-functional teams to understand requirements and implement them into technical specifications and features for use in chatbots.</p>
<p>- Improved the accuracy of the company's chatbot by 20\% through the use of machine learning and NLP techniques.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#"> AI Academy </a> <span>2020-2021</span></h2>
<p>Accenture </p>
<p> Capable in Big Data technologies such as Hadoop and NoSQL.</p>
<p> Skilled in data analysis using Python, Pandas, numpy, Scikit-learn, and deep learning.</p>
<p> Experience with data visualization tools such as Excel, PowerBi, and Qlik Sense.</p>
<p> Familiar with ingestion and processing of large amounts of data on AWS.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">3D Estimation of Visual Focus of Attention for Human-Robot Interaction </a> <span>2020-2021</span></h2>
<p>Institute for Systems and Robotics (ISR-Lisboa) </p>
<p>For my thesis, I developed an algorithm that captures the Visual Focus of Attention from the gaze and head pose with the aim of improving Human-Robot Interaction. The algorithm used stereo systems to estimate depth and perform 3D reconstruction of the environment. We then used the 3D head and gaze pose to calculate and track the object that a person is interested in. To aid in environment classification, we employed panoptic segmentation to identify objects in the scene. The results of our work were published in a <a href="https://ieeexplore.ieee.org/document/9784797">Paper</a>. This project allowed us to investigate the use of stereo systems and 3D pose estimation for enhanced human-robot interaction and gaze tracking.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">General Coordinator of the Pedagogy Department</a> <span>2017-2018</span></h2>
<p>Núcleo de Estudantes de Engenharia Eletrotécnica e Computadores da Associação Académica de Coimbra, Portugal</p>
<p>Implementation of the "Delegates of the Year" project</p>
<p>Awareness and pedagogical training of teachers and students</p>
<p>Conducting pedagogical surveys and Pedagogical Forum</p>
<p>Meetings for discussion and curriculum reform of MIEEC</p>
<p>Direct and continuous contact with the DEEC community and management</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Internship Big Mat</a> <span>2014-2014</span></h2>
<p>Coimbra, Portugal</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Internship Installatiebedrijf Andriessen</a> <span>2014-2014</span></h2>
<p>IJsselstein, Utrecht, Netherlands</p>
<p>Design and drawing in AutoCAD 3D and 2D for the BMV Veiden project. In charge of some additional work for other projects</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-work" data-section="work">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Work</span>
<h2 class="colorlib-heading animate-box">Projects</h2>
</div>
</div>
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<p class="work-menu"><span><a data-nav-section="work" class="active">Projects</a></span></p>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">Master Degree Thesis
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<p>For my thesis, I developed an algorithm that captures the Visual Focus of Attention from the gaze and head pose with the aim of improving Human-Robot Interaction. The algorithm used stereo systems to estimate depth and perform 3D reconstruction of the environment. We then used the 3D head and gaze pose to calculate and track the object that a person is interested in. To aid in environment classification, we employed panoptic segmentation to identify objects in the scene. The results of our work were published in a paper. This project allowed us to investigate the use of stereo systems and 3D pose estimation for enhanced human-robot interaction and gaze tracking. </p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingbank">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapsebank" aria-expanded="false" aria-controls="collapsebank">Predict Subscription to Bank
</a>
</h4>
</div>
<div id="collapsebank" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingbank">
<div class="panel-body">
<p>Developed an end-to-end platform that uses machine learning to predict whether customers will or will not subscribe to a bank program. The project included exploratory data analysis, model building and evaluation, and visualization of the results. Using <strong>Python, Pandas, Matplotlib, Sklearn and PowerBI</strong> </p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headinggender">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapsegender" aria-expanded="false" aria-controls="collapsegender">Gender Detection through Eyes Images
</a>
</h4>
</div>
<div id="collapsegender" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headinggender">
<div class="panel-body">
<p>Developed a gender recognition system using deep learning methods to scan eye images and determine the gender of the patient.} The system was able to accurately classify individuals as male or female. Using <strong>Python, Pandas, Numpy and Tensorflow</strong> </p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingnine">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapsenine" aria-expanded="false" aria-controls="collapsenine">Smart Office Illumination
</a>
</h4>
</div>
<div id="collapsenine" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingnine">
<div class="panel-body">
<p>Real-time control of a smart office illumination system using Arduinos and Raspberry Pi: Developed a system for real-time control of an office's illumination using Arduinos and Raspberry Pi. The system was able to automatically adjust the lighting levels in the office based on real-time information, such as the time of day and the presence of people in the room. The use of Arduinos and Raspberry Pi allowed for a low-cost and flexible solution that could be easily integrated into existing office infrastructure. Made in <strong> C++, MATLAB and Arduino</strong>.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingeight">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseeight" aria-expanded="false" aria-controls="collapseeight">Artificial Intelligence
</a>
</h4>
</div>
<div id="collapseeight" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingeight">
<div class="panel-body">
<p>Project that consists of two other project on the subject of Artificial Intelligence, this project were both made in <strong> Python</strong>.</p>
<ul>
<li>Airline Scheduling And Routing (ASAR) problem: Developed and implemented an A* algorithm to solve the ASAR problem, which aims to maximize a company's profit by finding the optimal daily schedule and routing of its airplanes.</li>
<li>Fire detection in a museum: Addressed the problem of detecting fires in a museum, taking into account a fire propagation model and the uncertainty of the fire detectors. The project used artificial intelligence techniques to accurately detect fires and prevent damage to the museum's valuable artifacts.</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingteen">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseteen" aria-expanded="false" aria-controls="collapseteen">Travelling Salesman Problem
</a>
</h4>
</div>
<div id="collapseteen" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingteen">
<div class="panel-body">
<p>The travelling sales problem (TSP) and the ant colony optimization (ACO) algorithm: Developed and implemented the ant colony optimization (ACO) algorithm to solve the travelling sales problem (TSP). The TSP aims to find the shortest cycle in a weighted graph that passes through all its nodes, and the ACO algorithm uses a simulation of ants laying down pheromone trails to find solutions to the problem. The project was implemented in Java.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingseven">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseseven" aria-expanded="false" aria-controls="collapseseven">Voice Over IP
</a>
</h4>
</div>
<div id="collapseseven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingseven">
<div class="panel-body">
<p>Interactive voice response system (IVR) based on voice over IP (VoIP): Developed an IVR system using the voice over IP (VoIP) protocol. The project involved understanding and implementing the relevant VoIP protocols, and the system was built using Python and config files. The IVR system allowed for the creation of automated voice menus and interactions with users via phone calls. .</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingsix">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapsesix" aria-expanded="false" aria-controls="collapsesix">Inverted Pendulum
</a>
</h4>
</div>
<div id="collapsesix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingsix">
<div class="panel-body">
<p>Linear state feedback control of an inverted pendulum: Developed a control system for an inverted pendulum using linear state feedback. The project involved the design and implementation of the control algorithms in MATLAB, and the system was able to accurately control the pendulum's motion and maintain its stability. The use of linear state feedback allowed for a simple and effective control solution. .</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">Robotics
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
<p>Two Projects in the suject of <strong>Robotics, all made in MATLAB</strong>:</p>
<ul>
<li><strong>Direct and Inverse Kinematics</strong> Designed the plant model and the controller Control of a Flexible Robot Arm Joint: Developed control algorithms for a flexible robot arm joint, allowing for precise and accurate manipulation of the arm. The algorithms were able to account for the flexibility of the joint and its effect on the arm's motion, resulting in improved performance.</li>
<li><strong>Navigation Strategies for Mobile Robots</strong> Navigation strategies for mobile robots: Implemented various navigation strategies for mobile robots, including path planning and obstacle avoidance, to enable the robots to navigate complex environments. The project involved the development of algorithms and software to control the robots' motion and decision-making, and the resulting system allowed for robust and efficient navigation.</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">Robot Deslocation
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<p>Transferring a robot from point A to B using multiple algorithms to estimate the optimal route: Developed algorithms to guide a robot from one point to another, taking into account the robot's capabilities and the characteristics of the environment. The project involved the use of Matlab to implement and evaluate the algorithms, and the resulting system was able to find efficient and safe routes for the robot to follow.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFour">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFour" aria-expanded="false" aria-controls="collapseFour">Veterinary Hospital Database
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour">
<div class="panel-body">
<p>Veterinary hospital database and web application: Developed a database and web application for a veterinary hospital. The application allowed for the efficient storage, retrieval, and management of patient records and appointments. The web-based interface allowed for easy access to the database from any device with an internet connection. Using <strong>MySQL and PHP</strong> </p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFive">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFive" aria-expanded="false" aria-controls="collapseFive">Software to Manage a Parking Lot
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFive">
<div class="panel-body">
<p>Management of a car park using a graphic platform and database: Developed a system for managing a car park, including a graphic user interface and a database to store information about the cars and parking spaces. The project involved the use of C#, C/C++, and MSAccess, among other technologies, to implement the system's features. The system was able to accurately track the entry and exit of vehicles, and calculate the total amount to be paid based on the duration of the parking and any discounts.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- workparteliminate<div class="row">
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-1.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 01</a></h3>
<span>Website</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-2.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 02</a></h3>
<span>Animation</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInTop">
<div class="project" style="background-image: url(images/img-3.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 03</a></h3>
<span>Illustration</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInBottom">
<div class="project" style="background-image: url(images/img-4.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 04</a></h3>
<span>Application</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-5.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 05</a></h3>
<span>Graphic, Logo</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-6.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 06</a></h3>
<span>Web Design</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
</div>-->
<!--<div class="row">
<div class="col-md-12 animate-box">
<p><a href="#" class="btn btn-primary btn-lg btn-load-more">Load more <i class="icon-reload"></i></a></p>
</div>
</div>-->
<!--<section class="colorlib-blog" data-section="blog">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Read</span>
<h2 class="colorlib-heading">Recent Blog</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-1.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Web Design </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Renovating National Gallery</a></h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInRight">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-2.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Web Design </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Wordpress for a Beginner</a></h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-3.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Inspiration </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Make website from scratch</a></h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box">
<p><a href="#" class="btn btn-primary btn-lg btn-load-more">Load more <i class="icon-reload"></i></a></p>
</div>
</div>
</div>
</section>-->
</section>
<section class="colorlib-blog" data-section="Future">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Hard skill Adquired and Interest to develop</span>
<h2 class="colorlib-heading">Hard Skills</h2>
</div>
</div>
<div class="row">
<div class="col-md-5">
<div class="colorlib-feature colorlib-feature-sm animate-box" data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-globe-outline"></i>
</div>
<div class="colorlib-text">
<p>Machine learning algorithms and libraries, such as TensorFlow, Keras, and scikit-learn.</p>
<p>Programming languages such as Python, matlab and C++</p>
<p>Data analysis and visualization tools, such as Pandas,Numpy and Matplotlib</p>
<p>Deep learning techniques, including convolutional neural networks (CNNs), recurrent neural networks (RNNs), Transformers.</p>
<p>Computer vision techniques, including image and video processing, object detection, and face recognition and GANs.</p>
<p>Familiarity with Linux operating systems and shell scripting.</p>
</div>
</div>
</div>
</section>
<section class="colorlib-contact" data-section="contact">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Get in Touch</span>
<h2 class="colorlib-heading">Contact</h2>
</div>
</div>
<div class="row">
<div class="col-md-5">
<div class="colorlib-feature colorlib-feature-sm animate-box" data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-globe-outline"></i>
</div>
<div class="colorlib-text">
<p><a href="MAILTO:[email protected]">[email protected]</a></p>
</div>
</div>