-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (75 loc) · 2.16 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
<!DOCTYPE html>
<html>
<body>
<header>
<title>
eugeniorovira.com ~ Eugenio Rovira
</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/favicon.jpg">
<meta charset="utf-8">
<nav>
<ul>
<li>
<a href="#about">about</a>
</li>
<li>
<a href="#blog">blog</a>
</li>
<li>
<a href="#contact">contact</a>
</li>
</ul>
</nav>
</header>
<h1>Hi!</h1>
<div id="section-container">
<section>
<h2 id="about">About</h2>
<p>I'm Eugenio Rovira, and I'm an engineer living in Uruguay 🇺🇾</p>
<p>I hold a
<a href="https://www.fing.edu.uy/carrera/grado/ingenier%C3%ADa-en-computaci%C3%B3n">
Computer Engineering
</a> 💻 degree from
<a href="https://www.fing.edu.uy/">
Facutad de Ingeniería
</a>,
<a href="https://udelar.edu.uy/portal/">UDeLaR</a>,
having done my thesis on multi-channel lossless EEG 🧠 compression.
</p>
<p>I'm part of the
<a href="https://tryolabs.com/">Tryolabs</a>
<img src="images/tryolabs-logo.png" class="logo" />
team, having worked on full-stack, data analysis and machine learning for about 8 years.
</p>
<p>I enjoy programming, science, movies, drinking mate 🧉 and chilling on the beach.</p>
<p> Preferred programming language:
<a href="https://www.python.org/dev/peps/pep-0020/#id2">Python</a>
<img src="images/python-logo.png" class="logo" />
</p>
</section>
<section>
<h2 id="blog">Blog</h2>
<ul>
<li>
2021-11-26:
<a href="posts/hello-world.html">Hello World</a>
</li>
</ul>
</section>
<section>
<h2 id="contact">
Contact
</h2>
<p>You can find me on
<a href="https://twitter.com/erovirax">Twitter</a>,
<a href="https://github.com/erovira">Github</a> or
<a href="https://www.linkedin.com/in/eugenio-rovira-68168193/">Linkedin</a>.
</p>
</section>
</div>
<footer>
Copyright © 2021 Eugenio Rovira
</footer>
</body>
</html>