- Decided to rewrite the cache backend.
- It will now be a SQLite backend going forward.
- I'm planning on no data migration.
lextwt
last night π’ We'll fix it as soon as @xuu can π€£
403 Forbidden
here btw π

SqliteCache
backend I'm working on here, what are your thoughts regarding mgirations from old MemoryCache
(_which is now gone in the codebase in this branch_). Do you care to migrate at all, or just let the pod re-fetch all feeds? π€
Profile
(_top right_) and then Muted
.

created = 2025-04-07T19:59:51Z
?! π± @movq's feed shows:
2025-04-07T19:59:51+00:00 I wonder if my current Linux installation will actually make it to 20 years:
$ head -n 1 /var/log/pacman.log
[2011-07-07 11:19] installed filesystem (2011.04-1)
Itβs not toooo far into the future.
It would be crazy β¦ 20 years without reinstalling once β¦ phew. π₯΄
Hmmmm
yarnd
at all. Hmmm π€
./yarnc debug <your feed url>
:
znf6csa 2025-04-07T19:59:51+00:00 I wonder if my current Linux installation will actually make it to 20 years:
$ head -n 1 /var/log/pacman.log
[2011-07-07 11:19] installed filesystem (2011.04-1)
Itβs not toooo far into the future.
It would be crazy β¦ 20 years without reinstalling once β¦ phew. π₯΄
sqlite> select * from twts where content LIKE '%Linux installation%';
hash = znf6csa
feed_url = https://www.uninformativ.de/twtxt.txt
content = I wonder if my current Linux installation will actually make it to 20 years:
$ head -n 1 /var/log/pacman.log
[2011-07-07 11:19] installed filesystem (2011.04-1)
Itβs not toooo far into the future.
It would be crazy β¦ 20 years without reinstalling once β¦ phew. π₯΄
created = 2025-04-07T19:59:51Z
subject = (#znf6csa)
mentions = []
tags = []
links = []
yarnd
(_on this branch_) will now restore every version, and maybe I _might_ have introduced a bit of a weird behavior there. One moment...
commit ea9eaaf3d3977701dcb84b927c77c4f921bdbf43
Author: sorenpeter <sorenpeter@noreply@mills.io>
Date: Sat Sep 24 23:34:07 2022 +0000
Replacing Pico.css with Simple.css (#990)
Replacing pico.css with simple.css along with some small UI changes
hello
"hello world"
hello AND world
hello OR world
hello NOT world
"this is a phrase"
^R
and using fuzzy search which if you type fast you sometimes get wrong π
dkv rm ...
to make sure I never ever have this so easily accessible in my shell history (^R
):
$ awk '
/^#/ { ts = $0; next }
/^dkv rm/ { next }
{ if (ts) print ts; ts=""; print }
' ~/.bash_history > ~/.bash_history.tmp && mv ~/.bash_history.tmp ~/.bash_history && history -r
alias dkv="docker rm"
to be a much safer shell function:
dkv() {
if [[ "$1" == "rm" && -n "$2" ]]; then
read -r -p "Are you sure you want to delete volume '$2'? [Y/n] " confirm
confirm=${confirm:-Y}
if [[ "$confirm" =~ ^[Yy]$ ]]; then
# Disable history
set +o history
# Delete the volume
docker volume rm "$2"
# Re-enable history
set -o history
else
echo "Aborted."
fi
else
docker volume "$@"
fi
}
SqliteCache
backend_)