Compare commits

...

8 commits

3 changed files with 211 additions and 905 deletions

1040
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,29 @@
---
const { fillPercentage } = Astro.props;
---
<div class="gauge">
<div class="bar" style={ `width: ${fillPercentage}%` }></div>
</div>
<style>
.gauge {
width: 100%;
height: 20px;
background-color: #221d30;
border-radius: 15px;
box-sizing: border-box;
//margin: 20px 30px;
box-shadow: inset 0 0 0 1px #c6bfd990;
margin: 20px 0;
}
.bar {
//<!-- background-color: green; -->
//width: 20px;
height: 100%;
background: linear-gradient(90deg, #9933ff 0%, #ff4dff 100%);
box-shadow: 0 0 30px 1px #ff1affd0;
border-radius: 15px;
}
</style>

View file

@ -1,6 +1,7 @@
---
import Page from '../layouts/Page.astro';
import { Image } from 'astro:assets';
import Gauge from '../components/Gauge.astro';
import teraioImg from '../assets/tera-io.jpg';
---
@ -47,6 +48,32 @@ This list showcases the technologies and fields I'm the more confident with.
- 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>
<h2>Commitment to software and Internet freedom</h2>
@ -103,7 +130,7 @@ figcaption {
margin-top: 5px;
}
p {
* {
line-height: 1.5;
}
@ -124,11 +151,27 @@ a:hover {
code {
padding: 2px;
border: 1px solid #ffffff80;
border-radius: 5px;
border-radius: 7px;
background-color: #00000080;
}
iframe {
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>