-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (72 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pierre Vanoverschelde</title>
<meta
name="description"
content="Currently working at Didomi as a Senior Technical Account Manager, while listening to some funk music on my headphones, I also love to scrape data and render it nicely."
/>
<link rel="shortcut icon" href="./assets/images/favicon.ico" />
<script>
(() => {
const storageKey = "theme-preference";
const getColorPreference = () => {
const storedPreference = localStorage.getItem(storageKey);
if (storedPreference) {
return storedPreference;
} else {
return window.matchMedia("(prefers-color-scheme:dark)").matches ? "dark" : "light";
}
};
const themeValue = getColorPreference();
document.documentElement.setAttribute("data-theme", themeValue);
})();
</script>
<link rel="stylesheet" href="./assets/css/fontawesome.css" />
<link rel="stylesheet" href="./assets/css/markdown.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<script src="./assets/js/beamanalytics.js"></script>
<script src="./assets/js/darkmode.js"></script>
</head>
<body>
<article class="markdown-body">
<h1>Hi, I'm Pierre Vanoverschelde<i class="fa fa-adjust toggle-light" aria-hidden="true" title="Switch theme"></i></h1>
<p>
<img src="./assets/images/made-with-javascript.svg" alt="Made with JavaScript" title="Made with JavaScript" style="width: 227px; height: 35px" />
<img src="./assets/images/powered-by-coffee.svg" alt="Powered by coffee" title="Powered by coffee" style="width: 246px; height: 35px" />
<img src="./assets/images/not-an-issue.svg" alt="Not an issue" title="Not an issue" style="width: 153px; height: 35px" />
</p>
<p class="first-intro">
Currently working at
<a href="https://www.didomi.io" target="_blank"><code>Didomi</code></a>
as a Senior Technical Account Manager, while listening to some
<a href="https://www.youtube.com/watch?v=r1UkZLT20TI" target="_blank"><code>funk</code></a>
music on my headphones, I also love to scrape data and render it nicely.
</p>
<p class="second-intro">
Creator of
<a href="https://whatson-app.com" target="_blank" class="websites"><code>What's on?</code></a
>, <a href="https://documenter.getpostman.com/view/18186487/2s9Ykhg4MB" target="_blank" class="websites"><code>What's on? API</code></a> and
<a href="https://still-playing.onrender.com" target="_blank" class="websites"><code>Still playing?</code></a>
</p>
<p>If you want to know more about me, feel free to send me an email or follow me:</p>
<ul>
<li>
<a href="mailto:[email protected]" target="_blank" aria-label="ProtonMail"><i class="fa fa-envelope fa-3x" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://github.com/pierrevano" target="_blank" aria-label="GitHub"><i class="fa fa-github fa-3x" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/pierrevanoverschelde" target="_blank" aria-label="LinkedIn"><i class="fa fa-linkedin fa-3x" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCpSMOn2qG_smhVFhInoxaVg?sub_confirmation=1" target="_blank" aria-label="YouTube"><i class="fa fa-youtube fa-3x" aria-hidden="true"></i></a>
</li>
</ul>
</article>
</body>
</html>