Compare commits
5 commits
a3618e10ac
...
0c6d0c1cf4
Author | SHA1 | Date | |
---|---|---|---|
0c6d0c1cf4 | |||
a22dcaba1f | |||
0db264238f | |||
ffc388ae09 | |||
0643226d00 |
7 changed files with 329 additions and 150 deletions
36
html/cv.css
Normal file
36
html/cv.css
Normal file
|
@ -0,0 +1,36 @@
|
|||
.cv-category {
|
||||
border: 1px solid;
|
||||
padding: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
h2:before {
|
||||
content: "./";
|
||||
}
|
||||
h2 {
|
||||
border-bottom: none;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
section {
|
||||
margin: 1em 0em 1em 1em;
|
||||
}
|
||||
.cv-entry-title {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px dashed;
|
||||
}
|
||||
|
||||
h3 {
|
||||
border:none;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.cv-entry-school:before {
|
||||
content: "@ ";
|
||||
}
|
||||
|
||||
.cv-job-location:before {
|
||||
content: "| "
|
||||
}
|
101
html/cv.html
Normal file
101
html/cv.html
Normal file
|
@ -0,0 +1,101 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html lang="fr-FR">
|
||||
<head>
|
||||
<title>Current or finished projects</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
<link rel="stylesheet" href="/cv.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">~/</a></li>
|
||||
<li><a href="/projects.html">~/projects</a></li>
|
||||
<li><a href="/cv.html">~/resume</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<div class="cv-category">
|
||||
> <a href="/gibone-cv.pdf">gibone-cv.pdf</a>
|
||||
</div>
|
||||
<div class="cv-category">
|
||||
<h2>Experiences</h2>
|
||||
<section class="cv-entry">
|
||||
<div class="cv-entry-title">
|
||||
<h3>Tersedia</h3>
|
||||
<span class="cv-entry-dates">jul. 2023 - aujourd'hui</span>
|
||||
</div>
|
||||
<span class="cv-job-title">Administrateur systèmes et réseaux</span>
|
||||
<span class="cv-entry-details">En poste chez DNCA Finance depuis juillet 2024</span>
|
||||
<span class="cv-job-location">Paris</span>
|
||||
</section>
|
||||
<section class="cv-entry">
|
||||
<div class="cv-entry-title">
|
||||
<h3 class="cv-entry">Wamiz</h3>
|
||||
<span class="cv-entry-dates">oct. 2021 - avr. 2023</span>
|
||||
</div>
|
||||
<span class="cv-job-title">Administrateur systèmes et réseaux</span>
|
||||
<span class="cv-job-location">Paris</span>
|
||||
</section>
|
||||
<section class="cv-entry">
|
||||
<div class="cv-entry-title">
|
||||
<h3 class="cv-entry">Pedagogie Plus</h3>
|
||||
<span class="cv-entry-dates">oct. 2017 - sep. 2020</span>
|
||||
</div>
|
||||
<span class="cv-job-title">
|
||||
Professeur particulier de mathématiques
|
||||
</span>
|
||||
<span class="cv-job-location">Gif-sur-Yvette</span>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="cv-category">
|
||||
<h2>Formation</h2>
|
||||
<section class="cv-entry">
|
||||
<div class="cv-entry-title">
|
||||
<h3 class="cv-entry">Formation ASR</h3>
|
||||
<span class="cv-entry-dates">oct. 2021 - avr 2023</span>
|
||||
</div>
|
||||
<div class="cv-entry-school">DORANCO</div>
|
||||
ROME: M1801 et M1803<br>
|
||||
NFS : 326n
|
||||
</section>
|
||||
<section class="cv-entry">
|
||||
<div class="cv-entry-title">
|
||||
<h3 class="cv-entry">Maîtrise en Mathématiques fondamentales</h3>
|
||||
<span class="cv-entry-dates">2019</span>
|
||||
</div>
|
||||
<div class="cv-entry-school">Université Paris Sud, ORSAY</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="cv-category">
|
||||
<h2>Projets</h2>
|
||||
<section class="cv-entry">
|
||||
<h3 class="cv-entry-title"></h3>
|
||||
<div class="cv-entry-details">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="cv-category">
|
||||
<h2>Outils</h2>
|
||||
<section class="cv-entry">
|
||||
<h3 class="cv-entry-title"></h3>
|
||||
<div class="cv-entry-details">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<hr>
|
||||
<a href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
Binary file not shown.
BIN
html/gibone-cv.pdf
Normal file
BIN
html/gibone-cv.pdf
Normal file
Binary file not shown.
159
html/index.html
159
html/index.html
|
@ -1,79 +1,90 @@
|
|||
<!DOCTYPE HTML>
|
||||
|
||||
<html lang="fr-FR">
|
||||
<head>
|
||||
<title>about s.gibone</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
</head>
|
||||
<head>
|
||||
<title>about s.gibone</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">~/</a></li>
|
||||
<li><a href="/projects.html">~/projects</a></li>
|
||||
<li><a href="/gibone-CV.pdf">~/gibone-cv.pdf</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<pre><code> ▄▀▀ ▄▀ █ ██▄ ▄▀▄ █▄ █ ██▀
|
||||
▄██ ▄ ▀▄█ █ █▄█ ▀▄▀ █ ▀█ █▄▄
|
||||
Est. 17th of February 2021.</code></pre>
|
||||
<div class="h-card">
|
||||
<img src="/portraitascii.png" alt="my profile pic" class="u-photo" hidden="">
|
||||
<p>
|
||||
Hello, je suis <span class="p-name">Steven GIBONE</span> et bienvenu dans mon petit coin d'internet.
|
||||
A ce jour (2024) je vis et travail en <span class="p-country-name">France</span> comme <span class="p-job-title">administrateur systèmes et réseaux junior.
|
||||
</p>
|
||||
<ul>
|
||||
<li><a href="https://steven.gibone.fr" class="u-url">steven.gibone.fr</a></li>
|
||||
<li><a rel="pgpley authn" href="https://steven.gibone.fr/stev.asc" class="u-key">GPG key</a></li>
|
||||
<li><a href="mailto:steven@gibone.fr" class="u-email">steven@gibone.fr</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>je ne sais toujours pas dans quelle mesure ce site sera tenu à jour et je risque d'alterner entre l'anglais et le français, vous êtes prévenus.</p>
|
||||
<p>Voici une liste non exhaustive de mes centres d’intérêt :</p>
|
||||
<ul>
|
||||
<li>le café (j’aime beaucoup, beaucoup le café)</li>
|
||||
<li>le logiciel libre / la culture libriste</li>
|
||||
<li>la culture maker / hacker (j’ai pas de bonne traduction pour ceux-là)</li>
|
||||
<li>les mathématiques (c’est ma formation initiale)</li>
|
||||
<li>la philosophie</li>
|
||||
<li>la politique / l’économie / la sociologie</li>
|
||||
<li>les jeux vidéos (dans mon <3 depuis ma tendre enfance)</li>
|
||||
<li>l’escalade (meilleur sport, vous ne me ferez pas changer d’avis là-dessus)</li>
|
||||
</ul>
|
||||
<p>Et voici une liste certainement pas bien tenue à jour de certains
|
||||
projets :</p>
|
||||
<ul>
|
||||
<li><a href="projects.html">projects</a></li>
|
||||
</ul>
|
||||
<h2 id="mes-lectures">Mes lectures</h2>
|
||||
<ul>
|
||||
<li>2022-?? <del>The Lord of the Rings: The Two Towers, J.R.R. TOLKIEN</del></li>
|
||||
<li>2022-?? <del>Clit Révolution, Sarah Constantin & Elvire DUVELLE-CHARLES</del></li>
|
||||
<li>2022-?? <del>En Travail, Bernard Friot et Frédéric LORDON</del></li>
|
||||
<li>2023-?? <del>Sortir de l’hétérosexualité, Juliet DROUART</del></li>
|
||||
<li>2023-?? <del>Beaufs et Barbares, Houria BOUTELDJA</del>
|
||||
(certainement un des bouquin les plus intéressant que j’ai lu, tout
|
||||
court)</li>
|
||||
<li>2023-08 <del>The curious incident of the dog in the night time, Mark HADDON</del>
|
||||
(un livre très touchant, drôle et intelligent)</li>
|
||||
<li>2024-06 <del>Time management for system administrators, Tom LIMONCELLI</del></li>
|
||||
<li>2024-07 <del>Children of blood and bone, Tomi ADEYEMI (T1)</del></li>
|
||||
<li>2024-09 This is how you lose a time war</li>
|
||||
</ul>
|
||||
<h2 id="les-jeux-auxquels-je-joue">Les jeux auxquels je joue</h2>
|
||||
<ul>
|
||||
<li>Super Mario RPG</li>
|
||||
<li>Path of Exile (<3 god i love this game)</li>
|
||||
</ul>
|
||||
<footer>
|
||||
<hr>
|
||||
<a rel=me href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">~/</a></li>
|
||||
<li><a href="/projects.html">~/projects</a></li>
|
||||
<li><a href="/cv.html">~/resume</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<pre><code>▄▀▀ ▄▀ █ ██▄ ▄▀▄ █▄ █ ██▀
|
||||
▄██ ▄ ▀▄█ █ █▄█ ▀▄▀ █ ▀█ █▄▄
|
||||
Est. 17th of February 2021.</code></pre>
|
||||
<div class="h-card">
|
||||
<img src="/portraitascii.png" alt="my profile pic" class="u-photo" hidden="">
|
||||
<p>
|
||||
Hello, je suis <span class="p-name">Steven GIBONE</span> et bienvenu
|
||||
dans mon petit coin d'internet. A ce jour (2024) je vis et travail en
|
||||
<span class="p-country-name">France</span> comme
|
||||
<span class="p-job-title">administrateur systèmes et réseaux</span>.
|
||||
</p>
|
||||
<ul>
|
||||
<li><a href="https://steven.gibone.fr" class="u-url">steven.gibone.fr</a></li>
|
||||
<li><a rel="pgpley authn" href="https://steven.gibone.fr/stev.asc" class="u-key">GPG key</a></li>
|
||||
<li><a href="mailto:steven@gibone.fr" class="u-email">steven@gibone.fr</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>je ne sais toujours pas dans quelle mesure ce site sera tenu à jour et je risque
|
||||
d'alterner entre l'anglais et le français, vous êtes prévenus.</p>
|
||||
<p>Voici une liste non exhaustive de mes centres d’intérêt :</p>
|
||||
<ul>
|
||||
<li>le café (j’aime beaucoup, beaucoup le café)</li>
|
||||
<li>le logiciel libre / la culture libriste</li>
|
||||
<li>la culture maker / hacker (j’ai pas de bonne traduction pour ceux-là)</li>
|
||||
<li>les mathématiques (c’est ma formation initiale)</li>
|
||||
<li>la philosophie</li>
|
||||
<li>la politique / l’économie / la sociologie</li>
|
||||
<li>les jeux vidéos (dans mon <3 depuis tout petit)</li>
|
||||
<li>l’escalade (meilleur sport, vous ne me ferez pas changer d’avis là-dessus)</li>
|
||||
</ul>
|
||||
<p>Et voici une liste certainement pas bien tenue à jour de certains
|
||||
projets :</p>
|
||||
<ul>
|
||||
<li><a href="projects.html">projects</a></li>
|
||||
</ul>
|
||||
<h2 id="mes-lectures">Mes lectures</h2>
|
||||
<ul>
|
||||
<li>2022-?? <del>The Lord of the Rings: The Two Towers</del>, J.R.R. TOLKIEN</li>
|
||||
<li>2022-?? <del>Clit Révolution</del>, Sarah Constantin & Elvire DUVELLE-CHARLES</li>
|
||||
<li>2022-?? <del>En Travail</del>, Bernard Friot et Frédéric LORDON</li>
|
||||
<li>2023-?? <del>Sortir de l’hétérosexualité</del>, Juliet DROUART</li>
|
||||
<li>2023-?? <del>Beaufs et Barbares</del>, Houria BOUTELDJA
|
||||
(certainement un des bouquin les plus intéressant que j’ai lu, tout court)</li>
|
||||
<li>2023-08 <del>The curious incident of the dog in the night time</del>, Mark HADDON
|
||||
(un livre très touchant, drôle et intelligent)</li>
|
||||
<li>2024-06 <del>Time management for system administrators</del>, Tom LIMONCELLI</li>
|
||||
<li>2024-07 <del>Children of blood and bone (T1)</del>, Tomi ADEYEMI
|
||||
(un des meilleurs roman de ces dernières années)</li>
|
||||
<li>2024-09 <del>This is how you lose a time war</del>, Amal EL-MOHTAR, Max GLADSTONE
|
||||
(une très belle histoire et aussi très bien écrite)</li>
|
||||
<li>2024-10 <del>Post-Romantique</del>, <em>Aline LAURENT-MAYARD</em>
|
||||
(super intéressant, très sourcé. réhabilite l'amour au delà du couple) </li>
|
||||
<li>2024-11 <del>Bikepunk</del>, <em>Ploum</em> (un coup de coeur, vraiment)</li>
|
||||
<li>2024-11 <del>L'internet des enfants</del>, <em></em>(très instructif et sans jugement)</li>
|
||||
<li>2024-12 <del>Printeurs</del>, <em>Ploum</em></li>
|
||||
<li>2025-01 <del>La prochaine fois que tu mordras la poussière</del>, <em>Panayotis PASCOT</em></li>
|
||||
<li>2025-01 <del>La Métamorphose</del>, <em>Franz KAFKA</em></li>
|
||||
</ul>
|
||||
<h2 id="les-jeux-auxquels-je-joue">Les jeux auxquels je joue</h2>
|
||||
<ul>
|
||||
<li>Path of Exile 2 (<3 god i love this game)</li>
|
||||
<li>Diablo 2: Resurrected</li>
|
||||
</ul>
|
||||
<footer>
|
||||
<hr>
|
||||
<a rel=me href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,87 +1,84 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html lang="fr-FR">
|
||||
<head>
|
||||
<title>Current or finished projects</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
</head>
|
||||
<head>
|
||||
<title>Current or finished projects</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">~/</a></li>
|
||||
<li><a href="/projects.html">~/projects</a></li>
|
||||
<li><a href="/gibone-cv.pdf">~/gibone-cv.pdf</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<header>
|
||||
<h1 class="p-name">Current or finished projects</h1>
|
||||
</header>
|
||||
|
||||
<p>sorted in reverse chronological order so that the most recent projects
|
||||
appears first:</p>
|
||||
|
||||
<h2>2024</h2>
|
||||
<ul>
|
||||
<li>
|
||||
j'ai commencé à apprendre à souder:
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li>j'ai monté un kit avec des composant en SMD</li>
|
||||
<li>j'ai dessoudé tous les switch d'un clavier mécanique Razer qui ne fonctionne plus correctement</li>
|
||||
<li>j'ai réparé une manette Nintendo Switch Pro en remplaçant le joystick gauche</li>
|
||||
<li><a href="/index.html">~/</a></li>
|
||||
<li><a href="/projects.html">~/projects</a></li>
|
||||
<li><a href="/cv.html">~/resume</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>début participation à un repair café</li>
|
||||
<li>complété le cours <++> sur OpenClassrooms</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<h2>2023</h2>
|
||||
<ul>
|
||||
<li>started to work on a tool to help publish both a website and a
|
||||
gemini capsule (it’s mostly a way for me to learn Python and programming
|
||||
in general)</li>
|
||||
<li>once again i returned to <em>Gitea</em> because i had performance
|
||||
issues with <em>OneDev</em></li>
|
||||
<li>resuscitate my gemini capsule again after reading an article by
|
||||
Ploum
|
||||
<ul>
|
||||
<li>gemini://ploum.net/2022-12-04-fin-du-blog-et-derniere-version.gmi</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<header>
|
||||
<h1 class="p-name">Projets en cours ou finis</h1>
|
||||
</header>
|
||||
|
||||
<h2>2022</h2>
|
||||
<ul>
|
||||
<li>settle to <em>Onedev</em></li>
|
||||
<li>tried <em>gitolite</em> and <em>cgit</em> replacement of
|
||||
<em>Gitea</em></li>
|
||||
<li>a lot of testing of different minecraft servers and frontend to
|
||||
manage them. I finaly dicided to keep it simple by using cronjobs and
|
||||
tmux. I found that web dashboards are to cumbersome and not flexible
|
||||
enough.</li>
|
||||
<li>multiple things of which I didn’t keep records</li>
|
||||
</ul>
|
||||
<h2>2024</h2>
|
||||
<ul>
|
||||
<li>je me suis construit un nouveau clavier</li>
|
||||
<li>complété les cours <em>Modélisez vos bases de données</em> et <em>Requêtez une base de données avec SQL</em> sur OpenClassrooms</li>
|
||||
<li> j'ai commencé à apprendre à souder:
|
||||
<ul>
|
||||
<li>j'ai monté un kit avec des composant en SMD</li>
|
||||
<li>j'ai dessoudé tous les switch d'un clavier mécanique Razer qui ne fonctionne plus correctement</li>
|
||||
<li>j'ai réparé une manette Nintendo Switch Pro en remplaçant le joystick gauche</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>début participation à un repair café</li>
|
||||
</ul>
|
||||
|
||||
<h2>2021</h2>
|
||||
<ul>
|
||||
<li>migrate website from PicoCMS to 11ty</li>
|
||||
<li>installed agate to serve this gemini capsule :)</li>
|
||||
<li>migrated from Gogs to Gitea because it was easy and Gitea has a
|
||||
mobile UI contrary to Gogs. Lives at the same address.</li>
|
||||
<li>bought a domain name for my website.</li>
|
||||
<li>installed Gogs on my Raspberry Pi now with remote access</li>
|
||||
<li>installed Pi-Hole on my Raspberry Pi</li>
|
||||
<li>built my website using PicoCMS</li>
|
||||
</ul>
|
||||
<h2>2023</h2>
|
||||
<ul>
|
||||
<li>started to work on a tool to help publish both a website and a
|
||||
gemini capsule (it’s mostly a way for me to learn Python and programming
|
||||
in general)</li>
|
||||
<li>once again i returned to <em>Gitea</em> because i had performance
|
||||
issues with <em>OneDev</em></li>
|
||||
<li>resuscitate my gemini capsule again after reading an article by
|
||||
Ploum
|
||||
<ul>
|
||||
<li>gemini://ploum.net/2022-12-04-fin-du-blog-et-derniere-version.gmi</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
|
||||
<footer>
|
||||
<hr>
|
||||
<a href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
<h2>2022</h2>
|
||||
<ul>
|
||||
<li>settle to <em>Onedev</em></li>
|
||||
<li>tried <em>gitolite</em> and <em>cgit</em> replacement of
|
||||
<em>Gitea</em></li>
|
||||
<li>a lot of testing of different minecraft servers and frontend to
|
||||
manage them. I finaly dicided to keep it simple by using cronjobs and
|
||||
tmux. I found that web dashboards are to cumbersome and not flexible
|
||||
enough.</li>
|
||||
<li>multiple things of which I didn’t keep records</li>
|
||||
</ul>
|
||||
|
||||
<h2>2021</h2>
|
||||
<ul>
|
||||
<li>migrate website from PicoCMS to 11ty</li>
|
||||
<li>installed agate to serve this gemini capsule :)</li>
|
||||
<li>migrated from Gogs to Gitea because it was easy and Gitea has a
|
||||
mobile UI contrary to Gogs. Lives at the same address.</li>
|
||||
<li>bought a domain name for my website.</li>
|
||||
<li>installed Gogs on my Raspberry Pi now with remote access</li>
|
||||
<li>installed Pi-Hole on my Raspberry Pi</li>
|
||||
<li>built my website using PicoCMS</li>
|
||||
</ul>
|
||||
|
||||
<footer>
|
||||
<hr>
|
||||
<a href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
34
html/robots.txt
Normal file
34
html/robots.txt
Normal file
|
@ -0,0 +1,34 @@
|
|||
User-agent: GPTBot
|
||||
Disallow: /
|
||||
User-agent: ChatGPT-User
|
||||
Disallow: /
|
||||
User-agent: Google-Extended
|
||||
Disallow: /
|
||||
User-agent: PerplexityBot
|
||||
Disallow: /
|
||||
User-agent: Amazonbot
|
||||
Disallow: /
|
||||
User-agent: ClaudeBot
|
||||
Disallow: /
|
||||
User-agent: Omgilibot
|
||||
Disallow: /
|
||||
User-Agent: FacebookBot
|
||||
Disallow: /
|
||||
User-Agent: Applebot
|
||||
Disallow: /
|
||||
User-agent: anthropic-ai
|
||||
Disallow: /
|
||||
User-agent: Bytespider
|
||||
Disallow: /
|
||||
User-agent: Claude-Web
|
||||
Disallow: /
|
||||
User-agent: Diffbot
|
||||
Disallow: /
|
||||
User-agent: ImagesiftBot
|
||||
Disallow: /
|
||||
User-agent: Omgilibot
|
||||
Disallow: /
|
||||
User-agent: Omgili
|
||||
Disallow: /
|
||||
User-agent: YouBot
|
||||
Disallow: /
|
Loading…
Reference in a new issue