-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (134 loc) · 4.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Ricardo Lopes</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta
name="description"
content="Software engineer focused on architecting and building secure and scalable services"
/>
<meta name="author" content="Ricardo Lopes" />
<link href="styles/modern-normalize.min.css" rel="stylesheet" />
<link href="styles/style.css" rel="stylesheet" />
<link rel="icon" href="favicon.ico" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ricardoplopes" />
<meta name="twitter:title" content="Ricardo Lopes" />
<meta
name="twitter:description"
content="Software engineer focused on architecting and building secure and scalable services"
/>
<meta name="twitter:image" content="https://ricardolopes.net/pfp.png" />
<meta property="og:site_name" content="Ricardo Lopes" />
<meta property="og:title" content="Ricardo Lopes" />
<meta
name="twitter:description"
content="Software engineer focused on architecting and building secure and scalable services"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ricardolopes.net/" />
<meta property="og:image" content="https://ricardolopes.net/pfp.png" />
<style>
#title-avatar {
margin: 3rem 0 0 0;
text-align: center;
img {
width: 10rem;
}
@media (min-width: 830px) {
float: left;
margin: 3rem 1rem 1rem 0;
}
}
#title-text {
text-align: center;
padding-bottom: 2rem;
@media (min-width: 830px) {
padding-top: 1rem;
text-align: left;
}
h1 {
font-size: 3rem;
line-height: 3rem;
}
}
</style>
</head>
<body>
<div id="content">
<div id="main">
<section itemscope itemtype="http://schema.org/Person">
<div id="title-avatar">
<img itemprop="image" src="pfp.png" />
</div>
<div id="title-text">
<h1 itemprop="name">Ricardo Lopes</h1>
<p itemprop="description">
Software engineer focused on architecting and building secure and
scalable services
</p>
<meta itemprop="jobTitle" content="Software engineer" />
</div>
</section>
<section>
<h2>About me</h2>
<p>
Hi, I'm a software engineer with over a decade of experience of
building secure and scalable services.
</p>
<p>
I've worked in startups in industries from telecom to online
education, from blockchain to healthtech, among others.
</p>
<p>
On my day-to-day I architect, build and optimise complex distributed
systems at scale, ensure their security, follow coding best
practises and TDD to ensure reliability and maintainability, and
mentor developers to help them grow.
</p>
</section>
<section>
<h2>About this website</h2>
<p>
Welcome to my personal website. This is where you can read all posts
I've published on my <a href="/blog">blog</a>.
</p>
</section>
<section>
<h2>Contact</h2>
<p>
<i
>(Note to recruiters: please read
<a href="hire">Information to Recruiters</a> before contacting
with job opportunities)</i
>
</p>
<p>Let's get in touch! My email is mail @ this domain.</p>
<p>
You can also follow or DM me on
<a
target="_blank"
rel="noopener noreferrer"
href="https://x.com/ricardoplopes"
>X (formerly Twitter)</a
>,
<a target="_blank" rel="me" href="https://c.im/@ricardolopes"
>Mastodon</a
>
or
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.linkedin.com/in/ricardopintolopes"
>LinkedIn</a
>.
</p>
</section>
</div>
</div>
<footer>
<p>© Ricardo Lopes</p>
</footer>
</body>
</html>