-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (88 loc) · 4.54 KB
/
index.html
File metadata and controls
94 lines (88 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Erick Branquinho</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="janela-principal" class="janela-xp">
<div class="janela-xp-titulo">
Welcome to my site!
<div class="janela-xp-botoes">
<span class="janela-xp-botao minimizar"></span>
<span class="janela-xp-botao maximizar"></span>
<span class="janela-xp-botao fechar"></span>
</div>
</div>
<div class="janela-xp-conteudo">
<header>
<h1>Erick Branquinho Machado</h1>
<h2>Software Engineer</h2>
<h2>Java | Spring Boot | Python | NodeJS</h2>
</header>
</div>
</div>
<div class="janelas-container">
<div id="sobre-janela" class="janela-xp">
<div class="janela-xp-titulo">
About.txt
<div class="janela-xp-botoes"><span class="janela-xp-botao minimizar"></span><span class="janela-xp-botao maximizar"></span><span class="janela-xp-botao fechar"></span></div>
</div>
<div class="janela-xp-conteudo">
<img src="imgs/erick.png" alt="Photo of Erick Branquinho" class="foto-perfil">
<h3>About Me</h3
<p>Hello! I'm a software engineer with a bachelor's degree in Computer Science from PUCRS.</p>
<br>
<p> I'm always looking for a new challenge to improve my skills and my knowledge. </p>
<p> My areas of interest are: </p>
<ul>
<li>Data analysis</li>
<li>Computer vision</li>
<li>Operational Systems</li>
<li>Backend development</li>
</ul>
<p> You can check my LinkedIn <a href="www.linkedin.com/in/erick-branquinho">here</a>. </p>
</div>
</div>
<div id="projetos-janela" class="janela-xp">
<div class="janela-xp-titulo">
My Projects
<div class="janela-xp-botoes"><span class="janela-xp-botao minimizar"></span><span class="janela-xp-botao maximizar"></span><span class="janela-xp-botao fechar"></span></div>
</div>
<div class="janela-xp-conteudo">
<h3>Recent Projects</h3>
<div class="projeto-item">
<img src="imgs/pose_landmarks_index.png" alt="Foto do Projeto 2">
<div class="projeto-info">
<h4>Physiotherapy CV</h4>
<p>A computer vision application capable of monitoring the execution of physical exercises giving
users feedback in real time. Uses the Mediapipe Pose Landmarker model to detect
the pacients body parts and OpenCV to plot the infered skeleton.
</p>
<a href="https://github.com/Erick080/physiotherapy_cv">Github Repository</a>
</div>
</div>
<div class="projeto-item">
<img src="imgs/davint.png" alt="Foto do Projeto 1">
<div class="projeto-info">
<h4>Streamvis Enhanced</h4>
<p> A data analysis dashboard developed with the <a href="https://www.inf.pucrs.br/davint/">DaVint</a> research group. </p>
<p> Implements a pipeline to collect YouTube livestream comments and classify
the toxicity and sentiment of each comment using natural language processing models.
After processing the results, shows a dashboard with graphs and wordclouds
of relevant information using Streamlit.</p>
<a href="https://github.com/DAVINTLAB/StreamVisEnhanced">Github Repository</a>
</div>
</div>
<div class="projeto-item">
<img src="imgs/koala.jpeg" alt="Foto do Projeto 3">
<div class="projeto-info">
<h4>Koala Bot</h4>
<p>Simple Discord bot with audio player and dice rolls functionality.</p>
<a href="https://github.com/Erick080/koala_bot">Github Repository</a>
</div>
</div>
</div>
</div>
</div>
</body>