How to Self-Host a Git Server
This guide is a modified version of the git book instructions for Debian specifically.
It also includes setting up a cgit web front-end that allows you to view your git repositories conveniently on the web just like I do.
Electrical Engineer
You might be here because you were tricked! However, I refuse to scam you like instagram grifters with similar bios will.
My blog contains tutorials on various electrical engineering topics like signal processing and also other tech things.
Listen to my music. The majority of streaming services should be linked.
diff --git a/public/site.css b/public/site.css index d760537..d8ec7ba 100644 --- a/public/site.css +++ b/public/site.css @@ -32,6 +32,16 @@ pre { border-radius: 4px; } + +.width { + max-width: 720px; + + @media (width <= 720px) { + overflow: clip; + max-width: 90vw; + } +} + .center { display: flex; align-items: center; -- cgit v1.2.3