index.html
HTML document, Unicode text, UTF-8 text
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4<meta charset="UTF-8"> 5<title>Home</title> 6<link rel="stylesheet" href="/static/style.css"> 7<meta name="viewport" content="width=device-width, initial-scale=1.0"> 8</head> 9<body> 10<header> 11<nav> 12<ul> 13<li><a href="/">Home</a></li> 14<li><a href="/projects">Projects</a></li> 15<li><a href="/index">Index</a></li> 16<li><a href="/about">About</a></li> 17<li><a href="https://roundabout-host.com/roundabout">Roundabout-host</a></li> 18</ul> 19<ul> 20<li><a href="mailto:root@roundabout-host.com" id="mail-link">root@roundabout-host.com</a></li> 21</ul> 22</nav> 23</header> 24<main> 25 26<h1>All articles</h1> 27 28 29 30<article class="content-area"> 31 32<h2><a href="/articles/gtk--makes-no-sense.html" class="article-title">GTK 4 makes no sense</a></h2> 33<div class="home-article-date">2025-03-04</div> 34<p><p>I recently started to write a GTK 3 library, but then I realised it will be 35obsolete in 5 years at most, and I thought GTK 4 isn't that bad, so I decided to 36port it to GTK 4. Turns out I was wrong. 37</p></p> 38</article> 39 40 41 42 43 44<article class="content-area"> 45 46<h2><a href="/articles/font-stacks.html" class="article-title">Proposed system font stacks</a></h2> 47<div class="home-article-date">2024-12-27</div> 48<p><p>I've seen <a href="https://modernfontstacks.com/">Modern Font Stacks</a>. I agree that there are many cases 49where system fonts are fine, but the stacks there have some problems, especially with GNU/Linux 50devices. 51</p></p> 52</article> 53 54 55 56<article class="content-area"> 57 58<h2><a href="/articles/linux-on-the-surface-go.html" class="article-title">GNU/Linux on the Microsoft Surface Go</a></h2> 59<div class="home-article-date">2024-11-27</div> 60<p><p>Interestingly, the best GNU/Linux tablet is actually made by Microsoft. The 61Surface Go (first generation) is a tablet released in 2018. The performance is 62nothing amazing, but unlike most tablets, you can actually make use of the 63performance it does have; it doesn't feel slow for normal tablet tasks either. 64Besides that, it has a 10" screen, front and back cameras, a kickstand, stylus 65support and a detachable keyboard — but the latter two are sold separately. 66</p></p> 67</article> 68 69 70 71<article class="content-area"> 72 73<h2><a href="/articles/beginner-distros.html" class="article-title">There are no beginner GNU/Linux distributions</a></h2> 74<div class="home-article-date">2024-11-10</div> 75<p><p>I see this so often and it's so wrong. That if you know GNU/Linux, you must 76switch to Arch, Gentoo, Fedora, OpenSUSE or at least Debian. That if you use 77Mint or Ubuntu, you're not a real GNU/Linux user. 78</p></p> 79</article> 80 81 82 83<article class="content-area"> 84 85<h2><a href="/articles/gnulinux-not-linux.html" class="article-title">A Reason to Call it GNU/Linux</a></h2> 86<div class="home-article-date">2024-07-31</div> 87<p><p>Linux isn't very Unix-like by itself. Of course, it's a Unix-like <em class="emphasis-1">kernel</em>, and it 88does Unix-compatible file operations, process management, and system calls, but without the GNU 89suite or some other userland, it is just a kernel which doesn't have to be used as a Unix-like 90one. 91</p></p> 92</article> 93 94 95 96<article class="content-area"> 97 98<h2><a href="/articles/homemade-nas.html" class="article-title">Cheap, homemade NAS with Raspberry Pi</a></h2> 99<div class="home-article-date">2024-05-21</div> 100<p><p>This is a very simple, cheap and quick way to get networked storage at home. It should not cost 101more than €120 for all the components (assuming you've got a network you can plug it into). It also 102offers more flexibility than a commercial NAS, because you can install any software you want on it. 103And if you already use the Raspberry Pi for something else, you can just add this to it and not 104worry about an extra device you need power, networking, space and maintenance for. 105</p></p> 106</article> 107 108 109 110<article class="content-area"> 111 112<h2><a href="/articles/semantic-css.html" class="article-title">Let's write more semantic CSS</a></h2> 113<div class="home-article-date">2024-05-18</div> 114<p><p>You probably wrote something like this at least once in your life: 115</p><pre data-language="html"><div class="card card--rounded card--primary"> 116<div class="card__image-container"> 117<img src="image.jpg" alt="A nice image" class="card__image"> 118<span class="card__image-caption">A nice image</span> 119</div> 120<div class="card__content"> 121<div class="card__header"> 122<div class="card__title">Hello, world!</div> 123</div> 124<p class="card__text"> 125Lorem ipsum dolor sit amet, consectetur adipiscing elit. 126</p> 127</div> 128<div class="card__footer"> 129<button class="btn btn--primary btn--raised btn--accent card__button card__button--primary">Click me!</button> 130<button class="btn btn--secondary btn--raised btn--accent card__button card__button--secondary">Click me!</button> 131</div> 132</div> 133</pre><p>Or this: 134</p><pre data-language="html"><div class="max-w-sm rounded overflow-hidden shadow-lg"> 135<div> 136<img class="w-full" src="image.jpg" alt="A nice image"> 137<span class="text-gray-500 text-base">A nice image</span> 138</div> 139<div class="px-6 py-4"> 140<div> 141<div class="font-bold text-xl mb-2">Hello, world!</div> 142</div> 143<p class="text-gray-700 text-base"> 144Lorem ipsum dolor sit amet, consectetur adipiscing elit. 145</p> 146</div> 147<div class="px-6 py-4"> 148<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Click me!</button> 149<button class="bg-transparent hover:bg-blue-500 text-blue-700 font-semibold hover:text-white py-2 px-4 border border-blue-500 hover:border-transparent rounded">Click me!</button> 150</div> 151</div> 152</pre></p> 153</article> 154 155 156 157<article class="content-area"> 158 159<h2><a href="/articles/moved-to-a-roundabout.html" class="article-title">Moved to a roundabout</a></h2> 160<div class="home-article-date">2024-05-07</div> 161<p><p>Welcome to my new website! I've moved from GitHub to a git software I've developed, 162<a href="https://roundabout-host.com/roundabout/roundabout">a roundabout</a>. To go along with 163this move, I also made a new website, which is powered by a custom static site generator 164called <a href="https://roundabout-host.com/roundabout/ampoule">Ampoule</a>. This will be the 165generator I will use to write the documentation for all my projects, including the 166roundabout itself. 167</p></p> 168</article> 169 170 171 172<article class="content-area"> 173 174<img src="/static/photos/browsers-bad.png" alt="The Pocket integration in Mozilla Firefox" class="article-image"> 175 176<h2><a href="/articles/browsers-are-doing-too-much.html" class="article-title">Browsers are doing way too much nowadays</a></h2> 177<div class="home-article-date">2024-05-07</div> 178<p><p>Ooh, shiny! Chrome is now forcing me to view my bookmarks in a ✨side panel✨! It's not like 179we have windowing environments for that, right? Doesn't matter, it's modern, new so it's cool 180and automatically better even though it sucks! 181</p></p> 182</article> 183 184 185 186</main> 187<footer> 188<p>Page generated on Monday, 17 March 2025 at 17:06:45</p> 189<p xmlns:cc="http://creativecommons.org/ns#" >This work is marked with <a href="https://creativecommons.org/publicdomain/zero/1.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC0 1.0 Universal</a> (🄍). No rights reserved.</p> 190<p>Hosted at <a href="https://roundabout-host.com/roundabout">Roundabout-host</a> using the static site service, and generated with <a href="/projects/ampoule.html">Ampoule</a>.</p> 191<a href="#">Back to top</a> 192</footer> 193</body> 194</html>