update everything
gmirator is now in its own repo and rewritten in Python. the rest of the content was updated
This commit is contained in:
parent
728985bb1d
commit
9d76c3fa2a
21 changed files with 57 additions and 257 deletions
31
README.md
31
README.md
|
@ -1,32 +1,7 @@
|
|||
# stevengibone.com gemini capsule
|
||||
|
||||
This is where all sources related to my Gemini capsule and my website go.
|
||||
|
||||
You will find both the content I write and the script I use to generate the html from
|
||||
the gemtext files.
|
||||
I write everything in gemtext first and only then generate the html for the web using
|
||||
my own tool [Gmirator](https://git.stevengibone.com/stev/Gmirator.git).
|
||||
|
||||
> Lots of things will change in the script to make it more flexible and sensible.
|
||||
|
||||
I write everything in gemtext first and only then generate the html for the web.
|
||||
|
||||
## Configuration
|
||||
The script needs a config file to provide the remote servers and some directory
|
||||
paths. The script uses rsync to push files to the server so go check its manual if
|
||||
you need help settings `RGMI` and `RHTML`.
|
||||
|
||||
| variable name | description |
|
||||
|---------------|---------------------------------------|
|
||||
| WORKDIR | base directory |
|
||||
| ASSETS | |
|
||||
| LGMI | local directory with all your gemtext |
|
||||
| RGMI | remote directory to put your gemtext |
|
||||
| HTML_HEADER | |
|
||||
| HTML_FOOTER | |
|
||||
| LHTML | local directory to put generated HTML |
|
||||
| RHTML | remote directory to put your HTML |
|
||||
|
||||
## To do
|
||||
- [ ] make script also generate the title based on first h1 title
|
||||
- [ ] make more variable to use less hard-coded paths
|
||||
- [ ] reorganise the directory ?
|
||||
- `html-in`, `html-out`, `gmi`, `assets`...
|
||||
- [ ] separate script into its own repo ?
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
body {
|
||||
font-family: monospace;
|
||||
max-width: 750px;
|
||||
margin: auto;
|
||||
background: black;
|
||||
|
|
|
@ -7,6 +7,7 @@ I discovered that back in 2018 I tried to prevent MS from spying on me by disabl
|
|||
All this was so I could play Minecraft with my SO. I had not played Minecraft in many years, Mojang had not been bought by MS last time I played. I was so angry when I learnt about the bedrock edition and that I had to buy it even though I already had the java edition (I don't intend to play the bedrock edition but the fact that you have to pay twice to have both is infuriating to me). The worst part is that by the end of the year if I want to continue playing I have to use a MS account with Minecraft instead of my Mojang account and that also pisses my off very much.
|
||||
|
||||
Unfortunately these are not the only reasons I hate MS, they were just new reasons that added to the others.
|
||||
|
||||
---
|
||||
=> /index.gmi
|
||||
=> /gemlog/index.gmi
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# I'm learning networking
|
||||
|
||||
I'm currently learning networking stuff to become a sysadmin on my own waiting for the formation to start. I'm looking at a free Coursera course and videos on Youtube and I'm having a blast learning all this but it makes me want to buy all kind of things that would be way overkill both for my wallet and for my home network...
|
||||
|
||||
---
|
||||
=> /index.gmi
|
||||
=> /gemlog/index.gmi
|
||||
|
|
|
@ -22,6 +22,7 @@ there's a list of ideas:
|
|||
|
||||
=> /gemlog/2021-05-04_networking_school.gmi 2021-05-04 - I'm learning networking
|
||||
=> /gemlog/2021-05-01_windowssucks.gmi 2021-05-01 - I hate Microsoft
|
||||
|
||||
---
|
||||
=> /index.gmi
|
||||
=> /gemlog/index.gmi
|
||||
|
|
|
@ -44,8 +44,7 @@ And sportswise:
|
|||
* Pokemon: Shining Pearl
|
||||
|
||||
## logs
|
||||
=> tinylog.gmi tinylogs go here
|
||||
=> gemlog/index.gmi full gemlogs here
|
||||
=> /gemlog/index.gmi all gemlogs here
|
||||
|
||||
=> /gemlog/2021-05-04_networking_school.gmi 2021-05-04 - I'm learning networking
|
||||
=> /gemlog/2021-05-01_windowssucks.gmi 2021-05-01 - I hate Microsoft
|
||||
|
|
|
@ -1,13 +1,18 @@
|
|||
# Current or finished projects
|
||||
|
||||
sorted in reverse chronological order so that the most recent projects appears first:
|
||||
|
||||
## 2023
|
||||
* once again i returned to *Gitea* because i had performance issues with *OneDev*
|
||||
* resuscitate my gemini capsule again after reading an article by Ploum
|
||||
=> gemini://ploum.net/2022-12-04-fin-du-blog-et-derniere-version.gmi
|
||||
|
||||
## 2022
|
||||
* settle to *Onedev*
|
||||
* tried *gitolite* and *cgit* replacement of *Gitea*
|
||||
* 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.
|
||||
* multiple things of which I didn't keep records
|
||||
|
||||
## 2021
|
||||
* migrate website from PicoCMS to 11ty
|
||||
* installed agate to serve this gemini capsule :)
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
=> /index.gmi
|
||||
=> /gemlog/index.gmi
|
||||
|
||||
contact me by mail: steven.gibone at zaclys dot net
|
||||
=> https://mastodon.zaclys.com/@lonion @lonion@mastodon.zaclys.com on mastodon
|
|
@ -1,4 +1,3 @@
|
|||
---
|
||||
=> /index.gmi
|
||||
=> /gemlog/index.gmi
|
||||
|
179
gmirator.sh
179
gmirator.sh
|
@ -1,179 +0,0 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
source ./gmirator.conf
|
||||
|
||||
COMMAND=$1
|
||||
PARAM=$2
|
||||
|
||||
make_gemlogs_index() {
|
||||
|
||||
rm articles.gmi.temp
|
||||
|
||||
echo "generating articles.gmi.temp"
|
||||
ls $LGMI/gemlog | grep -v 'index' | sort -r \
|
||||
| while read fname; do
|
||||
local date=$(echo "$fname" | sed "s/_.*//")
|
||||
local title=$(head -1 $LGMI/gemlog/$fname | sed "s/# //")
|
||||
echo "=> /gemlog/$fname $date - $title" >> $WORKDIR/articles.gmi.temp
|
||||
done
|
||||
head $WORKDIR/articles.gmi.temp > $WORKDIR/head-articles.gmi.temp
|
||||
|
||||
echo "generating gemlog/index.gmi"
|
||||
sed -i -e "/^## logs/,//{
|
||||
/^#/!d
|
||||
}" -e "/^## logs/{
|
||||
a
|
||||
r $WORKDIR/articles.gmi.temp
|
||||
}" $LGMI/gemlog/index.gmi
|
||||
|
||||
echo "generating index.gmi"
|
||||
sed -i -e "/^## logs/,//{
|
||||
/^#/!d
|
||||
}" -e "/^## logs/{
|
||||
a => tinylog.gmi tinylogs go here
|
||||
a => gemlog/index.gmi full gemlogs here
|
||||
a
|
||||
r $WORKDIR/head-articles.gmi.temp
|
||||
a
|
||||
}" $LGMI/index.gmi
|
||||
|
||||
echo "generate footer for every .gmi"
|
||||
while read -r file; do
|
||||
sed -i -e "/^---/,//{
|
||||
d
|
||||
}" $file
|
||||
cat $WORKDIR/footer.gmi >> $file
|
||||
done < <(find $LGMI -type f -name \*.gmi)
|
||||
echo "DONE :)"
|
||||
}
|
||||
|
||||
inline_parsing() {
|
||||
sed -E 's|\*([^\*]+)\*|<em>\1</em>|g' |
|
||||
sed -E 's|~~(.*)~~|<s>\1</s>|g'
|
||||
}
|
||||
|
||||
gmi2html() {
|
||||
local in_list=no
|
||||
local in_preformated=no
|
||||
|
||||
while read -r line; do
|
||||
if [[ $line == "---" ]]; then
|
||||
break
|
||||
fi
|
||||
|
||||
if [[ "$in_list" == yes ]]; then
|
||||
if [[ "$line" == '* '* ]]; then
|
||||
printf "<li>%s</li>\n" "${line/\* /}" | inline_parsing
|
||||
continue
|
||||
else
|
||||
in_list=no
|
||||
printf "</ul>\n"
|
||||
fi
|
||||
elif [[ "$in_preformated" == yes ]]; then
|
||||
if [[ "$line" == '```'* ]]; then
|
||||
in_preformated=no
|
||||
printf "</pre>\n"
|
||||
else
|
||||
printf "%s\n" "$line"
|
||||
fi
|
||||
continue
|
||||
fi
|
||||
|
||||
case "$line" in
|
||||
'')
|
||||
;;
|
||||
'* '*)
|
||||
in_list=yes
|
||||
printf "<ul>\n<li>%s</li>\n" "${line/\* }" | inline_parsing
|
||||
;;
|
||||
'# '*)
|
||||
printf "<h1>%s</h1>\n" "$line"
|
||||
;;
|
||||
'## '*)
|
||||
printf "<h2>%s</h2>\n" "$line"
|
||||
;;
|
||||
'### '*)
|
||||
printf "<h3>%s</h3>\n" "$line"
|
||||
;;
|
||||
'=> '*)
|
||||
fname=$(echo "$line" | sed 's/=> \([^ ]*\).*/\1/')
|
||||
fname=${fname/.gmi/.html}
|
||||
desc=$(echo "$line" | sed 's/=> [^ ]* \(.*\)/=> \1/')
|
||||
printf "<a href=\"%s\">%s</a><br>\n" "$fname" "$desc"
|
||||
;;
|
||||
'```'*)
|
||||
in_preformated=yes
|
||||
printf "<pre>\n"
|
||||
;;
|
||||
*)
|
||||
printf "<p>%s</p>\n" "$line" | inline_parsing
|
||||
;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
make_html() {
|
||||
while read -r file; do
|
||||
local dest=${file/.gmi/.html}
|
||||
dest=${dest/\/content\//\/html-output\/}
|
||||
|
||||
printf "... %s\n" $dest
|
||||
cat $HTML_HEADER > $dest
|
||||
gmi2html < "$file" >> $dest
|
||||
cat $HTML_FOOTER >> $dest
|
||||
done < <(find $LGMI -type f -name \*.gmi)
|
||||
echo "Done generating HTML"
|
||||
echo "Copying statis assets"
|
||||
cp $ASSETS/* $LHTML
|
||||
}
|
||||
|
||||
synchronise() {
|
||||
if [[ $PARAM == "html" ]]; then
|
||||
echo "Synchronising HTML content with remote"
|
||||
rsync -aP -e "ssh -p 1312" $LHTML $RHTML
|
||||
elif [[ $PARAM == "gmi" ]]; then
|
||||
echo "Synchtonising GMI content with remote"
|
||||
rsync -aP -e "ssh -p 1312" $LGMI $RGMI
|
||||
else
|
||||
echo "Synchtonising GMI and HTML content with remote"
|
||||
rsync -aP -e "ssh -p 1312" $LHTML $RHTML
|
||||
rsync -aP -e "ssh -p 1312" $LGMI $RGMI
|
||||
fi
|
||||
}
|
||||
|
||||
generate() {
|
||||
case $1 in
|
||||
gmi)
|
||||
make_gemlogs_index
|
||||
;;
|
||||
html)
|
||||
make_html
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
usage() {
|
||||
echo "\
|
||||
Usage: $0 <COMMAND>
|
||||
|
||||
Commands:
|
||||
gen generates output
|
||||
sync synchronises files with server with rsync
|
||||
"
|
||||
}
|
||||
|
||||
main() {
|
||||
case $COMMAND in
|
||||
gen)
|
||||
generate $PARAM
|
||||
;;
|
||||
sync)
|
||||
synchronise
|
||||
;;
|
||||
*)
|
||||
usage
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
main
|
|
@ -3,7 +3,7 @@
|
|||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
<li><a rel=me href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</title>
|
||||
<title>PAGETITLE</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">
|
|
@ -1,27 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</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">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -2,7 +2,7 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</title>
|
||||
<title>I hate Microsoft</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">
|
||||
|
@ -17,17 +17,21 @@
|
|||
</ul>
|
||||
</nav>
|
||||
<h1># I hate Microsoft</h1>
|
||||
|
||||
<p>Yep, like a lot of people I hate Microsoft so I'll try to be a little specific.</p>
|
||||
|
||||
<p>First of all, the only reason I still have Windows on my desktop is for gaming reasons and only that, most of what I do happens on GNU+Linux on my laptop which is not powerfull to play something more advanced than OSRS. I hadn't played on that desktop for a very long time because I no longer had a GPU but I found a very, very old GT240 at my parent's house to put in there so I started using it again... It was my first use of Windows in about two years and it was a pain!</p>
|
||||
<p>I discovered that back in 2018 I tried to prevent MS from spying on me by disabling every telemetry I could... so that was a mistake because now Windows just refuses to update. I know it was my fault but it feels so wrong that if I don't want my pc to send MS data about what I do on my computer I also have to give up having Windows updates.</p>
|
||||
<p>All this was so I could play Minecraft with my SO. I had not played Minecraft in many years, Mojang had not been bought by MS last time I played. I was so angry when I learnt about the bedrock edition and that I had to buy it even though I already had the java edition (I don't intend to play the bedrock edition but the fact that you have to pay twice to have both is infuriating to me). The worst part is that by the end of the year if I want to continue playing I have to use a MS account with Minecraft instead of my Mojang account and that also pisses my off very much.</p>
|
||||
|
||||
<p>Unfortunately these are not the only reasons I hate MS, they were just new reasons that added to the others.</p>
|
||||
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
<li><a rel=me href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</title>
|
||||
<title>I'm learning networking</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">
|
||||
|
@ -17,13 +17,15 @@
|
|||
</ul>
|
||||
</nav>
|
||||
<h1># I'm learning networking</h1>
|
||||
|
||||
<p>I'm currently learning networking stuff to become a sysadmin on my own waiting for the formation to start. I'm looking at a free Coursera course and videos on Youtube and I'm having a blast learning all this but it makes me want to buy all kind of things that would be way overkill both for my wallet and for my home network...</p>
|
||||
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
<li><a rel=me href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</title>
|
||||
<title>log index</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">
|
||||
|
@ -18,12 +18,14 @@
|
|||
</nav>
|
||||
<h1># log index</h1>
|
||||
<p>Here will live gemlog posts about nothing and everything, I will rant a lot I thing, I could I not, you deserve entertainment!</p>
|
||||
|
||||
<p>there's a list of ideas:</p>
|
||||
<ul>
|
||||
<li>the fashion industry</li>
|
||||
<li>how I buy clothes</li>
|
||||
<li>what clothes do I like?</li>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>my journey into linux</li>
|
||||
<li>my love for tech minimalism</li>
|
||||
|
@ -31,23 +33,28 @@
|
|||
<li>my self hosting journey</li>
|
||||
<li>how I kind of broke my system but I managed to fix it (._.')</li>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>something about maths</li>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>politics</li>
|
||||
<li>free money (as in freedom, not free beer), the case of june/G1</li>
|
||||
<li>universal wage (salaire à vie in french), which is not UBI</li>
|
||||
</ul>
|
||||
|
||||
<h2>## logs</h2>
|
||||
|
||||
<a href="/gemlog/2021-05-04_networking_school.html">=> 2021-05-04 - I'm learning networking</a><br>
|
||||
<a href="/gemlog/2021-05-01_windowssucks.html">=> 2021-05-01 - I hate Microsoft</a><br>
|
||||
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
<li><a rel=me href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
|
@ -21,14 +21,18 @@
|
|||
▄██ ▄ ▀▄█ █ █▄█ ▀▄▀ █ ▀█ █▄▄
|
||||
Est. 17th of February 2021.
|
||||
</pre>
|
||||
|
||||
<h1># stevengibone.com</h1>
|
||||
<a href="gibone-CV.pdf">=> my resume (in french)</a><br>
|
||||
|
||||
<p>Hello, my name is Steven Gibone and welcome to my gemini capsule. I used to study mathematics but quit due to me realizing I don't want to teach to an entire class. The public education system is far too broken for me and I really cannot accept to work in these conditions.</p>
|
||||
|
||||
<p>I have both a <em>website</em> and a <em>gemini capsule</em>:</p>
|
||||
<a href="gemini://stevengibone.com">=> gemini://stevengibone.com</a><br>
|
||||
<a href="https://stevengibone.com">=> https://stevengibone.com</a><br>
|
||||
<p>If you don't know about the <em>gemini</em> protocol and care about a more simple internet, I strongly encourage you to learn more about it:</p>
|
||||
<a href="https://gemini.circumlunar.space/">=> https://gemini.circumlunar.space/</a><br>
|
||||
|
||||
<p>I take interest in:</p>
|
||||
<ul>
|
||||
<li>coffee, I love coffee</li>
|
||||
|
@ -39,13 +43,16 @@ Est. 17th of February 2021.
|
|||
<li>politics</li>
|
||||
<li>video games</li>
|
||||
</ul>
|
||||
|
||||
<p>And sportswise:</p>
|
||||
<ul>
|
||||
<li>fencing (I'm not a fencer anymore but really loved it)</li>
|
||||
<li>rock climbing (mostly bouldering in Arkose)</li>
|
||||
<li>rollerblading</li>
|
||||
</ul>
|
||||
|
||||
<a href="projects.html">=> my differents projects</a><br>
|
||||
|
||||
<h2>## what I'm reading</h2>
|
||||
<ul>
|
||||
<li><s>The Lord of the Rings: The Two Towers, J.R.R. Tolkien</s></li>
|
||||
|
@ -54,23 +61,26 @@ Est. 17th of February 2021.
|
|||
<li><s>Sortir de l'hétérosexualité, Juliet Drouart</s></li>
|
||||
<li>Beaufs et Barbares, Houria Bouteldja</li>
|
||||
</ul>
|
||||
|
||||
<h2>## what I'm playing</h2>
|
||||
<ul>
|
||||
<li>Bloodstained: Ritual of the Night</li>
|
||||
<li>Hades</li>
|
||||
<li>Pokemon: Shining Pearl</li>
|
||||
</ul>
|
||||
|
||||
<h2>## logs</h2>
|
||||
<a href="tinylog.html">=> tinylogs go here</a><br>
|
||||
<a href="gemlog/index.html">=> full gemlogs here</a><br>
|
||||
<a href="/gemlog/index.html">=> all gemlogs here</a><br>
|
||||
|
||||
<a href="/gemlog/2021-05-04_networking_school.html">=> 2021-05-04 - I'm learning networking</a><br>
|
||||
<a href="/gemlog/2021-05-01_windowssucks.html">=> 2021-05-01 - I hate Microsoft</a><br>
|
||||
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
<li><a rel=me href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</title>
|
||||
<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">
|
||||
|
@ -17,12 +17,16 @@
|
|||
</ul>
|
||||
</nav>
|
||||
<h1># Current or finished projects</h1>
|
||||
|
||||
<p>sorted in reverse chronological order so that the most recent projects appears first:</p>
|
||||
|
||||
<h2>## 2023</h2>
|
||||
<ul>
|
||||
<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</li>
|
||||
</ul>
|
||||
<a href="gemini://ploum.net/2022-12-04-fin-du-blog-et-derniere-version.html">=> gemini://ploum.net/2022-12-04-fin-du-blog-et-derniere-version.gmi</a><br>
|
||||
|
||||
|
||||
<h2>## 2022</h2>
|
||||
<ul>
|
||||
<li>settle to <em>Onedev</em></li>
|
||||
|
@ -30,6 +34,7 @@
|
|||
<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>
|
||||
|
@ -40,12 +45,13 @@
|
|||
<li>installed Pi-Hole on my Raspberry Pi</li>
|
||||
<li>built my website using PicoCMS</li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>Mail me: steven.gibone <at> zaclys (dot) net</li>
|
||||
<li><a href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
<li><a rel=me href="https://mastodon.zaclys.com/@lonion">My mastodon profile<a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</html>
|
|
@ -1,4 +1,5 @@
|
|||
body {
|
||||
font-family: monospace;
|
||||
max-width: 750px;
|
||||
margin: auto;
|
||||
background: black;
|
Loading…
Reference in a new issue