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
they/she 🏳️🌈🏳️⚧️🌱 https://animalclock.org/uk/
- 0 Posts
- 8 Comments
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 Linux@lemmy.ml•Thousands of images on Docker Hub leak auth secrets, private keysEnglish2·2 years agoRemove the trailing dot from the url: https://arxiv.org/pdf/2307.03958.pdf
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 Linux@lemmy.ml•[Question] How can I dim screen after 20s inactivity when running on battery? tlp/sway/arch/chromebookEnglish1·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 Technology@beehaw.org•Privacy-focused alternatives to duckduckgo (ddg)?English11·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.