Why do you like hurting animals? Are you a psychopath?
Ann Onymous
they/she 🏳️🌈🏳️⚧️🌱 https://animalclock.org/uk/
- 0 Posts
- 17 Comments
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?0·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 )
I always use a yaml file for user config but json is fine, too
Ann Onymous@lemmy.blahaj.zoneto Selfhosted@lemmy.world•Plex and Mullvad now that port forwarding is goneEnglish0·2 years agoI’ve used wireguard for a few years. The container isn’t essential, but I prefer to have all my service configs contained and separate from the host OS.
So basically you’ll just have one WAN->LAN port forward for Wireguard. Connect to that remotely, and you’ll be able to access everything inside your LAN.
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.
Ann Onymous@lemmy.blahaj.zoneto Blahaj Lemmy Meta@lemmy.blahaj.zone•I'm a reddit mod trying to restart my sub on lemmy & I had questions for the admins here.0·2 years agoYou can block the community once it’s created and you’ll never see it again. Which is what I’ll be doing, since I have no desire to see the promotion of murder weapons or even more usdefaultism in my feed.
Ann Onymous@lemmy.blahaj.zoneto Linux@lemmy.ml•[Question] How can I dim screen after 20s inactivity when running on battery? tlp/sway/arch/chromebookEnglish0·2 years agoAre you running arch on the metal or through crostini/crouton? The second option probably will only respect chromeos’ power management settings, but you may be able to flash a full uefi payload and get rid of chromeos completely with https://mrchromebox.tech/#fwscript
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.
Ann Onymous@lemmy.blahaj.zoneto Jerboa@lemmy.ml•Jerboa v0.0.35-alpha · dessalines/jerboa0·2 years agoInstall 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.
Ann Onymous@lemmy.blahaj.zoneto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Sonarr Not Scanning BoxsetEnglish0·2 years agoWanted > 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
Ann Onymous@lemmy.blahaj.zoneto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Is Usenet an option for /Piracy?0·2 years agoI’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.
Ann Onymous@lemmy.blahaj.zoneto FREEMEDIAHECKYEAH@lemmy.fmhy.ml•Main mod of r/piracy demoded by reddit and forcing the sub to open up again0·2 years agoThe 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
Ann Onymous@lemmy.blahaj.zoneto Technology@beehaw.org•Privacy-focused alternatives to duckduckgo (ddg)?English0·2 years ago+1 for ddg’s bang operators. I use !w for Wikipedia, !gsc for Google scholar, !py for Python docs, !pypi, !imdb, and !tvdb frequently. Here’s a searchable list: https://duckduckgo.com/bangs
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.