726 lines
36 KiB
HTML
726 lines
36 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:h3="http://www.w3.org/1999/html">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="light dark">
|
|
|
|
<title>Curriculum Vitae - Tibo De Peuter</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
|
<link rel="shortcut icon" type="image/png" href="/assets/images/owl_circuit.png">
|
|
<link rel="apple-touch-icon" href="/assets/images/owl_circuit.png">
|
|
|
|
<style>
|
|
#languages-table {
|
|
width: 100%;
|
|
}
|
|
#languages-table td:nth-child(2) {
|
|
text-align: end;
|
|
}
|
|
|
|
.content-wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: var(--gap);
|
|
|
|
align-content: space-between;
|
|
}
|
|
|
|
.main-content {
|
|
flex: 3;
|
|
}
|
|
|
|
aside {
|
|
flex: 1;
|
|
height: 100%;
|
|
}
|
|
|
|
footer .save-links {
|
|
display: none;
|
|
}
|
|
|
|
ul {
|
|
/* list-style-type: none;*/
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
/*ul ul {*/
|
|
/* list-style-type: disc;*/
|
|
/* padding-left: 1rem;*/
|
|
/* list-style-position: initial;*/
|
|
/*}*/
|
|
|
|
.proficiency,
|
|
.time {
|
|
float: right;
|
|
text-align: right;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.place a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.summary {
|
|
opacity: 75%;
|
|
}
|
|
|
|
@media (max-width: 64em) {
|
|
.content-wrapper {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.main-content,
|
|
aside {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
:root {
|
|
--gap: 1rem;
|
|
}
|
|
|
|
aside {
|
|
min-width: 28%;
|
|
}
|
|
|
|
.content-wrapper {
|
|
column-gap: var(--gap);
|
|
flex-direction: row;
|
|
}
|
|
|
|
.less-relevant {
|
|
display: none;
|
|
}
|
|
|
|
.main-content {
|
|
flex: 3;
|
|
}
|
|
|
|
header,
|
|
footer {
|
|
page-break-inside: avoid; /* Prevent header/footer from breaking across pages */
|
|
}
|
|
|
|
footer,
|
|
ul.links,
|
|
.interactive {
|
|
display: none; /* Hide links section */
|
|
}
|
|
}
|
|
|
|
/* Customizable colours */
|
|
/*h1, h2, h3,*/
|
|
/*hr {*/
|
|
/* color: #0077cd;*/
|
|
/*}*/
|
|
|
|
/*aside {*/
|
|
/* !* Gradient background *!*/
|
|
/* background: linear-gradient(35deg, #27224a 0%, #6b445a 50%, #324a6d 100%);*/
|
|
|
|
/* color: white;*/
|
|
/*}*/
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav-bar></nav-bar>
|
|
|
|
<main class="wrapper">
|
|
<header class="profile">
|
|
<h1>Tibo De Peuter</h1>
|
|
<p class="hidden">
|
|
Driven by curiosity and guided by analytical thinking, I passionately design elegant and creative solutions
|
|
to challenging problems. I balance performance, security and maintainability, striving for continuous
|
|
improvement.
|
|
</p>
|
|
|
|
<p data-i18n="cv.profile">
|
|
Driven by curiosity and a passion for secure software design, I specialize in building efficient,
|
|
maintainable systems. I combine analytical thinking with practical experience in programming and
|
|
cybersecurity principles to deliver robust solutions.
|
|
</p>
|
|
</header>
|
|
|
|
<div class="content-wrapper">
|
|
<aside>
|
|
<section id="personal-details">
|
|
<!-- TODO Add photo; photo replaces heading -->
|
|
<h2 data-i18n="cv.personal_details">Personal details</h2>
|
|
|
|
<!-- Blurry box with overlay button -->
|
|
<div class="blurred" id="blur-info">
|
|
<div class="blur-box">
|
|
<div class="blur-content">
|
|
<table>
|
|
<tr>
|
|
<!--<td data-i18n="contact.mobile">Mobile</td>-->
|
|
<td><img src="/assets/images/icons/phone.svg" alt="Mobile" class="badge icon"></td>
|
|
<td><a id="phone" href="tel:+00000000000">+00 000 00 00 00</a></td>
|
|
</tr>
|
|
<tr>
|
|
<!--<td>E-mail</td>-->
|
|
<td><img src="/assets/images/icons/mail.svg" alt="E-mail" class="badge icon"></td>
|
|
<td><a id="email" href="mailto:redacted@mail.tld">redacted@mail.tld</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td><img src="/assets/images/icons/linkedin.svg" alt="LinkedIn" class="badge icon"></td>
|
|
<td><a id="linkedin" href="https://www.linkedin.com/in/tdpeuter/">/in/tdpeuter</a></td>
|
|
</tr>
|
|
<tr>
|
|
<!--<td>Website</td>-->
|
|
<td><img src="/assets/images/icons/world.svg" alt="Website" class="badge icon"></td>
|
|
<td><a href="https://www.depeuter.dev">www.depeuter.dev</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<img src="/assets/images/icons/home.svg" alt="Location" class="badge icon">
|
|
</td>
|
|
<td>
|
|
<a id="location" href="https://openstreetmap.org">Somewhere in the world</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><img src="/assets/images/icons/car.svg" alt="Car" class="badge icon"></td>
|
|
<td data-i18n="contact.rijbewijs_b">Category B driving license</td>
|
|
</tr>
|
|
<tr class="hidden">
|
|
<td colspan="2"><span data-i18n="time.year_of_birth">Year of birth</span>
|
|
<time id="birthday" datetime="1971">0</time>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<button id="reveal-contact" class="reveal-btn interactive" aria-label="Show contact information"
|
|
onclick="reveal()">
|
|
<img style="width: 1.2em; height: 1.2em;" src="/assets/images/icons/eye.svg"
|
|
alt="Show contact info" class="icon"/>
|
|
<span data-i18n="contact.reveal">Show contact information</span>
|
|
</button>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="skills">
|
|
<h2 data-i18n="cv.skills.header">Skills</h2>
|
|
<section>
|
|
<header>
|
|
<h3 data-i18n="cv.skills.infra">Infrastructure & automation</h3>
|
|
<p>
|
|
<abbr title="Virtual Machine">VM</abbr>s,
|
|
Docker,
|
|
ZFS,
|
|
<abbr title="Infrastructure as Code">IaC</abbr>,
|
|
DevSecOps,
|
|
<abbr title="Continuous Integration / Continuous Deployment">CI/CD</abbr>,
|
|
GitHub Actions,
|
|
Git
|
|
</p>
|
|
</header>
|
|
</section>
|
|
<section>
|
|
<header>
|
|
<h3 data-i18n="cv.skills.network">Networking & Security</h3>
|
|
<p>
|
|
firewalls,
|
|
VPNs,
|
|
secure architectures,
|
|
monitoring
|
|
</p>
|
|
</header>
|
|
</section>
|
|
<section>
|
|
<header>
|
|
<h3>Software Engineering</h3>
|
|
<p>
|
|
Clean Code,
|
|
design patterns,
|
|
<span data-i18n="cv.skills.docs">documentation</span>,
|
|
code reviews,
|
|
<span data-i18n="cv.skills.collab">collaboration</span>
|
|
</p>
|
|
</header>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<section>
|
|
<a href="https://git.depeuter.dev/tdpeuter?language=Kotlin">Kotlin</a>,
|
|
Java,
|
|
C,
|
|
C++,
|
|
<a href="https://git.depeuter.dev/tdpeuter?language=TypeScript"><abbr title="TypeScript">TS</abbr></a>,
|
|
<a href="https://git.depeuter.dev/tdpeuter?language=JavaScript"><abbr title="JavaScript">JS</abbr></a>,
|
|
<a href="https://git.depeuter.dev/tdpeuter?language=Python">Python</a>,
|
|
Bash,
|
|
<a href="https://git.depeuter.dev/tdpeuter?language=Haskell">Haskell</a>,
|
|
SQL
|
|
</section>
|
|
<p class="less-relevant">
|
|
Debian, NixOS, Arch Linux, Windows 11
|
|
</p>
|
|
<p data-i18n="cv.other_skills" class="hidden less-relevant">
|
|
Microsoft Office and equivalents, Adobe Creative Cloud
|
|
</p>
|
|
</section>
|
|
|
|
<section id="languages">
|
|
<h2 data-i18n="cv.languages">Languages</h2>
|
|
<table id="languages-table">
|
|
<tr>
|
|
<td data-i18n="lang.nl">Dutch</td>
|
|
<td data-i18n="lang.mother_tongue">Mother tongue</td>
|
|
</tr>
|
|
<tr>
|
|
<td data-i18n="lang.en">English</td>
|
|
<td data-i18n="lang.fluent">Fluent</td>
|
|
</tr>
|
|
<tr>
|
|
<td data-i18n="lang.fr">French</td>
|
|
<td data-i18n="lang.basic">Basic</td>
|
|
</tr>
|
|
<tr>
|
|
<td data-i18n="lang.de">German</td>
|
|
<td data-i18n="lang.basic">Basic</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
|
|
<section id="certificates">
|
|
<h2 data-i18n="cv.certificates">Certificates</h2>
|
|
<ul>
|
|
<li>
|
|
<span data-i18n="cv.equestrian_trainer">Equestrian trainer (initiator)</span>
|
|
<table>
|
|
<tr class="less-relevant">
|
|
<td>
|
|
<img src="/assets/images/icons/school.svg" alt="Institution" class="badge icon"/>
|
|
</td>
|
|
<td>
|
|
<a class="save-link"
|
|
href="https://paardensport.vlaanderen/nl/trainersopleidingen/opleidingen-voor-trainers/initiator"
|
|
>Paardensport Vlaanderen</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<img src="/assets/images/icons/calendar.svg" alt="Year" class="badge icon"/>
|
|
</td>
|
|
<td>2024</td>
|
|
</tr>
|
|
</table>
|
|
</li>
|
|
<li>
|
|
<span data-i18n="cv.head_youth_leader.title">Head youth leader</span>
|
|
<table>
|
|
<tr class="less-relevant">
|
|
<td>
|
|
<img src="/assets/images/icons/school.svg" alt="Institution" class="badge icon"/>
|
|
</td>
|
|
<td>
|
|
<a href="https://www.joetz.be/over-joetz">Joetz vzw</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<img src="/assets/images/icons/calendar.svg" alt="Year" class="badge icon"/>
|
|
</td>
|
|
<td>2022</td>
|
|
</tr>
|
|
</table>
|
|
</li>
|
|
<li>
|
|
<span data-i18n="cv.youth_leader.title">Youth leader</span>
|
|
<table>
|
|
<tr class="less-relevant">
|
|
<td>
|
|
<img src="/assets/images/icons/school.svg" alt="Institution" class="badge icon"/>
|
|
</td>
|
|
<td>
|
|
<a href="https://www.joetz.be/over-joetz">Joetz vzw</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<img src="/assets/images/icons/calendar.svg" alt="Year" class="badge icon"/>
|
|
</td>
|
|
<td>2018</td>
|
|
</tr>
|
|
</table>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</aside>
|
|
|
|
<div class="main-content">
|
|
<section id="education">
|
|
<h2 data-i18n="cv.education">Education</h2>
|
|
<section>
|
|
<!-- TODO Keep study place and year on the same line where possible -->
|
|
<header>
|
|
<h3 class="save-link">
|
|
<a href="https://studiekiezer.ugent.be/2024/master-of-science-in-computer-science"
|
|
data-i18n="cv.msc_computer_science.title">
|
|
M.Sc. Computer Science
|
|
</a>
|
|
</h3> -
|
|
<span class="place" data-i18n="names.ugent">
|
|
<a href="https://www.ugent.be/en">Ghent University</a>
|
|
</span>
|
|
<time class="time" datetime="2027-06">2027</time>
|
|
<p class="description" data-i18n="cv.msc_computer_science.description">
|
|
Electives with a focus on high-performance systems and security.
|
|
</p>
|
|
</header>
|
|
</section>
|
|
<section>
|
|
<header>
|
|
<h3 class="save-link">
|
|
<a href="https://studiekiezer.ugent.be/2021/bachelor-of-science-in-computer-science"
|
|
data-i18n="cv.bsc_computer_science.title">
|
|
B.Sc. Computer Science
|
|
</a>
|
|
</h3> -
|
|
<span class="place" data-i18n="names.ugent">
|
|
<a href="https://www.ugent.be/en">Ghent University</a>
|
|
</span>
|
|
<time class="time" datetime="2025-06">2025</time>
|
|
<p class="description" data-i18n="cv.bsc_computer_science.description">
|
|
Minor in security & parallel systems
|
|
</p>
|
|
</header>
|
|
<ul class="summary">
|
|
<li class="less-relevant" data-i18n="cv.bsc_computer_science.1_insights">
|
|
Solid theoretical foundation in computer science, with insight into fundamental
|
|
concepts, principles and design patterns, supported by practical applications in
|
|
projects.
|
|
</li>
|
|
<li data-i18n="cv.bsc_computer_science.2_background">
|
|
Strong algorithmic background, including complexity analysis, advanced data structures,
|
|
algorithmic paradigms, hashing, compression and automata.
|
|
</li>
|
|
<li data-i18n="cv.bsc_computer_science.3_knowledge">
|
|
Thorough knowledge of secure systems and networks: RESTful APIs, semantic web, network
|
|
security, cryptography, operating systems, and databases.
|
|
</li>
|
|
<li data-i18n="cv.bsc_computer_science.4_ai">
|
|
Understanding of ethical and sustainable Artificial Intelligence, explainable AI,
|
|
neural networks, Constraint Satisfaction Problems (CSPs), Hidden Markov Models (HMMs)
|
|
and computer vision.
|
|
</li>
|
|
<li data-i18n="cv.bsc_computer_science.5_learning">
|
|
Lifelong learner capable of quickly and independently adopting new technologies and
|
|
methodologies.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section class="hidden less-relevant">
|
|
<header>
|
|
<h3 data-i18n="cv.hi_science_maths.title">Science and mathematics</h3>
|
|
- <a href="https://www.sintlievenscollege.be/" class="place" data-i18n="names.slc">
|
|
Saint Livinuscollege Secondary School Ghent
|
|
</a>
|
|
<time class="time" datetime="2021-06">2021</time>
|
|
<br>
|
|
<span class="description" data-i18n="cv.hi_science_maths.description">
|
|
CLIL English: 4th year geography, 6th year biology
|
|
</span>
|
|
</header>
|
|
</section>
|
|
</section>
|
|
|
|
<section id="experience">
|
|
<h2 data-i18n="cv.experience">Experience</h2>
|
|
<section>
|
|
<header>
|
|
<h3 data-i18n="cv.ugent_assistant.title">Teaching assistant</h3>
|
|
- <span class="place" data-i18n="names.ugent">
|
|
<a href="https://www.ugent.be/en">Ghent University</a>
|
|
</span>
|
|
<span class="time"><time datetime="2025-09">09/2025</time>
|
|
- <span data-i18n="time.present">present</span></span>
|
|
</header>
|
|
<ul class="summary">
|
|
<li data-i18n="cv.ugent_assistant.1_practicals">
|
|
As a Master's student, support practicals and assess­ments for students enrolled in
|
|
the <a href="https://studiekiezer.ugent.be/2025/studiefiche/en/C003080">Programming</a>
|
|
course.
|
|
</li>
|
|
<li data-i18n="cv.ugent_assistant.2_guide">
|
|
Guide students on Python programming concepts, answering their questions, and
|
|
facilitating hands-on learning.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<header>
|
|
<h3 data-i18n="cv.codefever.title">Teaching assistant</h3>
|
|
- <span class="place"><a href="https://codefever.be">CodeFever vzw</a></span>
|
|
<span class="time"><time datetime="2024-09">09/2024</time>
|
|
- <span data-i18n="time.present">present</span></span>
|
|
</header>
|
|
|
|
<ul class="summary">
|
|
<li data-i18n="cv.codefever.1_introduce">
|
|
Introduce children (aged 8-15) to programming and teach computational thinking
|
|
creatively, using Scratch, Minecraft Education, HTML & JS and Micro:bit.
|
|
</li>
|
|
<li data-i18n="cv.codefever.2_curiosity">
|
|
Encourage and support the development of their own interests and curiosity.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section class="hidden">
|
|
<header>
|
|
<h3 data-i18n="cv.head_youth_leader.title">Head youth leader</h3>
|
|
- <span class="place"><a href="https://www.joetz.be/over-joetz">Joetz vzw</a></span>
|
|
<span class="time"><time datetime="2022-07">07/2022</time>
|
|
- <span data-i18n="time.present">present</span></span>
|
|
</header>
|
|
|
|
<ul class="summary">
|
|
<li data-i18n="cv.head_youth_leader.1_youth_leaders">
|
|
Act as the primary contact for a diverse group of youth leaders, facilitate
|
|
collaboration and coach them.
|
|
</li>
|
|
<li data-i18n="cv.head_youth_leader.2_administration">
|
|
Coordinate daily operations, scheduling, task distribution and administrative follow-up.
|
|
</li>
|
|
<li data-i18n="cv.head_youth_leader.3_safety">
|
|
Ensure (emotional) safety and well-being, make reasoned decisions and carry final
|
|
responsibility.
|
|
</li>
|
|
<li data-i18n="cv.head_youth_leader.4_development">
|
|
Continuously reflect and adjust to further develop myself.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section class="hidden less-relevant">
|
|
<header>
|
|
<h3 data-i18n="cv.artbot.title">ArtBot Animator</h3>
|
|
- <a href="https://www.sintlievenscollege.be/" class="place" data-i18n="names.slc">
|
|
Saint Livinuscollege Humaniora Ghent
|
|
</a>
|
|
<span class="time">
|
|
<time datetime="04-2019">04/2019</time> - <time datetime="04-2020">04/2020</time>
|
|
</span>
|
|
</header>
|
|
|
|
<ul class="summary">
|
|
<li data-i18n="cv.artbot.1_coaching">
|
|
Coach small teams of children aged 11 to 12 and let them discover how robots can create
|
|
art.
|
|
</li>
|
|
<li data-i18n="cv.artbot.2_assist">
|
|
Assist during the accompanying lessons.
|
|
</li>
|
|
<li data-i18n="cv.artbot.3_robots">
|
|
Build robots with Lego Mindstorms and Arduino's and program movements in
|
|
<a href="https://learn.sparkfun.com/ArduBlock">Ardublock</a>.
|
|
</li>
|
|
<li data-i18n="cv.artbot.4_themes">
|
|
Work on societal themes such as environmental pollution.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section class="hidden">
|
|
<header>
|
|
<h3 data-i18n="cv.youth_leader.title">Youth leader</h3>
|
|
- <span class="place"><a href="https://www.joetz.be/over-joetz">Joetz vzw</a></span>
|
|
<span class="time"><time datetime="10-2018">10/2018</time>
|
|
- <span data-i18n="time.present">present</span></span>
|
|
</header>
|
|
|
|
<ul class="summary">
|
|
<li data-i18n="cv.youth_leader.1_activities">
|
|
Organize play activities and accompany groups of up to 30 children (ages 3-15) during
|
|
summer camps and day trips.
|
|
</li>
|
|
<li data-i18n="cv.youth_leader.3_cooperation">
|
|
Collaborate directly with fellow youth leaders, head youth leaders and external
|
|
partners, to ensure smooth operations.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<header>
|
|
<h3 data-i18n="cv.joetz.title">(Head) youth leader</h3>
|
|
- <span class="place"><a href="https://www.joetz.be/over-joetz">Joetz vzw</a></span>
|
|
<span class="time"><time datetime="10-2018">10/2018</time>
|
|
- <span data-i18n="time.present">present</span>
|
|
</span>
|
|
</header>
|
|
|
|
<ul class="summary">
|
|
<li data-i18n="cv.youth_leader.1_activities">
|
|
Organize play activities and accompany groups of up to 30 children (ages 3-15) during
|
|
summer camps and day trips.
|
|
</li>
|
|
<li data-i18n="cv.youth_leader.3_cooperation">
|
|
Collaborate directly with fellow (head) youth leaders and external partners to ensure
|
|
smooth operations.
|
|
</li>
|
|
<li data-i18n="cv.joetz.a_contact">
|
|
As head youth leader, act as the primary
|
|
contact for a diverse group of youth leaders, facilitate collaboration and coach them,
|
|
coordinate daily operations and administrative follow-up.
|
|
</li>
|
|
<li data-i18n="cv.head_youth_leader.3_safety">
|
|
Ensure (emotional) safety and well-being, take final responsibility and make reasoned
|
|
decisions.
|
|
</li>
|
|
<li data-i18n="cv.head_youth_leader.4_development">
|
|
Continuous self-reflection and development.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</section>
|
|
<section id="extracurricular-activities">
|
|
<h2 data-i18n="cv.extracurricular.header">Extracurricular activities</h2>
|
|
<ul>
|
|
<li data-i18n="cv.extracurricular.ksa">
|
|
Member of KSA Ghent Saint Livinus up until 2020.
|
|
</li>
|
|
<li data-i18n="cv.extracurricular.homelab">
|
|
Built and maintained a <a href="https://en.wiktionary.org/wiki/homelab">homelab</a>
|
|
for hands-on learning in virtualization, containerization, security-hardening and automated deployments.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<p class="interactive">
|
|
<button onclick="window.print()">
|
|
<img style="width: 1lh; height: 1lh;" src="/assets/images/icons/printer.svg" alt="" class="icon"/>
|
|
Print CV
|
|
</button>
|
|
</p>
|
|
|
|
<footer>
|
|
<!-- TODO Turn footer into a reusable component -->
|
|
<noscript>
|
|
<div class="quote">
|
|
<h2>JavaScript is disabled</h2>
|
|
<p>
|
|
I totally support your decision to disable JavaScript.
|
|
However, as of right now, this website does not completely work without JavaScript.
|
|
I am working on improving that.
|
|
</p>
|
|
<p>
|
|
Please consider allowing JavaScript for this website.
|
|
There is no tracking or ads.
|
|
</p>
|
|
<p>
|
|
Kind regards
|
|
</p>
|
|
<p class="signature">Tibo De Peuter</p>
|
|
</div>
|
|
</noscript>
|
|
<p>
|
|
<a href="/key.asc" title="Get my public PGP key" data-i18n="footer.key">
|
|
08A9 C1C8 CF91 59C9 172A BA12 9B11 F524 3089 DB5B</a>
|
|
(<a href="https://keys.openpgp.org/vks/v1/by-fingerprint/08A9C1C8CF9159C9172ABA129B11F5243089DB5B"
|
|
title="Get my public PGP key (alternative link)"
|
|
data-i18n="footer.key_alternative">alternative link</a>)
|
|
|
|
<a href="https://en.wikipedia.org/wiki/Public-key_cryptography"
|
|
title="What is public key cryptography?"
|
|
data-i18n="footer.key_help">
|
|
<img src="/assets/images/icons/question-mark.svg" alt="" class="icon inline-icon"/></a>
|
|
</p>
|
|
<p>
|
|
<span data-i18n="footer.made_with">Made with</span> <span class="heart">♥</span>.
|
|
<a href="https://git.depeuter.dev/tdpeuter/tdpeuter"
|
|
about="source code of this webpage"
|
|
data-i18n="footer.source_code">
|
|
Source code
|
|
</a>
|
|
</p>
|
|
|
|
<!-- TODO Keep a list of links so they can also be used in print -->
|
|
<!-- <ol class="save-links">-->
|
|
<!-- <li id=""></li>-->
|
|
<!-- </ol>-->
|
|
</footer>
|
|
<script>
|
|
import ('/src/lib/crypto.js').then(module => {
|
|
window.decode = module.decode;
|
|
});
|
|
|
|
function reveal() {
|
|
const locationHrefCode = "NHtnf0QfKwd3KAFJD2BSJiAaIydZXStKIwZgGAYKDBg5Pk9RJiJMXC0yIR8KBhUwAncSFmsGbxMHBg4eHx8aXXhUPwZoYxNeFXM1EgRPclg2DTkFIClMXQsIA2Yee3ptOAxPBgEtWwYVLClddjE5Gwp4A1N1fQc/Oy4mTWQdECYyOBx/GHVzKl8/HgVoFVo6aW0ILAR0X0sCHAIkby0kDW4zImYDVlMSDH4uOj4ROHwVfwo/EWFwIjwNMlxvEzUvBCoWBXUaeXttLlU6Kw1DAyI/AgBkHRoXHTlVMntZdgtYTksHbXVSAj8PFgpNMSs4TGIkQ2AgFRxqP3soMBgkMU4ySXhZV0JJYVdrK2FtSWpYelI1WWs0dldtQWxmblVrS1hOSWF6MDVNMTQvZUdWSFZUMW5ZWEkvYzMxU2FGQXNQbHB0WmwxK2NVbFJjaTFnZTBoRlFnPT0=";
|
|
const locationHrefMask = "VTM1TydXZjE7UTh6a1MxU0IpYUs7M2V6QGs2dGJNPXBafXonRU8vKk5fd2xTXkdAYEUmYCZSImlJUktpUltPay0uU08xUSMnWyZdV04hPDJsYUldcUUjMl1yQSV6LUtVaU92VVhXY3Fwb2c6Jl9sYltKVis7TkZXXUBCJTAtc01qe3NJSjY1Wz1nckMwbG5DMDhnVVY3L35ndmZqI0dhdD9Ze1VaZDA9QCtNQGlESD9COG5pSDlBel9nSiw6VHtuYVBAQixfSCE1aWB5Zls0M2xSM2MudGJneWo9UDdoTjw9fX5jJzExLWVKfnMuckRNLzFXKS13fXsnfDFgaXNiRg==";
|
|
const locationHref = decode(locationHrefCode, locationHrefMask, 46);
|
|
|
|
const locationTextCode = "bQIeUgAlaTBEXGkafD1MNz8wDDNraHRQJyFcKC4dWUYWHBYaOCsqDGoiB1BBKjQkFyovTggUHEAtAhhPC2Z7fCRGWjENOnEbFx86ATA9Iy0BewIFclJCBgM4fFs+BG81AQUgHBh3WCMKJQQ8ATgTUHhfcyEmE2x9XFBtD3IsIBc5HzMZdRMCBHM7dy0WEzwjEhVQbRFle0Z8YUl7EhUWLmUELhl6KGBpKARFBQMtJwwbPl11KHgNKUgRPwcNW3cdIhMjAwARKUU1S1dHKRY4c3NyRXIEP0pbaFYhXDgKAEYlLik7GgRScjpPDS0yNgsEBSRzADI1HDBiRA4xAicQAlZGMUpNVzlzSjFJa1pHaFBYalZnUUd0TVRFMDNha0VoTkdVaVdYMVVUM0JWV0Y1Zk0xMUtRUzVvSjJwN01ERW9NVXdyU1hSZlczSkJXRHcvYVdKUmZRPT0=";
|
|
const locationTextMask = "OUUnOGFtI0AnbztqNXknQHB0TUAiLT48RWY4WEpKaStaWideYFFCSzlxMnsnYlNXdG1iOF15dCF7bEklX1dOLEV1bltUbidUXi5wc1JWcUxXIzNJJjwqT1pCMmtkNVZUU1NlLUgjYFBbT2B+ZVMiIjMxJVNwSy4nPWA/bSR0UGBtdlxrOSJMRiJ+Tl9YV0xEcyQ0NUk2SjMqUXgxWydyRT1Qdy0wfVVZeUdwN2ZBZT1NeDlFSy88YS59aWhcNyEsQ2pPbkojUXV7MTg1eGxXWCM1IkdUeiVuOThvNlpCaC9peEFKT1NjKHV9QFR7WG9QU2dLempeXUg0L3ZmYE5aVA==";
|
|
let locationText = decode(locationTextCode, locationTextMask, 18);
|
|
locationText = locationText.substring(0, locationText.length - 1) + locationText.charAt(locationText.length - 1).toUpperCase();
|
|
|
|
const locationLink = document.querySelector('#location');
|
|
if (locationLink) {
|
|
locationLink.href = locationHref;
|
|
locationLink.textContent = locationText;
|
|
}
|
|
|
|
const birthYearCode = "ezEuMW59TwYcFw5APH50EiltRxYsJT0uKWMKYWciDAMbPQQ6EzVnMWEvOCUvBDohPxYwPQJmMDMiHTB6CmMFDiRjUV5pFDYFGyZ2DAdrHW4uEU1PfQBAD2QYXGQDcU0nOUchBxdrEhVVHy8MZEEqVCItJQ0wcRFCMitpGmsIeBtrPC4qL08eFGFkFENEei4gRi8lDXxnWRICegYiCRdRQX4yByoyMXlzNHExcCMlSgsJNQNiYEEbbiEZQhYeCHMsYhUbDmIMRXAIcCp0KRxmPi54EF5vPQc8BjAKXhMnJB82FUYACTUnUyM3EwwWQ3EJHRMLb2B6FhhvRhsaTSgFCFNTczZYWFZ0ZFVwRmNqVlFSMEloTG50bFpXMTJVWGNqTkRrd09GcFRaVmg3S0h3cFNHeFBYRFI5VWw5TVBTOHZjVDEwUUNkcktHWnBibmQwWUNabUxRPT0=";
|
|
const birthYearMask = "NltvRiNNI1VQQV93bysme3NeI3NhfUlZSDdMKjF2QnVCREpscU81Ui5Fdld2N2hIblJ6TktWfndARWVJRitmOUY0aWk/UlFyT1xHR1YuSydNWTolK0Y4WDZiaVVUQipUcyxFXkMtUCYzWn54PnFZIXZ6b0BpMml0ZmM4aDNMTHYiaFZgeCIreC88cHMlSHhIJEVWNCs/IUFjS2pzQiZlMSlIM1N+SDRcfkN7NHpcc3haXlk7MSpROkJcIWRGTj1LO3lefjFZNUJqJ2g5Zy0jRmM9ZG0/REl5ZUp9K3JiSEd4Rnd2QkxUK2hhRTVfLkl8fiFdPDMyel4iLGwpLHtfUg==";
|
|
const birthYear = decode(birthYearCode, birthYearMask, 4);
|
|
|
|
const birthdayElement = document.querySelector('#birthday');
|
|
if (birthdayElement) {
|
|
birthdayElement.textContent = birthYear;
|
|
birthdayElement.setAttribute('datetime', birthYear);
|
|
}
|
|
|
|
const emailAddressCode = "KCsbPg5XalgSGDcbHiAuG11HB0QfOWREMnljRwZgFSMPE1oaXX4QCisbRB8iICYZcyM3DQUkKjEoKyYyGiErBW5VVX4CVhwjbBkgBQkqPlppYAlZZg8+FTQ8HmtRECc1Pw1jMHRxJRYGDk0fZBx8LVVZP3UnOCRZB21iWl86DF1wfA00UhINagcschc4Cgk0ESAMEDV5aGZaTlQnfgJhMmkvcD9Rc2IcNksHCREwCEtEVhJGfWtsQnJOQwwRBE0RPj9vZxwXYD4KETpZGR9HVjsREg4pAGA5PEEhfQk3EStmPQgQDjJ+KXVsPz0rG0JeYysAXCgJfGNvUVxKM1YgS2ZuQWhNMGx2V0VwY0xHTjRmRGRzUW5OQlNFOTROanRkZGx0elBTOGtMbUJLVmtzb0lUQmRXSGR6ZkRkb1IxMWtQaThsZUdzbGNXNHJQRzVMT1U0dE5RPT0=";
|
|
const emailAddressMask = "TGx3V2xnKDNIQHV3enh8dz4uMi9FYT58ZEsldkhSR2RYVSpDOz0pRnMpcVRoTXdrOHdPRFZPZFt7RUJGQnJyMDplMk9LZHBXO09tc1lscDUmNk8vL1xOUHppVC00fU92dnc2SC4nVX5XWilUKFglXTcydSZpfU80Yj43aTxUOTg/KUBaN0d1W0tAR0dicE99cGZOZ1c/WVE/NG1zJ24sQSZnOUw3NjMrfXlvMV53SSYhP1dwLCxVOzgkK3pYNClYa3tfUkhANU9AR1EwTHJ+ZHBUIzlPVDZPbS9ZL1N0W00seEJkWnYwWDw5R298cHdsKHNVNn1wTFU4OG0tZzxHeQ==";
|
|
const emailAddress = decode(emailAddressCode, emailAddressMask, 17);
|
|
|
|
const emailElement = document.querySelector('#email');
|
|
if (emailElement) {
|
|
emailElement.href = `mailto:${emailAddress}`;
|
|
emailElement.textContent = emailAddress;
|
|
}
|
|
|
|
const phoneNumberCode = "IigvOgkNQx4hUDBVIRIsRgA9OgtrfR5HDDILNGNkEh9oGWRaGFpeMUADVksueTcVWwNgOxYmOio3FH07JypgGyd0LShDCnAFHlNbUSRcDmkuUU4HcQk2bwdAfR5sCwgrZGYScycJYGINDgp/ZSYuGhhFLF18MGZcKDlgGyMcZxkgIiNjezsJIAJCNFF/Mxg6CFwuaHoEVh8gAW8xdGcwdAlEJlctDykTYzkxB3V6KxMcYltkAHokDDkwRl4pQGUFHSJ1cztNLhUeEz8MCk8PEA0UTFA7NWssCVILcRMgR3UtOCM0B2NeTRZiEDZ0AT4DNU4lXCxaKQ0PZxgKLhE4WlgyRW5MSGd6UFhKNVNVNDhNVEZyV3lsZlQweE5KaWs4VlQxZUxXWmpNVVFyYkRGM0lVVjBSRHcyYkRnMFNYNTBPMTlnUFZoWFAzeFVmSGxPYmxaMVl3PT0=";
|
|
const phoneNumberMask = "aVJiQ0dJJC1vOmVnbkZPd0poVk84Tk9+amVnbTkwW2slXS4qU2omdSVQJT57SkMnPWlZTkxIeHt5UkhMdkYyWGtFXkEncDI0SmI3YUBtRCZPYCk0KEF7REwuSFomYmRSLyJAKkNkKVBURj87K0pefFIvW2UvXTAyTm8iS2lLVmpwS1RRIXM4elsodT41d2BpRzBnUSs1Oi1FVD1lOFdmIVwpZCdPYl11KUNnVTkpR0JMJ243TS5mY3RdKSlIcydkSkwvMHF+XXx8RHl8R302aFVDI2dpTyl1RitBNl5MIzl+bHFVTCRrKnc1QUA/VGQoejRGM31qeGNuL2h+Z0l6Yw==";
|
|
const phoneNumber = decode(phoneNumberCode, phoneNumberMask, 12);
|
|
|
|
const phoneElement = document.querySelector('#phone');
|
|
if (phoneElement) {
|
|
phoneElement.href = `tel:${phoneNumber}`;
|
|
// With extra spaces
|
|
phoneElement.textContent = `${phoneNumber.slice(0, 3)} ${phoneNumber.slice(3, 6)} ${phoneNumber.slice(6, 8)} ${phoneNumber.slice(8, 10)} ${phoneNumber.slice(10)}`;
|
|
}
|
|
|
|
// Hide button
|
|
const revealContactButton = document.querySelector('#reveal-contact');
|
|
if (revealContactButton) {
|
|
revealContactButton.style.display = 'none'; // Hide the button after revealing contact info
|
|
}
|
|
|
|
// Remove blur effect from the container
|
|
const blurContainer = document.getElementById('blur-info');
|
|
if (blurContainer) {
|
|
blurContainer.classList.add('revealed');
|
|
}
|
|
|
|
// Expand details elements
|
|
for (const detail of document.querySelectorAll('details.collapsable-card')) {
|
|
detail.open = true;
|
|
console.debug(`[cv-en.html] Expanded details: ${detail.innerText}`);
|
|
}
|
|
}
|
|
|
|
window.onbeforeprint = function () {
|
|
reveal();
|
|
}
|
|
</script>
|
|
<script src="/script.js"></script>
|
|
</body>
|
|
</html>
|