Compare commits
4 commits
dec6fb5294
...
7833efbeb0
Author | SHA1 | Date | |
---|---|---|---|
7833efbeb0 | |||
bc2b77b370 | |||
1c1b8d8be9 | |||
32dfab2242 |
2 changed files with 44 additions and 5 deletions
|
@ -9,7 +9,7 @@ const { fillPercentage } = Astro.props;
|
||||||
<style>
|
<style>
|
||||||
.gauge {
|
.gauge {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 30px;
|
height: 20px;
|
||||||
background-color: #221d30;
|
background-color: #221d30;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
|
@ -27,9 +27,6 @@ I am also fascinated by music: I play drums, I DJ, and I produce electronic musi
|
||||||
This list showcases the technologies and fields I'm the more confident with.
|
This list showcases the technologies and fields I'm the more confident with.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<Gauge fillPercentage=70></Gauge>
|
|
||||||
<Gauge fillPercentage=50></Gauge>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
- c
|
- c
|
||||||
- rust
|
- rust
|
||||||
|
@ -51,6 +48,32 @@ This list showcases the technologies and fields I'm the more confident with.
|
||||||
- command line tools
|
- command line tools
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><th>Field</th> <th width="100%">Experience gauge</th></tr>
|
||||||
|
<tr><td>Shell</td> <td><Gauge fillPercentage=95 /></td></tr>
|
||||||
|
<tr><td>Linux</td> <td><Gauge fillPercentage=90 /></td></tr>
|
||||||
|
<tr><td>Arch Linux</td> <td><Gauge fillPercentage=90 /></td></tr>
|
||||||
|
<tr><td>Debian</td> <td><Gauge fillPercentage=90 /></td></tr>
|
||||||
|
<tr><td><code>git</code></td> <td><Gauge fillPercentage=75 /></td></tr>
|
||||||
|
<tr><td>Alpine Linux</td> <td><Gauge fillPercentage=70 /></td></tr>
|
||||||
|
<tr><td>Docker</td> <td><Gauge fillPercentage=70 /></td></tr>
|
||||||
|
<tr><td>Python</td> <td><Gauge fillPercentage=60 /></td></tr>
|
||||||
|
<tr><td><code>systemd</code></td> <td><Gauge fillPercentage=60 /></td></tr>
|
||||||
|
<tr><td><code>qemu</code></td> <td><Gauge fillPercentage=60 /></td></tr>
|
||||||
|
<tr><td>Red Hat</td> <td><Gauge fillPercentage=50 /></td></tr>
|
||||||
|
<tr><td>Web</td> <td><Gauge fillPercentage=50 /></td></tr>
|
||||||
|
<tr><td>X.509</td> <td><Gauge fillPercentage=40 /></td></tr>
|
||||||
|
<tr><td>C</td> <td><Gauge fillPercentage=30 /></td></tr>
|
||||||
|
<tr><td>Kubernetes</td> <td><Gauge fillPercentage=25 /></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<h1>My professional experience</h1>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>April 2023 to July 2024, <b>KAIZEN Solutions</b>, internship: development of a monitoring solution for Debian servers</li>
|
||||||
|
<li>September 2023 to August 2024, <b>Micasys</b>, apprenticeship, evolution of company cybersecurity</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h1>My projects</h1>
|
<h1>My projects</h1>
|
||||||
|
|
||||||
<h2>Commitment to software and Internet freedom</h2>
|
<h2>Commitment to software and Internet freedom</h2>
|
||||||
|
@ -107,7 +130,7 @@ figcaption {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
* {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,4 +158,20 @@ code {
|
||||||
iframe {
|
iframe {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
td, th {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:first-child, td:first-child {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:nth-child(2), td:nth-child(2) {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue