Back up your Bitwarden vault in a future-proof and secure way

Introduction Your Bitwarden vault contains (hopefully) all of your passwords and other sensitive data, so it would be good to have a backup of it in case something goes wrong. In this post, we will explore how to export your Bitwarden data, keep it safely encrypted with PGP, and set and complete backup reminders using Todoist. Prerequisites Bitwarden account PGP key pair (optional but recommended) Todoist account and API key (optional) Bitwarden CLI setup Downloading and installing Bitwarden CLI The Bitwarden CLI tool is available for download on the Bitwarden website....

November 19, 2023 · 6 min · David Isaksson

Downloading Jenkins artifacts via the CLI

Problem I recently needed to download an artifact from a Jenkins build to my remote dev machine. The remote machine has access to the Jenkins controller, so I just ran wget with the link. $ wget https://jenkins.local/job/.../artifact/my_artifact.tar.gz I got this back: HTTP request sent, awaiting response... 403 Forbidden 2023-04-02 17:43:27 ERROR 403: Forbidden. Jenkins required authentication… Solution API token To authenticate ourselves we need to supply username and an API token....

April 2, 2023 · 2 min · David Isaksson