

A Hetzner Storage Box, 1TB for 3,89€


A Hetzner Storage Box, 1TB for 3,89€


Well they don’t grow on trees, do they?
I completely ditched WhatsApp, I have more than 20 contacts on Signal including my parents (70+) and my work chat of 8 people. I live in Germany where people tend to be very privacy focused, but we are getting there!
I watched with my girlfriend and we felt really weird after. It really played with stereotypes like the “crazy girlfriend” and the “poor nice guy”. He is portrayed as the victim most of the movie, which we found very strange. The movie is very well made with some nice effects and new ideas, but it really felt odd for 2026.
Edit: as you are describing the movie things come to my mind again, I could originally only recall that “feeling” it left me with. Of course he is portrayed as the villain, I was wrong with that take. Yes we have the hotline call, the “please kill me” scene and the end scene. Still I felt the female perspective was totally underrepresented in the movie. Nikki has not a real back story, she is just the crazy bitch for the guy wishing the monkeys paw wish getting wrong.
I know, it is a horror movie and it’s for entertainment, but I found the male/female stereotypes boring. In the end for me it is a male fantasy movie and I find the message very shallow.


I am pretty sure Motorola plans to sell flag ship devices with GrapheneOS preinstalled. They won’t support old devices. Also the manufacturer needs to still ship firmware updates for a specific duration for GrapheneOS to support it.


I heard this before:
That is fundamentally a problem with using polluting power sources, not Bitcoin. Bitcoin is just wasting huge amounts of power, but that wouldn’t nearly be as big of a problem with clean power sources.
I am 100% sure big oil is heavily invested in pushing AI data centers.
I actually use the document_exporter of paperless-ngx. I have a small bash script backup-paperless.sh that runs the paperless-ngx document_exporter and also makes a database dump using pg_dump. It sets up the restic backups logic with daily, weekly and monthly backups. I run that bash script using a systemd service paperless-backup.service. This service is run daily with the timer paperless-backup.timer, randomly at 3 am ±30 minutes.
restic is smart, so it does only backup if there are changes. The incremental backups are great, in case the database corrupts without me noticing. I’ll share the scripts in case you are interested in how it works:
#!/bin/bash
set -euo pipefail
COMPOSE_DIR="/home/user/paperless-ngx/"
DUMP_DIR="$COMPOSE_DIR/sqldump"
EXPORT_DIR="/usr/src/paperless/export"
export RESTIC_REPOSITORY="sftp:abc123@abc123.your-storagebox.de:/backup/restic"
export RESTIC_PASSWORD_FILE="/home/user/.config/restic/password"
mkdir -p "$DUMP_DIR"
cd "$COMPOSE_DIR"
docker compose exec -T webserver document_exporter "$EXPORT_DIR" -p
docker compose exec -T db pg_dump -U paperless paperless > "$DUMP_DIR/dump.sql"
restic backup "$DUMP_DIR" "$COMPOSE_DIR/export"
restic forget \
--keep-daily 7 \
--keep-weekly 4 \
--keep-monthly 6 \
--prune
rm -rf "$COMPOSE_DIR/export"/*
rm -rf "$DUMP_DIR"/*
[Unit]
Description=Paperless-ngx Restic Backup
Wants=network-online.target
After=network-online.target docker.service
[Service]
Type=oneshot
User=user
WorkingDirectory=/home/user/paperless-ngx
ExecStart=/home/user/paperless-ngx/backup-paperless.sh
[Unit]
Description=Run paperless backup every 24 hours
[Timer]
OnCalendar=*-*-* 03:00:00
Persistent=true
RandomizedDelaySec=30min
[Install]
WantedBy=timers.target
I use restic to backup my paperless documents to a Hetzner Storage Box. The setup was easy and I am independent of US cloud hosters.


I wanted to use it, but a Facebook tracker in the app is a hard no for me.
https://reports.exodus-privacy.eu.org/en/reports/769361/

450 °F = 232.222 °C


I guess the intersection of people who use an adblocker and who are still active on Facebook is small anyway


I don’t quite remember what I set as this was more than half a year ago. But the images couldn’t be removed as easily, also not from the GUI view, as they were somehow not registered in a certain list that should have shown them. And since then I just use the terminal out of habit.
However I just found an article about Mint removing old kernels once a week automatically.


I had the problem that all old kernel images were kept when updating through the GUI updater. This led to my root partition getting fuller and fuller*. I needed some really obscure commands to remove those old images, since then I only update via terminal. I guess it was some kind of bug, but for me as a standard user it was a really serious one.
*I need to say I made the mistake of splitting root and home and giving the root partition only 40 GB, because I read internet advices about needing to change my distro frequently, turns out that was not the case


I guess he was disgusted by common people. There was a “Do not disturb” sign on the yacht.
So my strategy is using https://noai.duckduckgo.com/ as search engine. I have installed the uBlacklist add on, this let’s me block out websites completely on the internet with a single click in my search results. So whenever I search a topic and end up on one of those websites that are fully LLM-generated I hit that button.
I will only help very shorty until the whole internet is eaten up by LLMs, but it gives me a feeling of control.


Fully agree, so much wrong with it. It should be a phrase of the past.
That’s a nice setup. I actually let
resticdo my backups. Is there an advantage of using EncFS/rsync? Like not having to use SSH?