2024-08-27 00:57:20 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" dir="auto">
|
|
|
|
|
|
|
|
<head><meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta name="robots" content="index, follow">
|
|
|
|
<title>Categories | </title>
|
|
|
|
<meta name="keywords" content="">
|
|
|
|
<meta name="description" content="Debian, tailored for hams">
|
|
|
|
<meta name="author" content="Hibby">
|
2024-08-27 01:00:56 +01:00
|
|
|
<link rel="canonical" href="https://www.hibbian.org/categories/">
|
2024-08-27 00:57:20 +01:00
|
|
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.7da7716a1f2d0725f74c6ae7f8d6adafc43aabe2b366b65bfbf433448e2a2001.css" integrity="sha256-fadxah8tByX3TGrn+Natr8Q6q+KzZrZb+/QzRI4qIAE=" rel="preload stylesheet" as="style">
|
2024-08-27 01:00:56 +01:00
|
|
|
<link rel="icon" href="https://www.hibbian.org/favicon.ico">
|
|
|
|
<link rel="apple-touch-icon" href="https://www.hibbian.org/apple-touch-icon.png">
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="https://www.hibbian.org/categories/feed.xml">
|
|
|
|
<link rel="alternate" hreflang="en" href="https://www.hibbian.org/categories/">
|
2024-08-27 00:57:20 +01:00
|
|
|
|
|
|
|
<meta name="twitter:title" content="Categories | " />
|
|
|
|
<meta name="twitter:description" content="Debian, tailored for hams" />
|
|
|
|
<meta property="og:title" content="Categories | " />
|
|
|
|
<meta property="og:description" content="Debian, tailored for hams" />
|
|
|
|
<meta property="og:type" content="website" />
|
2024-08-27 01:00:56 +01:00
|
|
|
<meta property="og:url" content="https://www.hibbian.org/categories/" />
|
2024-08-27 00:57:20 +01:00
|
|
|
<meta property="og:site_name" content="Hibbian Linux" />
|
|
|
|
|
|
|
|
<noscript>
|
|
|
|
<style>
|
|
|
|
#theme-toggle,
|
|
|
|
.top-link {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
<style>
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--theme: rgb(29, 30, 32);
|
|
|
|
--entry: rgb(46, 46, 51);
|
|
|
|
--primary: rgb(218, 218, 219);
|
|
|
|
--secondary: rgb(155, 156, 157);
|
|
|
|
--tertiary-bg: rgb(65, 66, 68);
|
|
|
|
--content: rgb(196, 196, 197);
|
|
|
|
--code-bg: rgb(55, 56, 62);
|
|
|
|
--border: rgb(51, 51, 51);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-page {
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-page:not(.dark)::-webkit-scrollbar-track {
|
|
|
|
background: 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-page:not(.dark)::-webkit-scrollbar-thumb {
|
|
|
|
border-color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</noscript>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="list-page type-categories kind-taxonomy layout-" id="top"><script data-no-instant>
|
|
|
|
function switchTheme(theme) {
|
|
|
|
switch (theme) {
|
|
|
|
case 'light':
|
|
|
|
document.body.classList.remove('dark');
|
|
|
|
break;
|
|
|
|
case 'dark':
|
|
|
|
document.body.classList.add('dark');
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
|
|
document.body.classList.add('dark');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function isDarkTheme() {
|
|
|
|
return document.body.className.includes("dark");
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPrefTheme() {
|
|
|
|
return localStorage.getItem("pref-theme");
|
|
|
|
}
|
|
|
|
|
|
|
|
function setPrefTheme(theme) {
|
|
|
|
switchTheme(theme)
|
|
|
|
localStorage.setItem("pref-theme", theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
const toggleThemeCallbacks = {}
|
|
|
|
toggleThemeCallbacks['main'] = (isDark) => {
|
|
|
|
|
|
|
|
if (isDark) {
|
|
|
|
setPrefTheme('light');
|
|
|
|
} else {
|
|
|
|
setPrefTheme('dark');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.addEventListener('toggle-theme', function() {
|
|
|
|
|
|
|
|
const isDark = isDarkTheme()
|
|
|
|
for (const key in toggleThemeCallbacks) {
|
|
|
|
toggleThemeCallbacks[key](isDark)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function toggleThemeListener() {
|
|
|
|
|
|
|
|
window.dispatchEvent(new CustomEvent('toggle-theme'));
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
const defaultTheme = 'auto';
|
|
|
|
const prefTheme = getPrefTheme();
|
|
|
|
const theme = prefTheme ? prefTheme : defaultTheme;
|
|
|
|
|
|
|
|
switchTheme(theme);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<header class="header">
|
|
|
|
<nav class="nav">
|
|
|
|
<div class="logo">
|
|
|
|
<span class="logo-switches">
|
|
|
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
|
|
|
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
|
|
|
</svg>
|
|
|
|
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<circle cx="12" cy="12" r="5"></circle>
|
|
|
|
<line x1="12" y1="1" x2="12" y2="3"></line>
|
|
|
|
<line x1="12" y1="21" x2="12" y2="23"></line>
|
|
|
|
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
|
|
|
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
|
|
|
<line x1="1" y1="12" x2="3" y2="12"></line>
|
|
|
|
<line x1="21" y1="12" x2="23" y2="12"></line>
|
|
|
|
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
|
|
|
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<ul id="menu">
|
|
|
|
<li>
|
2024-08-27 01:00:56 +01:00
|
|
|
<a href="https://www.hibbian.org/" title="Home" class="active"
|
2024-08-27 00:57:20 +01:00
|
|
|
>Home
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://guide.hibbian.org/" title="Guide"
|
|
|
|
>Guide
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://git.hibbian.org/" title="Git"
|
|
|
|
>Git
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
2024-08-27 01:00:56 +01:00
|
|
|
<a href="https://www.hibbian.org/posts/" title="Posts"
|
2024-08-27 00:57:20 +01:00
|
|
|
>Posts
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<main class="main">
|
|
|
|
<header class="page-header">
|
|
|
|
<h1>Categories</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<ul class="terms-tags">
|
|
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<footer class="footer">
|
2024-08-27 01:00:56 +01:00
|
|
|
<span>© 2024 <a href="https://www.hibbian.org/"></a></span><span style="display: inline-block; margin-left: 1em;">
|
2024-08-27 00:57:20 +01:00
|
|
|
<a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a>
|
|
|
|
</span>
|
|
|
|
<span style="display: inline-block; margin-left: 1em;">
|
|
|
|
Powered by
|
|
|
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
|
|
|
<a href="https://github.com/reorx/hugo-PaperModX/" rel="noopener" target="_blank">PaperModX</a>
|
|
|
|
</span>
|
|
|
|
</footer>
|
|
|
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
|
|
|
<path d="M12 6H0l6-6z" />
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
const disableThemeToggle = '' == '1';
|
|
|
|
if (disableThemeToggle) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let button = document.getElementById("theme-toggle")
|
|
|
|
|
|
|
|
button.removeEventListener('click', toggleThemeListener)
|
|
|
|
|
|
|
|
button.addEventListener('click', toggleThemeListener)
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
(function () {
|
|
|
|
let menu = document.getElementById('menu')
|
|
|
|
if (menu) {
|
|
|
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
|
|
|
menu.onscroll = function () {
|
|
|
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const disableSmoothScroll = '' == '1';
|
|
|
|
const enableInstantClick = '' == '1';
|
|
|
|
|
|
|
|
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches || disableSmoothScroll || enableInstantClick) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
|
|
anchor.addEventListener("click", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var id = this.getAttribute("href").substr(1);
|
|
|
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
|
|
|
behavior: "smooth"
|
|
|
|
});
|
|
|
|
if (id === "top") {
|
|
|
|
history.replaceState(null, null, " ");
|
|
|
|
} else {
|
|
|
|
history.pushState(null, null, `#${id}`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
var mybutton = document.getElementById("top-link");
|
|
|
|
window.onscroll = function () {
|
|
|
|
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
|
|
|
|
mybutton.style.visibility = "visible";
|
|
|
|
mybutton.style.opacity = "1";
|
|
|
|
} else {
|
|
|
|
mybutton.style.visibility = "hidden";
|
|
|
|
mybutton.style.opacity = "0";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
if (window.scrollListeners) {
|
|
|
|
|
|
|
|
for (const listener of scrollListeners) {
|
|
|
|
window.removeEventListener('scroll', listener)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
window.scrollListeners = []
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="/js/medium-zoom.min.js" data-no-instant
|
|
|
|
></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|