feat: initial commit
This commit is contained in:
commit
2c7b8dcfe1
2 changed files with 133 additions and 0 deletions
32
css/style.css
Normal file
32
css/style.css
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
:root {
|
||||||
|
--bg-color: #000000;
|
||||||
|
--fg-color: #FFFFFF;
|
||||||
|
--ln-color: #FFFF00;
|
||||||
|
--ln-color-visited: #FFAA00;
|
||||||
|
}
|
||||||
|
html {
|
||||||
|
display: flex;
|
||||||
|
width: 100vw;
|
||||||
|
background-color: var(--bg-color);
|
||||||
|
color: var(--fg-color);
|
||||||
|
font-size: 1em;
|
||||||
|
font-family: monospace, "Cascadia Code", monospace;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
width: 80ch;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
#who { text-align: center; padding-top: 1lh; }
|
||||||
|
#bio { padding: 1lh 0; }
|
||||||
|
a { color: var(--ln-color); }
|
||||||
|
a:visited { color: var(--ln-color-visited); }
|
||||||
|
ul {
|
||||||
|
list-style-type: '- ';
|
||||||
|
padding-left: 4ch;
|
||||||
|
margin-top: 1lh;
|
||||||
|
margin-bottom: 1lh;
|
||||||
|
}
|
||||||
|
.section-title { text-decoration: underline; }
|
||||||
|
.footer-ws { max-height: use-available; }
|
||||||
|
footer { text-align: center; }
|
||||||
101
index.html
Normal file
101
index.html
Normal file
|
|
@ -0,0 +1,101 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="./css/style.css?version=3"/>
|
||||||
|
<title>Henri Saudubray</title>
|
||||||
|
<meta name="description" content="Etudiant en M1 MPRI">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<div id="who">Henri Saudubray </div>
|
||||||
|
<div id="bio">
|
||||||
|
I am a computer science student at Parisian Master of Research in Computer
|
||||||
|
Science (MPRI) at Université Paris Saclay, focusing on formal logic, proof
|
||||||
|
assistants, and programming languages.
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<div>
|
||||||
|
<main>
|
||||||
|
<div class="section" id="experience">
|
||||||
|
<div class="section-title">Experience</div>
|
||||||
|
<div class="content">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="title">Inductive predicate support in Why3</div>
|
||||||
|
<div class="location">
|
||||||
|
<a href="https://lmf.cnrs.fr">
|
||||||
|
Laboratoire Méthodes Formelles, CNRS
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="dates">Since March 2024</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="title">Full-stack development on IPA pipeline</div>
|
||||||
|
<div class="location"><a href="https://skapane.ai">Skapánê</a></div>
|
||||||
|
<div class="dates">September 2022 - August 2023</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="title">
|
||||||
|
Automated end-to-end testing on banking infrastructure
|
||||||
|
</div>
|
||||||
|
<div class="location">
|
||||||
|
<a href="https://www.icdc.caissedesdepots.fr">Informatique CDC</a>
|
||||||
|
</div>
|
||||||
|
<div class="dates">May - August 2022</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="title">Vice-Treasurer and teaching lead</div>
|
||||||
|
<div class="location">Ac'Lab</div>
|
||||||
|
<div class="dates">August 2021 - May 2022</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="formation">
|
||||||
|
<div class="section-title">Formation</div>
|
||||||
|
<div class="content">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="title">
|
||||||
|
Master Parisien de Recherche en Informatique (MPRI)
|
||||||
|
</div>
|
||||||
|
<div class="location">Université Paris Saclay</div>
|
||||||
|
<div class="dates">Since September 2023</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class=title">Licence Sciences du Numérique (SDN)</div>
|
||||||
|
<div class="location">Université Catholique de Lille</div>
|
||||||
|
<div class="dates">September 2020 - May 2023</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="links">
|
||||||
|
<div class="section-title">Links</div>
|
||||||
|
<div class="content">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Mail:
|
||||||
|
[<a href="mailto:henri.saudubray@universite-paris-saclay.fr"
|
||||||
|
>henri.saudubray[at]universite-paris-saclay[dot]fr</a>]
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Git:
|
||||||
|
[<a href="https://codeberg.org/17maiga"
|
||||||
|
>codeberg.org/17maiga</a>]
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
CV:
|
||||||
|
[<a href="https://hsaudubray.fr/pdf/cv.pdf">cv.pdf</a>]
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<div class="footer-ws"></div>
|
||||||
|
<footer>
|
||||||
|
Henri Saudubray - © 2024
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue