add rss alternate link

This commit is contained in:
Never Gude 2026-02-24 21:59:59 +01:00
parent a0e0703704
commit 615ec476d2
22 changed files with 2264 additions and 1468 deletions

View file

@ -20,16 +20,16 @@ library (rsync-android)
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.
Never - 2026-01-12
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
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
Never - 2025-07-25
]8;;\

218
public_ansi/pandoc Normal file
View file

@ -0,0 +1,218 @@
Testing pandoc markdown capabilities
Things I hope just work
Never
2025-07-25
────────────────────
LEVEL 1 HEADING
A link to a Heading ]8;;#level-4-heading\Level 4 Heading]8;;\ followed by another paragraph.
• fruits
Everything is a fruit
• apples
• macintosh
• red delicious
• pears
• peaches
• vegetables
• broccoli
• chard
1. first
2. second
3. third
i. subone
ii. subtwo
iii. subthree
• ☐ an unchecked task list item
• ☒ checked item
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nisl
enim, condimentum vitae lacus vel, semper efficitur est. Cras pretium
porta luctus. Nulla iaculis nisi at quam varius, et consequat lorem
blandit. Ut tincidunt leo sit amet velit lobortis, et blandit metus
mollis. Nam H₂O tristique ex a quam aliquet, eget 2¹⁰ vehicula sapien
 rhoncus . Aliquam  return 0;  sodales pretium auctor. Aliquam convallis
sodales elementum.
#include <stdio.h>
// TODO: A funny comment
int main() {
 char greetings[] = {'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', '!', '\0'};
 char greetings2[] = "Hello World!";
 printf("%zu\n", sizeof(greetings));
 printf("%zu\n", sizeof(greetings2));
 return 0;
}
Aenean eros lacus, volutpat at molestie vitae, pretium eu diam. Quisque
sit 1+2+3+ ⋯ +n amet nisl ut dolor congue sodales.
$$
\sum_{i=1}^{n} i = \frac{n (n + 1)}{2}
$$
Level 2 Heading
│ This is a block quote with two lines and a
│ 1. List item
│ 2. Another list item
│ │ And a nested block quote
│ Yeah
Term 1
Definition 1
Term 2 with inline markup
Definition 2
{ some code, part of Definition 2 }
Third paragraph of definition 2.
Term 1
Definition 1
Term 2
Definition 2a
Definition 2b
Level 3 Heading
A little poem
The limerick packs laughs anatomical
In space that is quite economical.
   But the good ones Ive seen
   So seldom are clean
And the clean ones so seldom are comical
────────────────────
(1) My first example will be numbered (1).
(2) My second example will be numbered (2).
Explanation of examples.
(3) My third example will be numbered (3).
As (2) illustrates, …
────────────────────
Level 4 Heading
Right Left Center Default
───────────────── ───────────────── ───────────────── ─────────────────
12 12 12 12
123 123 123 123
1 1 1 1
───────────────── ───────────────── ───────────────── ─────────────────
Demonstration of simple table syntax.
Following is a multiline table
Centered Default Right Aligned Left Aligned
Header Aligned
─────────── ─────── ─────────────── ────────────────────────
First row 12.0 Example of a row that
spans multiple lines.
Second row 5.0 Heres another one. Note
the blank line between
rows.
─────────── ─────── ─────────────── ────────────────────────
Heres the caption. It, too, may span multiple lines.
Then we have a Grid table
Location Temperature 1961-1990
in degree Celsius
min mean max
───────────────────── ─────── ─────── ───────
Antarctica -89.2 N/A 19.8
Earth -89.2 14 56.7
───────────────────── ─────── ─────── ───────
Grid table
An a Pipe table
Right Left Default Center
───────────────── ───────────────── ───────────────── ─────────────────
12 12 12 12
123 123 123 123
1 1 1 1
───────────────── ───────────────── ───────────────── ─────────────────
Demonstration of pipe table syntax.
Level 5 Heading
]8;;https://google.com\https://google.com]8;;\
]8;;mailto:sam@green.eggs.ham\sam@green.eggs.ham]8;;\
Link to ]8;;index.html\my label 1]8;;\ and ]8;;.\my label 2]8;;\ and ]8;;https://fsf.org\my label 3]8;;\ and ]8;;index.html#articles\my label 4]8;;\
This is an ]8;;/url\inline link]8;;\, and heres ]8;;https://fsf.org\one with a title]8;;\ and ]8;;mailto:sam@green.eggs.ham\Write me!]8;;\
[image]
The wonderful shork
Here is a footnote reference,¹ and another.²
This paragraph wont be part of the note, because it isnt indented.
Level 6 Heading
This is a warning.
This is a warning within a warning.
────────────────────
1. Here is the footnote.
2. Heres one with multiple blocks.
Subsequent paragraphs are indented to show that they belong to the
previous footnote.
{ some.code }
The whole paragraph can be indented, or just the first line. In
this way, multi-paragraph footnotes work like multi-paragraph list
items.
]8;;\

View file

@ -89,28 +89,4 @@ config.
Now on your Linux machine, syncronise your Music library with rsync.
rsync -av -e "ssh -p 8022" ~/Music <username>@<ip_address>:/data/data/com.termux/files/home/storage/music
Refreshing the Android MediaStore
Android uses a Database to store files. In order to play your music,
this database needs to be refreshed. This can be achieved by a reboot or
by using adb to manually refresh it.
sudo dnf install adb
Connect the Android device via USB and see if it is listed.
adb devices
If it is, restart adb in TCP mode with port 5555
adb tcpip 5555
Connect to the device using its .
adb connect <ip_address>
Refresh MediaStore.
adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN -d file:///data/data/com.termux/files/home/storage/music/
]8;;\