commit
3ada39b032
|
|
@ -0,0 +1,181 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="pt-br">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Vinicius F. da Silva</title>
|
||||
|
||||
<script type="module" src="https://md-block.verou.me/md-block.js"></script>
|
||||
|
||||
<style>
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Quattrocento&display=swap');
|
||||
|
||||
body{
|
||||
font-family: 'Quattrocento', Georgia, Times, serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: rgb(250, 247, 247);
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-family: 'Quattrocento', Georgia, Times, serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #585858;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding-right: 1px;
|
||||
padding-left: 1px;
|
||||
padding-top: 20px;
|
||||
background-color: #fff;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 10px rgba(71, 67, 67, 0.1);
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: #333;
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
p {
|
||||
font-size: 1.1em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
.project {
|
||||
margin-bottom: 20px;
|
||||
padding: 15px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
.project h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
.project p {
|
||||
font-size: 1em;
|
||||
}
|
||||
section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
section:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
footer {
|
||||
text-align: center;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.circle-photo {
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin-right: 18px; /* Adiciona margem entre a imagem e o texto */
|
||||
float: left; /* Faz a imagem ficar à esquerda */
|
||||
}
|
||||
|
||||
.circle-photo img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
nav {
|
||||
background-color: #534f4f; /* Background color for the navbar */
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
margin-right: 10px; /* Adjust spacing between navbar items */
|
||||
}
|
||||
|
||||
.navlist {
|
||||
color: white; /* Text color for the navbar items */
|
||||
text-decoration: none;
|
||||
padding: 10px 30px; /* Adjust padding for the navbar items */
|
||||
}
|
||||
|
||||
#maintext {
|
||||
overflow: hidden; /* Limpa o float e mantém o texto ao lado */
|
||||
}
|
||||
#maintext h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px; /* Adiciona alguma margem abaixo do título */
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div class="container">
|
||||
|
||||
<header>
|
||||
<center><a href="/research/" style="text-decoration:none"><span class="text" style="font-size: 40px;">VINICIUS F. DA SILVA</span></a></center><br/>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<center>
|
||||
<ul>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./index.html">Home</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./researches.html">Works</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./certificates.html">Certificates</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./blog.html">Blog</a></li>
|
||||
</ul>
|
||||
</center>
|
||||
</nav>
|
||||
<br/>
|
||||
|
||||
<section id="photo">
|
||||
<div style="padding: 15px;">
|
||||
<div id="photo" class="circle-photo"><img src="vinicius.jpeg" alt=""></div>
|
||||
<div class="text" id="maintext"><center><span style="font-size: 33px;">I am a Operating Systems Researcher</span></center></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<span class="text" style="font-size: 25px;">Mini Blog</span><br/><br/>
|
||||
|
||||
<br/><br/>
|
||||
<div class="project">
|
||||
<h3 class="text">Artificial Intelligence, spatial analysis and access to healthcare</h3>
|
||||
<p style="text-align: justify; text-justify: inter-word;">In October 2023, I participated in the course 'Artificial Intelligence, Spatial Analysis, and Access to Healthcare,' taught by Professor Hasheem Mannan from University College Dublin, who came to Brazil through Puc Minas' Internationalization program. The course consisted of four days of in-person classes at the Coração Eucarístico campus, where we explored the theory of the global healthcare system with a focus on public health accessibility. We delved into how tools from the fields of Artificial Intelligence and Geography can contribute to a comprehensive analysis of health data. Through this analysis, we aimed to develop public policies that would contribute to the improvement of the healthcare system.</p>
|
||||
|
||||
|
||||
<img width="780" height="780" src="https://licap.icei.pucminas.br/img/news/artificial-intelligence-healthcare-news2.jpg" alt="">
|
||||
<br/><br/>
|
||||
<center><img width="500" height="300" src="https://licap.icei.pucminas.br/img/news/artificial-intelligence-healthcare-news2-photo2.png" alt=""></center>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
<footer>
|
||||
<p>© <script type = "text/javascript">
|
||||
var dt = new Date();
|
||||
document.write(dt.getFullYear());
|
||||
</script> Vinicius Francisco da Silva</p>
|
||||
</footer>
|
||||
</html>
|
||||
File diff suppressed because one or more lines are too long
16
contact.html
16
contact.html
|
|
@ -131,11 +131,14 @@
|
|||
<nav>
|
||||
<center>
|
||||
<ul>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./researches.html">Researches</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./index.html">Home</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./researches.html">Works</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./certificates.html">Certificates</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./blog.html">Blog</a></li>
|
||||
</ul>
|
||||
</center>
|
||||
</nav>
|
||||
|
|
@ -152,8 +155,10 @@
|
|||
<span class="text" style="font-size: 25px;">Contacts</span><br/><br/>
|
||||
|
||||
<br/><br/><br/>
|
||||
<div class="project">
|
||||
<div class="project">
|
||||
<h3 class="text">Email</h3>
|
||||
|
||||
<p style="text-align: justify; text-justify: inter-word;">• <a href="mailto: viniciusilva@ieee.org">viniciusilva@ieee.org</a></p>
|
||||
<p style="text-align: justify; text-justify: inter-word;">• <a href="mailto: viniciusdasilva1@acm.org">viniciusdasilva1@acm.org</a></p>
|
||||
<!-- <p style="text-align: justify; text-justify: inter-word;">• <a href="mailto: me@silvavinicius.com.br">me@silvavinicius.com.br</a></p> -->
|
||||
|
|
@ -173,6 +178,7 @@
|
|||
<div class="project">
|
||||
<h3 class="text">GitHub</h3>
|
||||
<p style="text-align: justify; text-justify: inter-word;">• <a href="https://github.com/viniciusfdasilva">viniciusfdasilva</a></p>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
<footer>
|
||||
|
|
|
|||
13
index.html
13
index.html
|
|
@ -131,11 +131,14 @@
|
|||
<nav>
|
||||
<center>
|
||||
<ul>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./researches.html">Researches</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./index.html">Home</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./researches.html">Works</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./certificates.html">Certificates</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./blog.html">Blog</a></li>
|
||||
</ul>
|
||||
</center>
|
||||
</nav>
|
||||
|
|
|
|||
|
|
@ -131,11 +131,14 @@
|
|||
<nav>
|
||||
<center>
|
||||
<ul>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./researches.html">Researches</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./index.html">Home</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./researches.html">Works</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./certificates.html">Certificates</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./blog.html">Blog</a></li>
|
||||
</ul>
|
||||
</center>
|
||||
</nav>
|
||||
|
|
@ -149,7 +152,53 @@
|
|||
</section>
|
||||
|
||||
<section>
|
||||
<span class="text" style="font-size: 25px;">Free software projects</span><br/><br/>
|
||||
<span class="text" style="font-size: 25px;">Contributions and own projects</span><br/><br/>
|
||||
<br/><br/>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Contributions to Open Source community</h3>
|
||||
<br/><br/>
|
||||
<div class="project">
|
||||
|
||||
<h3 class="text">V Programming Language</h3><br/><img width="50" height="50" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/V_Logo_SVG.svg/800px-V_Logo_SVG.svg.png"/>
|
||||
<p style="text-align: justify; text-justify: inter-word;">V is a Simple, fast, safe, compiled language for developing maintainable software programming language.</p>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Available in: <a href="https://github.com/vlang/v">V</a></p>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Contributions:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/vlang/v/pull/20496">PR #20496</a></p>
|
||||
<li><a href="https://github.com/vlang/v/pull/20525">PR #20525</a></p></li>
|
||||
<li><a href="https://github.com/vlang/v/issues/20524">ISSUE #20524</a></p></li>
|
||||
<li><a href="https://github.com/vlang/v/pull/20540">PR #20540</a></p></li>
|
||||
<li><a href="https://github.com/vlang/v/issues/20563">ISSUE #20563</a></p></li>
|
||||
<li><a href="https://github.com/vlang/v/pull/20564">PR #20564</a></p></li>
|
||||
<li><a href="https://github.com/vlang/v/pull/20595">PR #20595</a></p></li>
|
||||
<li><a href="https://github.com/vlang/v/pull/20650">PR #20650</a></p></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
|
||||
<h3 class="text">Nanvix Operating System</h3><br/><img width="50" height="50" src="https://avatars.githubusercontent.com/u/26554886?s=280&v=4"/>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Distributed OS for Lightweight Manycores.</p>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Available in: <a href="https://github.com/nanvix/nanvix">Nanvix</a></p>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Contributions:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/nanvix/nanvix/pull/271">PR #271</a></p></li>
|
||||
<li><a href="https://github.com/nanvix/nanvix/pull/272">PR #272</a></p></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
|
||||
<h3 class="text">Lua Programming Language</h3><br/><img width="50" height="50" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Lua-Logo.svg/640px-Lua-Logo.svg.png"/>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Distributed OS for Lightweight Manycores.</p>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Contribution: <a href="https://github.com/viniciusfdasilva/lua/">Repository</a></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Own projects</h3>
|
||||
<br/><br/>
|
||||
|
||||
<div class="project">
|
||||
|
|
@ -178,7 +227,6 @@
|
|||
<p style="text-align: justify; text-justify: inter-word;">
|
||||
• License: <a href="https://www.gnu.org/licenses/gpl-3.0.html">https://www.gnu.org/licenses/gpl-3.0.html<a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
|
|
@ -207,8 +255,7 @@
|
|||
• License: <a href="https://www.gnu.org/licenses/gpl-3.0.html">https://www.gnu.org/licenses/gpl-3.0.html<a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
|
|
|
|||
|
|
@ -131,11 +131,14 @@
|
|||
<nav>
|
||||
<center>
|
||||
<ul>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./researches.html">Researches</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./index.html">Home</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./researches.html">Works</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./certificates.html">Certificates</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./blog.html">Blog</a></li>
|
||||
</ul>
|
||||
</center>
|
||||
</nav>
|
||||
|
|
@ -182,32 +185,36 @@
|
|||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">IEEE Computer Society Membership - <a href="https://www.computer.org">IEEE ICS</a></h3>
|
||||
<h3 class="text">Memberships</h3>
|
||||
<br/><br/>
|
||||
<div class="project">
|
||||
<h3 class="text">IEEE Computer Society - <a href="https://www.computer.org">IEEE ICS</a></h3>
|
||||
<br/>
|
||||
<img src="https://upload.wikimedia.org/wikipedia/en/4/47/IEEE_Computer.png" alt="some text" width=170 height=60>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/IEE_CS.pdf" style="color: blue">link</a></p>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Institute of Electrical and Electronics Engineers Membership - <a href="https://www.ieee.org">IEEE</a></h3>
|
||||
<h3 class="text">Institute of Electrical and Electronics Engineers - <a href="https://www.ieee.org">IEEE</a></h3>
|
||||
<br/>
|
||||
<img src="https://www.dataprivacybr.org/wp-content/uploads/2022/10/ieee-1.png" alt="some text" width=90 height=100>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/IEE.pdf" style="color: blue">link</a></p>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Brazilian Computer Society Membership - <a href="https://www.sbc.org.br">SBC</a></h3>
|
||||
<h3 class="text">Brazilian Computer Society - <a href="https://www.sbc.org.br">SBC</a></h3>
|
||||
<br/>
|
||||
<img src="https://upload.wikimedia.org/wikipedia/commons/9/94/Logo_SBC_Transparente.jpeg" alt="some text" width=70 height=95>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/sbc.pdf" style="color: blue">link</a></p>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Association for Computing Machinery Membership - <a href="https://www.acm.org/">ACM</a></h3>
|
||||
<h3 class="text">Association for Computing Machinery - <a href="https://www.acm.org/">ACM</a></h3>
|
||||
<br/>
|
||||
<img src="https://upload.wikimedia.org/wikipedia/commons/8/8e/Association_for_Computing_Machinery_%28ACM%29_logo.svg" alt="some text" width=95 height=95>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/acm.pdf" style="color: blue">link</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
|
|
|
|||
|
|
@ -131,11 +131,14 @@
|
|||
<nav>
|
||||
<center>
|
||||
<ul>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./researches.html">Researches</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./index.html">Home</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./researches.html">Works</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./teaching.html">Teaching</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./projects.html">Projects</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./certificates.html">Certificates</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" target="_blank" href="https://silvavinicius.com.br/resume/vinicius.pdf">CV</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./contact.html">Contact</a></li>
|
||||
<li><a class="navlist text" style="font-size: 20px; margin-left: -40px" href="./blog.html">Blog</a></li>
|
||||
</ul>
|
||||
</center>
|
||||
</nav>
|
||||
|
|
@ -153,22 +156,26 @@
|
|||
|
||||
<br/><br/>
|
||||
<div class="project">
|
||||
<h3 class="text">Tutor - Compilers discipline</h3>
|
||||
<h3 class="text">Tutoring</h3>
|
||||
<br/><br/>
|
||||
<div class="project">
|
||||
<h3 class="text">Compilers discipline</h3>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Tutoring for the Compilers course at the Institute of Exact Sciences and Informatics - ICEI - PUCMINAS. As a mentor, I provide assistance to students of the course by addressing their questions and supporting the lead instructor</p>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/compilers.pdf" style="color: blue" target="_blank">link</a></p>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Tutor - Algorithms and Data Structures II discipline</h3>
|
||||
<h3 class="text">Algorithms and Data Structures II discipline</h3>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Tutoring for the Algorithms and Data Structures II course at the Institute of Exact Sciences and Informatics - ICEI - PUCMINAS. As a mentor, I provide assistance to students of the course by addressing their questions and supporting the lead instructor</p>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/algorithms.pdf" target="_blank" style="color: blue">link</a></p>
|
||||
</div>
|
||||
|
||||
<div class="project">
|
||||
<h3 class="text">Tutor - Data Base discipline</h3>
|
||||
<h3 class="text">Data Base discipline</h3>
|
||||
<p style="text-align: justify; text-justify: inter-word;">Tutoring for the Data Base course at the Institute of Exact Sciences and Informatics - ICEI - PUCMINAS. As a mentor, I provide assistance to students of the course by addressing their questions and supporting the lead instructor</p>
|
||||
<p>• Document: <a href="https://silvavinicius.com.br/resume/database.pdf" target="_blank" style="color: blue">link</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue