sort articles by date

This commit is contained in:
Never Gude 2026-02-11 22:20:11 +01:00
parent d2389e00ed
commit 857e0b65ac
25 changed files with 89 additions and 278 deletions

View file

@ -47,23 +47,24 @@ $(BUILDDIR):
mkdir $(BUILDDIR) $(BUILDDIR)/$(ARTICLEDIR) mkdir $(BUILDDIR) $(BUILDDIR)/$(ARTICLEDIR)
$(BUILDDIR)/$(ARTICLEDIR)/%.html: $(SRCDIR)/$(ARTICLEDIR)/%.md | $(BUILDDIR) $(BUILDDIR)/$(ARTICLEDIR)/%.html: $(SRCDIR)/$(ARTICLEDIR)/%.md | $(BUILDDIR)
jq 'del(.articles[] | select(.filename == "$(notdir $@)"))' $(article_list) > articles.json.tmp; \ jq 'del(.articles[] | select(.filename == "$(patsubst %.html,%,$(notdir $@))"))' $(article_list) > articles.json.tmp; \
mv ./articles.json.tmp $(article_list); \ mv ./articles.json.tmp $(article_list); \
# Build articles using pandoc # Build articles using pandoc
pandoc $< --template $(template_html) --css $(style) --highlight-style zenburn --mathml --toc --output $@; \ pandoc $< --template $(template_html) --css $(style) --highlight-style zenburn --mathml --toc --output $@; \
# Extract metadata from .md file, append filename field to the article object. # Extract metadata from .md file, append filename field to the article object.
# This is used to link to the article from index.html. Append article object to the article list. # This is used to link to the article from index.html. Append article object to the article list.
jq '.articles += [$(shell pandoc $< --template $(list_template) | jq '. += {"filename": "$(patsubst %.html,%,$(notdir $@))"}')]' $(article_list) > articles.json.tmp; \ jq '.articles += [$(shell pandoc $< --template $(list_template) | jq '. += {"filename": "$(patsubst %.html,%,$(notdir $@))"}')]' $(article_list) > articles.json.tmp; \
mv ./articles.json.tmp $(article_list); \ mv ./articles.json.tmp $(article_list);
$(BUILDDIR)/$(ARTICLEDIR)/%: $(SRCDIR)/$(ARTICLEDIR)/%.md | $(BUILDDIR) $(BUILDDIR)/$(ARTICLEDIR)/%: $(SRCDIR)/$(ARTICLEDIR)/%.md | $(BUILDDIR)
pandoc $< --template $(template_ansi) --to ansi --output $@ pandoc $< --template $(template_ansi) --to ansi --output $@
$(BUILDDIR)/index.html: $(SRCDIR)/index.md $(articles_html) | $(BUILDDIR) $(BUILDDIR)/index.html: $(SRCDIR)/index.md $(articles_html) | $(BUILDDIR)
# Sort articles decending by date (date need to be in ISO 8601 format)
jq '.articles |= sort_by(.date) | .articles |= reverse' ${article_list} > articles.json.tmp; \
mv ./articles.json.tmp ${article_list}; \
# Build index.html with metadata injected from articles_list # Build index.html with metadata injected from articles_list
pandoc $< --template $(template_html) --include-after-body $(shark_js) --css $(style) --metadata-file $(article_list) --highlight-style zenburn --mathml --toc --output $@; \ pandoc $< --template $(template_html) --include-after-body $(shark_js) --css $(style) --metadata-file $(article_list) --highlight-style zenburn --mathml --toc --output $@;
$(BUILDDIR)/index: $(SRCDIR)/index.md $(articles_ansi) | $(BUILDDIR) $(BUILDDIR)/index: $(SRCDIR)/index.md $(articles_ansi) | $(BUILDDIR)
pandoc $< --template $(template_ansi) --metadata-file $(article_list) --to ansi --output $@ pandoc $< --template $(template_ansi) --metadata-file $(article_list) --to ansi --output $@

View file

@ -3,7 +3,7 @@
Never Never
9.1.2026 2026-01-09
──────────────────── ────────────────────

View file

@ -5,6 +5,7 @@
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" /> <meta name="author" content="Never" />
<meta name="dcterms.date" content="2026-01-09" />
<title>Latex Endeavors</title> <title>Latex Endeavors</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"> <link rel="icon" type="image/x-icon" href="images/favicon.png">
<style> <style>
@ -34,7 +35,7 @@
<h1 class="title">Latex Endeavors</h1> <h1 class="title">Latex Endeavors</h1>
<p class="subtitle">Some unintuitive quirks of Latex</p> <p class="subtitle">Some unintuitive quirks of Latex</p>
<p class="author">Never</p> <p class="author">Never</p>
<p class="date">9.1.2026</p> <p class="date">2026-01-09</p>
</header> </header>
<section id="content"> <section id="content">
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">

View file

@ -3,7 +3,7 @@
Never Never
25.7.2025 2025-07-25
──────────────────── ────────────────────

View file

@ -5,6 +5,7 @@
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" /> <meta name="author" content="Never" />
<meta name="dcterms.date" content="2025-07-25" />
<title>Random linux utilities</title> <title>Random linux utilities</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"> <link rel="icon" type="image/x-icon" href="images/favicon.png">
<style> <style>
@ -98,7 +99,7 @@
<h1 class="title">Random linux utilities</h1> <h1 class="title">Random linux utilities</h1>
<p class="subtitle">Neat things I picked up along the way</p> <p class="subtitle">Neat things I picked up along the way</p>
<p class="author">Never</p> <p class="author">Never</p>
<p class="date">25.7.2025</p> <p class="date">2025-07-25</p>
</header> </header>
<section id="content"> <section id="content">
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">

View file

@ -2,7 +2,7 @@
Never Never
12.01.2026 2026-01-12
──────────────────── ────────────────────

View file

@ -5,6 +5,7 @@
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" /> <meta name="author" content="Never" />
<meta name="dcterms.date" content="2026-01-12" />
<title>Using rsync on Android to syncronise my Music library</title> <title>Using rsync on Android to syncronise my Music library</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"> <link rel="icon" type="image/x-icon" href="images/favicon.png">
<style> <style>
@ -98,7 +99,7 @@
<h1 class="title">Using rsync on Android to syncronise my Music <h1 class="title">Using rsync on Android to syncronise my Music
library</h1> library</h1>
<p class="author">Never</p> <p class="author">Never</p>
<p class="date">12.01.2026</p> <p class="date">2026-01-12</p>
</header> </header>
<section id="content"> <section id="content">
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">

View file

@ -6,21 +6,21 @@ Hello World
ARTICLES ARTICLES
Latex Endeavors (latex-endeavors)
Latex undoubtedly has some quirks. Some of them have a rather
unintuitive solution. In this article I cover some quirks and solutions
I have encountered.
Never - 9.1.2026
Random linux utilities (random-linux-utils)
Tricks and tools I learned about, while tweaking my Linux sytem or
trying to do productive things.
Never - 25.7.2025
Using rsync on Android to syncronise my Music Using rsync on Android to syncronise my Music
library (rsync-android) library (rsync-android)
As Spotify is getting enshittified by capitalism, keeping a music As Spotify is getting enshittified by capitalism, keeping a music
library is kind of essential. Here I use rsync to syncronise my library library is kind of essential. Here I use rsync to syncronise my library
with my Android smartphone. with my Android smartphone.
Never - 12.01.2026 Never - 2026-01-12
Latex Endeavors (latex-endeavors)
Latex undoubtedly has some quirks. Some of them have a rather
unintuitive solution. In this article I cover some quirks and solutions
I have encountered.
Never - 2026-01-09
Random linux utilities (random-linux-utils)
Tricks and tools I learned about, while tweaking my Linux sytem or
trying to do productive things.
Never - 2025-07-25
]8;;\ ]8;;\

View file

@ -41,6 +41,17 @@
<ul> <ul>
<li> <li>
<div class="articles-header"> <div class="articles-header">
<a href="rsync-android.html" class="articles-title">Using rsync on
Android to syncronise my Music library</a>
<p class="articles-author"><em>Never</em></p>
</div>
<p class="articles-summary">As Spotify is getting enshittified by
capitalism, keeping a music library is kind of essential. Here I use
rsync to syncronise my library with my Android smartphone.</p>
<p class="articles-date">2026-01-12</p>
</li>
<li>
<div class="articles-header">
<a href="latex-endeavors.html" class="articles-title">Latex <a href="latex-endeavors.html" class="articles-title">Latex
Endeavors</a> Endeavors</a>
<p class="articles-author"><em>Never</em></p> <p class="articles-author"><em>Never</em></p>
@ -48,7 +59,7 @@ Endeavors</a>
<p class="articles-summary">Latex undoubtedly has some quirks. Some of <p class="articles-summary">Latex undoubtedly has some quirks. Some of
them have a rather unintuitive solution. In this article I cover some them have a rather unintuitive solution. In this article I cover some
quirks and solutions I have encountered.</p> quirks and solutions I have encountered.</p>
<p class="articles-date">9.1.2026</p> <p class="articles-date">2026-01-09</p>
</li> </li>
<li> <li>
<div class="articles-header"> <div class="articles-header">
@ -58,18 +69,7 @@ utilities</a>
</div> </div>
<p class="articles-summary">Tricks and tools I learned about, while <p class="articles-summary">Tricks and tools I learned about, while
tweaking my Linux sytem or trying to do productive things.</p> tweaking my Linux sytem or trying to do productive things.</p>
<p class="articles-date">25.7.2025</p> <p class="articles-date">2025-07-25</p>
</li>
<li>
<div class="articles-header">
<a href="rsync-android.html" class="articles-title">Using rsync on
Android to syncronise my Music library</a>
<p class="articles-author"><em>Never</em></p>
</div>
<p class="articles-summary">As Spotify is getting enshittified by
capitalism, keeping a music library is kind of essential. Here I use
rsync to syncronise my library with my Android smartphone.</p>
<p class="articles-date">12.01.2026</p>
</li> </li>
</ul> </ul>
</nav> </nav>

View file

@ -6,21 +6,21 @@ Hello World
ARTICLES ARTICLES
Latex Endeavors (latex-endeavors)
Latex undoubtedly has some quirks. Some of them have a rather
unintuitive solution. In this article I cover some quirks and solutions
I have encountered.
Never - 9.1.2026
Random linux utilities (random-linux-utils)
Tricks and tools I learned about, while tweaking my Linux sytem or
trying to do productive things.
Never - 25.7.2025
Using rsync on Android to syncronise my Music Using rsync on Android to syncronise my Music
library (rsync-android) library (rsync-android)
As Spotify is getting enshittified by capitalism, keeping a music As Spotify is getting enshittified by capitalism, keeping a music
library is kind of essential. Here I use rsync to syncronise my library library is kind of essential. Here I use rsync to syncronise my library
with my Android smartphone. with my Android smartphone.
Never - 12.01.2026 Never - 2026-01-12
Latex Endeavors (latex-endeavors)
Latex undoubtedly has some quirks. Some of them have a rather
unintuitive solution. In this article I cover some quirks and solutions
I have encountered.
Never - 2026-01-09
Random linux utilities (random-linux-utils)
Tricks and tools I learned about, while tweaking my Linux sytem or
trying to do productive things.
Never - 2025-07-25
]8;;\ ]8;;\

View file

@ -3,7 +3,7 @@
Never Never
9.1.2026 2026-01-09
──────────────────── ────────────────────

View file

@ -3,7 +3,7 @@
Never Never
25.7.2025 2025-07-25
──────────────────── ────────────────────

View file

@ -2,7 +2,7 @@
Never Never
12.01.2026 2026-01-12
──────────────────── ────────────────────

View file

@ -41,6 +41,17 @@
<ul> <ul>
<li> <li>
<div class="articles-header"> <div class="articles-header">
<a href="rsync-android.html" class="articles-title">Using rsync on
Android to syncronise my Music library</a>
<p class="articles-author"><em>Never</em></p>
</div>
<p class="articles-summary">As Spotify is getting enshittified by
capitalism, keeping a music library is kind of essential. Here I use
rsync to syncronise my library with my Android smartphone.</p>
<p class="articles-date">2026-01-12</p>
</li>
<li>
<div class="articles-header">
<a href="latex-endeavors.html" class="articles-title">Latex <a href="latex-endeavors.html" class="articles-title">Latex
Endeavors</a> Endeavors</a>
<p class="articles-author"><em>Never</em></p> <p class="articles-author"><em>Never</em></p>
@ -48,7 +59,7 @@ Endeavors</a>
<p class="articles-summary">Latex undoubtedly has some quirks. Some of <p class="articles-summary">Latex undoubtedly has some quirks. Some of
them have a rather unintuitive solution. In this article I cover some them have a rather unintuitive solution. In this article I cover some
quirks and solutions I have encountered.</p> quirks and solutions I have encountered.</p>
<p class="articles-date">9.1.2026</p> <p class="articles-date">2026-01-09</p>
</li> </li>
<li> <li>
<div class="articles-header"> <div class="articles-header">
@ -58,18 +69,7 @@ utilities</a>
</div> </div>
<p class="articles-summary">Tricks and tools I learned about, while <p class="articles-summary">Tricks and tools I learned about, while
tweaking my Linux sytem or trying to do productive things.</p> tweaking my Linux sytem or trying to do productive things.</p>
<p class="articles-date">25.7.2025</p> <p class="articles-date">2025-07-25</p>
</li>
<li>
<div class="articles-header">
<a href="rsync-android.html" class="articles-title">Using rsync on
Android to syncronise my Music library</a>
<p class="articles-author"><em>Never</em></p>
</div>
<p class="articles-summary">As Spotify is getting enshittified by
capitalism, keeping a music library is kind of essential. Here I use
rsync to syncronise my library with my Android smartphone.</p>
<p class="articles-date">12.01.2026</p>
</li> </li>
</ul> </ul>
</nav> </nav>

View file

@ -5,6 +5,7 @@
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" /> <meta name="author" content="Never" />
<meta name="dcterms.date" content="2026-01-09" />
<title>Latex Endeavors</title> <title>Latex Endeavors</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"> <link rel="icon" type="image/x-icon" href="images/favicon.png">
<style> <style>
@ -34,7 +35,7 @@
<h1 class="title">Latex Endeavors</h1> <h1 class="title">Latex Endeavors</h1>
<p class="subtitle">Some unintuitive quirks of Latex</p> <p class="subtitle">Some unintuitive quirks of Latex</p>
<p class="author">Never</p> <p class="author">Never</p>
<p class="date">9.1.2026</p> <p class="date">2026-01-09</p>
</header> </header>
<section id="content"> <section id="content">
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">

View file

@ -5,6 +5,7 @@
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" /> <meta name="author" content="Never" />
<meta name="dcterms.date" content="2025-07-25" />
<title>Random linux utilities</title> <title>Random linux utilities</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"> <link rel="icon" type="image/x-icon" href="images/favicon.png">
<style> <style>
@ -98,7 +99,7 @@
<h1 class="title">Random linux utilities</h1> <h1 class="title">Random linux utilities</h1>
<p class="subtitle">Neat things I picked up along the way</p> <p class="subtitle">Neat things I picked up along the way</p>
<p class="author">Never</p> <p class="author">Never</p>
<p class="date">25.7.2025</p> <p class="date">2025-07-25</p>
</header> </header>
<section id="content"> <section id="content">
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">

View file

@ -5,6 +5,7 @@
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" /> <meta name="author" content="Never" />
<meta name="dcterms.date" content="2026-01-12" />
<title>Using rsync on Android to syncronise my Music library</title> <title>Using rsync on Android to syncronise my Music library</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"> <link rel="icon" type="image/x-icon" href="images/favicon.png">
<style> <style>
@ -98,7 +99,7 @@
<h1 class="title">Using rsync on Android to syncronise my Music <h1 class="title">Using rsync on Android to syncronise my Music
library</h1> library</h1>
<p class="author">Never</p> <p class="author">Never</p>
<p class="date">12.01.2026</p> <p class="date">2026-01-12</p>
</header> </header>
<section id="content"> <section id="content">
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">

View file

@ -2,7 +2,14 @@
"articles": [ "articles": [
{ {
"author": "Never", "author": "Never",
"date": "9.1.2026", "date": "2026-01-12",
"summary": "As Spotify is getting enshittified by capitalism, keeping a music library is kind of essential. Here I use rsync to syncronise my library with my Android smartphone.",
"title": "Using rsync on Android to syncronise my Music library",
"filename": "rsync-android"
},
{
"author": "Never",
"date": "2026-01-09",
"subtitle": "Some unintuitive quirks of Latex", "subtitle": "Some unintuitive quirks of Latex",
"summary": "Latex undoubtedly has some quirks. Some of them have a rather unintuitive solution. In this article I cover some quirks and solutions I have encountered.", "summary": "Latex undoubtedly has some quirks. Some of them have a rather unintuitive solution. In this article I cover some quirks and solutions I have encountered.",
"title": "Latex Endeavors", "title": "Latex Endeavors",
@ -10,18 +17,11 @@
}, },
{ {
"author": "Never", "author": "Never",
"date": "25.7.2025", "date": "2025-07-25",
"subtitle": "Neat things I picked up along the way", "subtitle": "Neat things I picked up along the way",
"summary": "Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.", "summary": "Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.",
"title": "Random linux utilities", "title": "Random linux utilities",
"filename": "random-linux-utils" "filename": "random-linux-utils"
},
{
"author": "Never",
"date": "12.01.2026",
"summary": "As Spotify is getting enshittified by capitalism, keeping a music library is kind of essential. Here I use rsync to syncronise my library with my Android smartphone.",
"title": "Using rsync on Android to syncronise my Music library",
"filename": " rsync-android"
} }
] ]
} }

View file

@ -2,7 +2,7 @@
title: Latex Endeavors title: Latex Endeavors
subtitle: Some unintuitive quirks of Latex subtitle: Some unintuitive quirks of Latex
author: Never author: Never
date: 9.1.2026 date: 2026-01-09
summary: Latex undoubtedly has some quirks. Some of them have a rather unintuitive solution. summary: Latex undoubtedly has some quirks. Some of them have a rather unintuitive solution.
In this article I cover some quirks and solutions I have encountered. In this article I cover some quirks and solutions I have encountered.
--- ---

View file

@ -1,18 +0,0 @@
Latex Endeavors
Some unintuitive quirks of Latex
Never
9.1.2026
────────────────────
BIBLATEX AND BIBER
Biber doesnt run
Biber doenst run if the (fedora) package  libxcrypt-compat  is missing.
It will fail with the error message
biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
]8;;\

View file

@ -1,80 +0,0 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" />
<title>Latex Endeavors</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
</style>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="tv-screen"></canvas>
<header id="page-header">
<ul>
<li><a href="index.html">Home</a></li><li><a href="about.html">About</a></li>
</ul>
<!--
<ul>
<li>
<span id="dark-mode">
<input id="dark-mode-toggle" type="checkbox"><label for="dark-mode-toggle">Dark mode</label>
</span>
</li>
</ul>
-->
</header>
<header id="title-block-header">
<h1 class="title">Latex Endeavors</h1>
<p class="subtitle">Some unintuitive quirks of Latex</p>
<p class="author">Never</p>
<p class="date">9.1.2026</p>
</header>
<section id="content">
<nav id="TOC" role="doc-toc">
<ul>
<li><a href="#biblatex-and-biber" id="toc-biblatex-and-biber">BibLaTeX
and Biber</a>
<ul>
<li><a href="#biber-doesnt-run" id="toc-biber-doesnt-run">Biber doesnt
run</a></li>
</ul></li>
</ul>
</nav>
<article>
<h1 id="biblatex-and-biber">BibLaTeX and Biber</h1>
<h2 id="biber-doesnt-run">Biber doesnt run</h2>
<p>Biber doenst run if the (fedora) package
<code>libxcrypt-compat</code> is missing. It will fail with the error
message</p>
<pre><code>biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory</code></pre>
</article>
</section>
<footer id="page-footer">
<!-- <embed type="text/html" src="https://cups.teabucket.eu/embed?from=never" style="width:320px; height: 120px; scale: 0.66;"> -->
<p class="cups-light">
<a href="https://cups.teabucket.eu/prev?from=never" target="_parent"><img alt="Previous" src="images/cups_left.svg" width="30" height="30/"></a>
<a href="https://cups.teabucket.eu/" target="_parent"><img alt="CUPS" src="images/cups_logo.svg" width="120" height="60/"></a>
<a href="https://cups.teabucket.eu/next?from=never" target="_parent"><img alt="Next" src="images/cups_right.svg" width="30" height="30/"></a>
</p>
</footer>
</body>
</html>

View file

@ -2,7 +2,7 @@
title: Random linux utilities title: Random linux utilities
subtitle: Neat things I picked up along the way subtitle: Neat things I picked up along the way
author: Never author: Never
date: 25.7.2025 date: 2025-07-25
summary: Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things. summary: Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.
--- ---

View file

@ -1,18 +0,0 @@
Latex Endeavors
Some unintuitive quirks of Latex
Never
9.1.2026
────────────────────
BIBLATEX AND BIBER
Biber doesnt run
Biber doenst run if the (fedora) package  libxcrypt-compat  is missing.
It will fail with the error message
biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
]8;;\

View file

@ -1,80 +0,0 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Never" />
<title>Latex Endeavors</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
</style>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="tv-screen"></canvas>
<header id="page-header">
<ul>
<li><a href="index.html">Home</a></li><li><a href="about.html">About</a></li>
</ul>
<!--
<ul>
<li>
<span id="dark-mode">
<input id="dark-mode-toggle" type="checkbox"><label for="dark-mode-toggle">Dark mode</label>
</span>
</li>
</ul>
-->
</header>
<header id="title-block-header">
<h1 class="title">Latex Endeavors</h1>
<p class="subtitle">Some unintuitive quirks of Latex</p>
<p class="author">Never</p>
<p class="date">9.1.2026</p>
</header>
<section id="content">
<nav id="TOC" role="doc-toc">
<ul>
<li><a href="#biblatex-and-biber" id="toc-biblatex-and-biber">BibLaTeX
and Biber</a>
<ul>
<li><a href="#biber-doesnt-run" id="toc-biber-doesnt-run">Biber doesnt
run</a></li>
</ul></li>
</ul>
</nav>
<article>
<h1 id="biblatex-and-biber">BibLaTeX and Biber</h1>
<h2 id="biber-doesnt-run">Biber doesnt run</h2>
<p>Biber doenst run if the (fedora) package
<code>libxcrypt-compat</code> is missing. It will fail with the error
message</p>
<pre><code>biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory</code></pre>
</article>
</section>
<footer id="page-footer">
<!-- <embed type="text/html" src="https://cups.teabucket.eu/embed?from=never" style="width:320px; height: 120px; scale: 0.66;"> -->
<p class="cups-light">
<a href="https://cups.teabucket.eu/prev?from=never" target="_parent"><img alt="Previous" src="images/cups_left.svg" width="30" height="30/"></a>
<a href="https://cups.teabucket.eu/" target="_parent"><img alt="CUPS" src="images/cups_logo.svg" width="120" height="60/"></a>
<a href="https://cups.teabucket.eu/next?from=never" target="_parent"><img alt="Next" src="images/cups_right.svg" width="30" height="30/"></a>
</p>
</footer>
</body>
</html>

View file

@ -1,7 +1,7 @@
--- ---
title: Using rsync on Android to syncronise my Music library title: Using rsync on Android to syncronise my Music library
author: Never author: Never
date: 12.01.2026 date: 2026-01-12
summary: As Spotify is getting enshittified by capitalism, keeping a music library summary: As Spotify is getting enshittified by capitalism, keeping a music library
is kind of essential. Here I use rsync to syncronise my library with my Android smartphone. is kind of essential. Here I use rsync to syncronise my library with my Android smartphone.
--- ---