Compare commits

..

No commits in common. "a39f5edbb096aa350cc253750dfaaae708ad9fde" and "51b9341455184a23f5c1b9c364e0f7d302f7edba" have entirely different histories.

8 changed files with 674 additions and 1815 deletions

2136
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"name": "ahurac-homepage",
"type": "module",
"version": "2.0.0",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

View file

@ -7,7 +7,6 @@ import NavButton from '../components/NavButton.astro'
<span>Ahurac</span>
<div class="navButtons">
<NavButton link="/">Home</NavButton>
<NavButton link="/portfolio">Portfolio</NavButton>
<NavButton link="mailto:ahurac@mailbox.org">Contact (mail)</NavButton>
</div>
</div>

View file

@ -1,64 +0,0 @@
---
import Header from '../components/Header.astro';
const { title } = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> -->
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Ahurac | { title }</title>
</head>
<body>
<Header />
<main><slot /></main>
</body>
</html>
<style>
@font-face {
font-family: 'Cantarell';
src: url('/fonts/cantarell.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
body {
/* Background */
background: linear-gradient(90deg, #08001a 0%, #000d1a 100%);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: black;
/* Text */
color: white;
font-family: 'Cantarell', sans-serif;
/* Flex */
display: flex;
align-items: center;
margin: 0;
flex-direction: column;
font-size: 110%;
}
main {
width: 40%;
text-align: justify;
}
@media screen and (max-width: 1200px) {
main {
width: 60%;
}
}
@media screen and (max-width: 800px) {
main {
width: 95%;
}
}
</style>

View file

@ -1,44 +0,0 @@
---
import Page from '../layouts/Page.astro';
import { Image } from 'astro:assets';
import teraioImg from '../assets/tera-io.jpg';
---
<Page title="Portfolio">
<h1>Qui suis-je ?</h1>
<p>J'étudie actuellement en 3<sup>ème</sup> année de BUT Informatique à l'IUT2 de Grenoble, dans le parcours "Déploiement d'applications communicantes et sécurisées" dont le contenu se rapporte à l'administration système et à la sécurité informatique. Fasciné par la capacité d'un système d'exploitation à proposer une interface à l'utilisateur depuis mon plus jeune âge, je me prends de passion pour l'écosystème Linux en 2022, dont je fais une utilisation intensive depuis. Cette passion m'a poussé à mener un combat en faveur du logiciel libre.</p>
<h1>Mes projets</h1>
<h2>Engagement pour le logiciel et l'Internet libre</h2>
<p>Depuis 2023, je mets en ligne des services à base de logiciels libres sur le web grâce à mon serveur personnel, <code>tera-io</code>. Ces services me permettent de ne pas avoir recours à des équivalents dispensés par des entreprises irrespectueuses de la vie privée des utilisateur•ices, ainsi que de parfaire mes connaissances et ma pratique de l'administration système et du déploiement de services.</p>
<Image
alt="tera-io, mon serveur personnel"
src={ teraioImg }
width={ 200 }
/>
<figcaption>Photo de <code>tera-io</code>, mon serveur personnel</figcaption>
<p>
- **[Forgejo](https://forgejo.org/)**, une forge de code source
- **[Matrix](https://matrix.org/)** via le logiciel **[Conduit](https://conduit.rs/)**, une messagerie instantannée chiffrée et fédérée
- **[Bitwarden](https://bitwarden.com/)** via le logiciel **[Vaultwarden](https://github.com/dani-garcia/vaultwarden)**, un gestionnaire de mot de passe centralisé
</p>
</Page>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
figcaption {
text-align: center;
font-style: italic;
}
</style>

View file

@ -1,39 +1,91 @@
---
import Page from '../layouts/Page.astro';
import Header from '../components/Header.astro';
import Card from '../components/Card.astro';
---
<Page title="Home">
<p>Home of a FOSS extremist and music nerd.</p>
<h1>My services</h1>
<div id="cards">
<Card
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Ahurac</title>
</head>
<body>
<Header />
<main>
<p>Home of a FOSS extremist and music nerd.</p>
<h1>My services</h1>
<div id="cards">
<Card
id="forgejo"
name="Forgejo"
link="https://git.ahur.ac/"
>A straight-to-the-point source code forge</Card>
<Card
>A straight-to-the-point source code forge</Card>
<Card
id="send"
name="Send"
link="https://send.ahur.ac/"
>Encrypt and send files privately</Card>
<Card
>Encrypt and send files privately</Card>
<Card
id="matrix"
name="Matrix"
link="https://chat.ahur.ac/"
>The messenger that doesn't spy on you</Card>
<Card
>The messenger that doesn't spy on you</Card>
<Card
id="vaultwarden"
name="Vaultwarden"
link="https://vw.ahur.ac/"
>A (Rust) based password manager</Card>
</div>
>A (Rust) based password manager</Card>
</div>
</main>
</body>
</html>
<style>
#cards {
display: flex;
flex-direction: column;
}
@font-face {
font-family: 'Cantarell';
src: url('/fonts/cantarell.otf') format('otf');
font-weight: normal;
font-style: normal;
font-display: swap;
}
body {
/* Background */
background: linear-gradient(90deg, #08001a 0%, #000d1a 100%);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: black;
/* Text */
color: white;
font-family: 'Cantarell', sans-serif;
/* Flex */
display: flex;
align-items: center;
margin: 0;
flex-direction: column;
}
main {
width: 40%;
}
@media screen and (max-width: 1200px) {
main {
width: 60%;
}
}
@media screen and (max-width: 800px) {
main {
width: 95%;
}
}
</style>

View file

@ -1,134 +0,0 @@
---
import Page from '../layouts/Page.astro';
import { Image } from 'astro:assets';
import teraioImg from '../assets/tera-io.jpg';
---
<Page title="Portfolio">
<h1>Who am I?</h1>
<p>
My name is <b>Hippolyte Chauvin</b> and I'm born in <b>2004</b>. I study the <b>computer science bachelor</b> (BUT Informatique) at the <b>technological university institute of Grenoble</b> (IUT2 Grenoble), where I follow the course named "Communicating and secure application deployment" which is about system administration and IT security. I gained passion for the <b>Linux</b> ecosystem in 2022, which I use daily since back then.
</p>
<p>
I was introduced to the world of computers in my young age, when I could spend hours on the family's computer messing around with the operating system and trying to explore every feature it had built in. This experience slowly led me to want to learn how to seriously use a computer, and later to study the field of cybersecurity.
</p>
<p>
I am also fascinated by music: I play drums, I DJ, and I produce electronic music under the name <b>Ahurac</b>.
</p>
<h1>My skills</h1>
<p>
This list showcases the technologies and fields I'm the more confident with.
</p>
<!--
- c
- rust
- python
- web
- linux
- bash, posix shell
- docker
- kubernetes
- qemu
- git
- arch linux
- debian, ubuntu
- rpm based
- alpine linux
- x509
- systemd
- source code forges
- command line tools
-->
<h1>My projects</h1>
<h2>Commitment to software and Internet freedom</h2>
<p>
Since 2023, I host free software based services on the web thanks to my personnal server, <code>tera-io</code>. These services allow me to escape from ones provided by privacy disrespecting big corporates, and at the same time enhance my system administration and service deployment knowledge.
</p>
<Image
alt="tera-io, my personnal server"
src={ teraioImg }
width={ 200 }
/>
<figcaption>Photo of <code>tera-io</code>, my personnal server</figcaption>
<p>You can find links to services I host on <a href="/">this website's homepage</a>.</p>
<h2><code>qemush</code></h2>
<p>
<code>qemush</code> is a wrapper for the <b>QEMU</b> software. This emulator has a lot of features, and running QEMU machines can sometimes require a lot of command line arguments. <code>qemush</code> aims to provide an unified interface and a basic abstract layer to this software.
</p>
<p>
<code>qemush</code> is written in a very portable way (in POSIX shell). It works with a system of launchers : a laucher is an user-written subscript called by the main program, that invokes a QEMU process in the end.
</p>
<p>
You can find <code>qemush</code>'s source code in <a href="https://git.ahur.ac/ahurac/qemush">its repo</a> on my self-hosted instance of the source code forge <b>Forgejo</b>.
</p>
<h2>Music career</h2>
<p>
I have released a bunch of electronic music songs since 2019. Despite being a proprietary platform, you can find my work on <b><a href="https://youtube.com/c/Ahurac">YouTube</a></b>. I create everything on my personnal computer, using as much as free software as I can.
</p>
<p>Here is my latest song to this date:</p>
<p><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/B3LzQjL3UQQ?si=VS2v08yuCNN4VezK" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
</Page>
<style>
img, iframe {
display: block;
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 50px #ff1aff80;
}
figcaption {
text-align: center;
font-style: italic;
margin-top: 5px;
}
p {
line-height: 1.5;
}
a {
position: relative;
text-decoration: none;
color: #ff66ff;
padding: 2px;
transition: all 0.3s ease;
box-shadow: inset 0 -3px 0 #ff66ff;
}
a:hover {
color: white;
box-shadow: inset 0 -24px 0 #ff66ff;
}
code {
padding: 2px;
border: 1px solid #ffffff80;
border-radius: 5px;
background-color: #00000080;
}
iframe {
border: 0;
}
</style>