Why do you like hurting animals? Are you a psychopath?
Ann Onymous
they/she 🏳️🌈🏳️⚧️🌱 https://animalclock.org/uk/
- 0 Posts
- 6 Comments
Joined 2 years ago
Cake day: June 7th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
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.
Ann Onymous@lemmy.blahaj.zonetoReddit@lemmy.ml•How do I fully delete my reddit account and posts?2·2 years agoI 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 )
Ann Onymous@lemmy.blahaj.zoneto vegan@lemmy.world•Not even on the fediverse are people willing to think about the animals they abuse every day :(2·2 years agoAbsolutely ratio’d, my friend. The hypocrisy of carnist “”““animal lovers””“” is truly staggering.
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.