

Install Obtanium and it’ll update anything you add (like Jerboa) directly from GitHub releases instead of waiting for it to propagate through to FDroid/IzzyOnDroid/etc’s repos.
they/she 🏳️🌈🏳️⚧️🌱 https://animalclock.org/uk/
Install Obtanium and it’ll update anything you add (like Jerboa) directly from GitHub releases instead of waiting for it to propagate through to FDroid/IzzyOnDroid/etc’s repos.
Wanted > missing > manual import > interactive import
You’ll get a clickable exclamation mark and a popout description of why it wasn’t able to import each file automatically
I’ve had a lifetime sub for NZBGeek (indexer) since 2015 (one-off payment of something like 20-30 USD) and currently pay 6 USD/month for unlimited downloads with NewsGroupDirect. The NGD sub was 4 USD/month until recently and I got it at that price through a promotion that I found out about on Reddit (probably r/usenet) a few years ago.
There’s some free trials listed here, but sadly all the best info is probably still on r/usenet.
I used https://github.com/ksurl/Shreddit
Here’s a quick bash script in case you have multiple accounts and want to run the delete on a schedule. Run it under a dedicated service account or modify the script to use venv or pipenv.
#!/usr/bin/env bash set -euo pipefail cd ~ || exit $? [[ "$PATH" =~ (^|:)'~/.local/bin'(:|$) ]] || export PATH="~/.local/bin:$PATH" command -v shreddit > /dev/null || python3 -m pip install --user --upgrade pip Shreddit@git+https://github.com/ksurl/Shreddit.git while read -r acct; do echo shreddit -u "$acct" shreddit -u "$acct" done < <( sed -E '/^\[/!d; s/\[|\]//g' praw.ini )