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.
they/she 🏳️🌈🏳️⚧️🌱 https://animalclock.org/uk/
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 )
Remove the trailing dot from the url: https://arxiv.org/pdf/2307.03958.pdf
These decisions might be intentional on the part of Google and Microsoft
Well, yes - it’s profitable for these corporations to portray Firefox as buggy and their own browser as superior. Change your user agent to one of a Chromium-based browser and watch how your “unsupported” Firefox suddenly works correctly in most cases.
I’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.
Are 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
Absolutely ratio’d, my friend. The hypocrisy of carnist “”““animal lovers””“” is truly staggering.
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’ve run Zentyal Community on a cheap 1c/2gb VPS for probably 5+ years. Receiving email has never been a problem, and I basically don’t get spam. My top tip is to use a unique alias for everything, e.g. thirdpartyname.randomstring@your.domain every single time you have to give your email address for something. That way, when a third party is compromised and your provided alias starts receiving spam, you can just update your alias with them and on your MX. If you deliberately make any of your aliases public, you’ll probably want to setup rspamd and postgrey.
Getting opendmarc, opendkim, certbot, etc set up in a way that Zentyal wouldn’t nuke it everytime it updated was the biggest hassle for me, and I seem to remember having to open a ticket with Microsoft to get my outbound emails accepted by O365 too. Shouldn’t be an issue anyway if you use a smarthost for outbound.
This definitely isn’t an endorsement of Zentyal btw. In fact, to be clear, most of my setup efforts were spent fighting its design decisions. I’d recommend that you find something containerised which is well maintained and does only what you need. And put some time aside, especially if you’ve never set up an MX from scratch before.
+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.