No idea what you mean by "RCX" but it looks like you need to create a new application in google cloud console, enable this api: https://console.cloud.google.com/apis/library/drive.googleapis.com , and copy and paste in the app id and token.
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 )
She's dead, sis. Try Mulch if you specifically want a chromium-based browser. I use it as a backup for sites which don't work correctly under Firefox. You can add the divestos repo to your Fdroid client for auto updates.
I hope that cows, pigs, and chickens will also rise up and fight to overthrow their oppressors
Works correctly for me on 0.0.34 in all the "create post" fields.
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
The link posted is only useful if your account is with kbin.social. Go to [URL your account is with]/[c if Lemmy, or m if kbin]/piracy@lemmy.dbzer0.com
For you, that would be https://lemmy.world/c/piracy@lemmy.dbzer0.com
Searching !piracy@lemmy.dbzer0.com in your Lemmy instances search (burger menu -> search) should also work, and links to /c/piracy@lemmy.dbzer0.com should work on the Lemmy web client, and should work in the next release of Jerboa (0.0.35) judging by https://github.com/dessalines/jerboa/pulse
Organizr from Theme Park as a docker mod for the LSIO image is working fine for me. https://docs.theme-park.dev/themes/qbittorrent/ https://docs.theme-park.dev/setup/#docker-mods
Does your .bashrc actually source .bash_profile? Add
[ ! -f "~/.bash_profile" ] || . "~/.bash_profile"
(.bash_profile doesn't exist or source it) to the end if not.