-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
366 lines (336 loc) · 13.1 KB
/
Copy pathcv.html
File metadata and controls
366 lines (336 loc) · 13.1 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vitor Rodrigues — CV</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
--blue: #08f;
--text: #414141;
--muted: #888;
--border: #e8e8e8;
--bg: #fff;
--bg-alt: #f9f9f9;
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
sans-serif;
line-height: 1.6;
color: #2a2a2a;
background: #fff;
padding: 48px;
max-width: 820px;
margin: 0 auto;
}
/* ---- Header ---- */
header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 32px;
padding-bottom: 24px;
border-bottom: 2px solid var(--border);
}
.header__name {
font-size: 48px;
color: #2a2a2a;
line-height: 1;
margin-bottom: 6px;
}
.header__title {
font-size: 14px;
color: var(--muted);
font-weight: 400;
}
.header__contact {
text-align: right;
font-size: 12px;
color: #555;
line-height: 2;
}
.header__contact a {
color: var(--blue);
text-decoration: none;
}
/* ---- Layout ---- */
.cv__body {
display: grid;
grid-template-columns: 1fr 220px;
gap: 40px;
}
/* ---- Section ---- */
.cv__section {
margin-bottom: 28px;
}
.cv__section-title {
font-size: 10px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--text);
border-bottom: 1px solid #e8e8e8;
padding-bottom: 6px;
margin-bottom: 16px;
font-weight: 600;
}
/* ---- Experience items ---- */
.cv__item {
margin-bottom: 18px;
}
.cv__item-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 2px;
}
.cv__item-title {
font-size: 13px;
font-weight: 700;
color: #2a2a2a;
}
.cv__item-date {
font-size: 11px;
color: #aaa;
white-space: nowrap;
}
.cv__item-org {
font-size: 12px;
color: var(--blue);
margin-bottom: 4px;
font-weight: 500;
}
.cv__item-desc {
font-size: 12px;
color: #555;
line-height: 1.65;
}
/* ---- Sidebar ---- */
.sidebar .cv__section-title {
color: #555;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.skill-tag {
font-size: 11px;
padding: 3px 9px;
background: #f4f4f4;
border: 1px solid #e8e8e8;
border-radius: 4px;
color: #444;
}
/* ---- Print ---- */
@media print {
body {
padding: 32px;
}
@page {
margin: 0;
size: A4;
}
}
</style>
</head>
<body>
<header>
<div>
<div class="header__name">Vitor Rodrigues</div>
<div class="header__title">Senior Software Engineer</div>
</div>
<div class="header__contact">
<div>Romford, England, United Kingdom</div>
<div>
<a href="mailto:vitorpaulorodrigues@gmail.com"
>vitorpaulorodrigues@gmail.com</a
>
</div>
<div>
<a href="https://linkedin.com/in/vitorpaulorodrigues"
>linkedin.com/in/vitorpaulorodrigues</a
>
</div>
<div>
<a href="https://github.com/vpaulo">github.com/vpaulo</a>
</div>
</div>
</header>
<div class="cv__body">
<!-- Main column -->
<main>
<div class="cv__section">
<div class="cv__section-title">Experience</div>
<div class="cv__item">
<div class="cv__item-header">
<span class="cv__item-title"
>Senior Software Engineer</span
>
<span class="cv__item-date"
>Sept 2022 — present</span
>
</div>
<div class="cv__item-org">CMC Markets</div>
<div class="cv__item-desc">
Maintaining and improving the Trading platform.
Migrating features to micro frontends and web
components. Built a Figma CLI tool to extract
designs into web components.
</div>
</div>
<div class="cv__item">
<div class="cv__item-header">
<span class="cv__item-title"
>Senior Software Engineer</span
>
<span class="cv__item-date"
>Feb 2021 — Sept 2022</span
>
</div>
<div class="cv__item-org">Mimecast</div>
<div class="cv__item-desc">
Maintained and improved Angular apps. Implemented
components, migrated legacy apps to newer Angular
versions, and improved unit test coverage.
</div>
</div>
<div class="cv__item">
<div class="cv__item-header">
<span class="cv__item-title"
>Developer → Technical Specialist</span
>
<span class="cv__item-date"
>May 2015 — Feb 2021</span
>
</div>
<div class="cv__item-org">IG Group</div>
<div class="cv__item-desc">
Progressed from developer to technical specialist
over 6 years. Improved website performance by 10%,
built internal tooling with Node.js and Electron,
and led frontend testing and documentation
initiatives. Implemented and maintained components
for the main websites built on Adobe Experience
Manager (AEM).
</div>
</div>
<div class="cv__item">
<div class="cv__item-header">
<span class="cv__item-title"
>Front-end Developer</span
>
<span class="cv__item-date">2011 — Apr 2015</span>
</div>
<div class="cv__item-org">Asseco PST</div>
<div class="cv__item-desc">
Built and maintained web-based banking applications
consuming RESTful services. Implemented money
transfer modules, account creation flows with Spring
WebFlow, and the company website using IBM WCM.
</div>
</div>
</div>
<div class="cv__section">
<div class="cv__section-title">Education</div>
<div class="cv__item">
<div class="cv__item-header">
<span class="cv__item-title"
>Universidade da Madeira</span
>
<span class="cv__item-date">2011</span>
</div>
<div class="cv__item-org">
Licentiate degree, Computer Science
</div>
</div>
</div>
</main>
<!-- Sidebar -->
<aside class="sidebar">
<div class="cv__section">
<div class="cv__section-title">Skills</div>
<div class="skills">
<span class="skill-tag">HTML</span>
<span class="skill-tag">CSS</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">TypeScript</span>
<span class="skill-tag">Web Components</span>
<span class="skill-tag">Go</span>
<span class="skill-tag">Node.js</span>
<span class="skill-tag">Jest</span>
<span class="skill-tag">Playwright</span>
<span class="skill-tag">Vite</span>
<span class="skill-tag">SQLite</span>
<span class="skill-tag">Git</span>
<span class="skill-tag">Accessibility</span>
<span class="skill-tag">Performance</span>
<span class="skill-tag">Design Systems</span>
<span class="skill-tag">Micro Frontends</span>
<span class="skill-tag">Figma</span>
<span class="skill-tag">Claude code</span>
</div>
</div>
<div class="cv__section">
<div class="cv__section-title">Projects</div>
<div class="cv__item">
<div
class="cv__item-title"
style="font-size: 12px; margin-bottom: 2px"
>
Rminder
</div>
<div class="cv__item-desc">
A fast, minimal task management app built for
individuals. No subscriptions, no complexity — just
your work.
</div>
</div>
<div class="cv__item">
<div
class="cv__item-title"
style="font-size: 12px; margin-bottom: 2px"
>
Seda
</div>
<div class="cv__item-desc">
A scripting language designed for simplicity.
</div>
</div>
<div class="cv__item">
<div
class="cv__item-title"
style="font-size: 12px; margin-bottom: 2px"
>
Figo
</div>
<div class="cv__item-desc">
Figma components exporter lib to help creating HTML
and CSS from Figma designs.
</div>
</div>
<div class="cv__item">
<div
class="cv__item-title"
style="font-size: 12px; margin-bottom: 2px"
>
Folha
</div>
<div class="cv__item-desc">
Canvas based text editor.
</div>
</div>
</div>
</aside>
</div>
</body>
</html>