### Install ExifTool using Homebrew Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/integrating-metadata-removal.md Install ExifTool, a powerful tool for viewing and manipulating file metadata, using Homebrew. ```bash brew install exiftool ``` -------------------------------- ### Install ykman CLI on Ubuntu using PPA Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/yubikey-reset-and-backup.md Install the yubikey-manager package on Ubuntu by adding the Yubico stable PPA. ```bash sudo apt-add-repository ppa:yubico/stable sudo apt update sudo apt install yubikey-manager ``` -------------------------------- ### Install Android Build Tools Source: https://github.com/privacyguides/privacyguides.org/blob/main/docs/android/obtaining-apps.md Use the sdkmanager to install a specific version of Android build-tools, required for apksigner. ```bash unzip commandlinetools-*.zip cd cmdline-tools ./bin/sdkmanager --sdk_root=./ "build-tools;29.0.3" ``` -------------------------------- ### Example GPG Key Structure Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/yubikey-reset-and-backup.md This example illustrates the typical output of `gpg --list-secret-keys --with-keygrip`, highlighting the location of Keygrip strings for both the main OpenPGP key and its subkeys. ```console sec> rsa4096 2025-03-04 [SC] [expires: 2025-03-06] ABC42ABC42ABC42ABC42ABC42[key_id] Keygrip = [key_grip] Card serial no. = 0000 [yubikey_serial_number] uid [ultimate] Name (Comment) ssb> rsa4096 2025-03-04 [E] [expires: 2025-03-06] Keygrip = [subkey_grip] ssb> rsa4096 2025-03-04 [SEA] [expires: 2025-03-06] Keygrip = [subkey_grip] ``` -------------------------------- ### Install ykman CLI using pip Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/yubikey-reset-and-backup.md Install the yubikey-manager package using pip for cross-platform compatibility. ```bash pip install --user yubikey-manager ``` -------------------------------- ### Example of Adding a Contributor with Specific Contributions Source: https://github.com/privacyguides/privacyguides.org/blob/main/README.md This example demonstrates how to add a contributor named 'jonaharagon' with 'doc', 'research', and 'question' as their contribution types. Note that 'content' should not be used for website contributors; 'doc' should be used instead. ```bash all-contributors-cli add jonaharagon doc,research,question ``` -------------------------------- ### Example Mastodon Public Profile URL Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/mastodon-privacy-and-security.md An example of a Mastodon public profile URL for the Privacy Guides account on the mastodon.neat.computer instance. ```html https://mastodon.neat.computer/@privacyguides ``` -------------------------------- ### Install Homebrew Package Manager Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/integrating-metadata-removal.md Install Homebrew, a package manager for macOS, to easily install other software. ```bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" ``` -------------------------------- ### Markdown Admonition Example Source: https://github.com/privacyguides/privacyguides.org/blob/main/docs/meta/admonitions.md This is an example of the old markdown-based admonition format. It uses '!!!' to denote an admonition block. ```markdown ``` markdown title="Admonition" !!! note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` ``` -------------------------------- ### Info Admonition Example Source: https://github.com/privacyguides/privacyguides.org/blob/main/docs/meta/admonitions.md Demonstrates the 'info' type admonition. Use this to provide supplementary information. ```html

Info

Lorem ipsum dolor sit amet, consectetur adipiscing elit.
``` -------------------------------- ### Tip Admonition Example Source: https://github.com/privacyguides/privacyguides.org/blob/main/docs/meta/admonitions.md Illustrates the 'tip' type admonition. This is useful for offering helpful suggestions or advice. ```html

Tip

Lorem ipsum dolor sit amet, consectetur adipiscing elit.
``` -------------------------------- ### Install ykman CLI using Homebrew on macOS Source: https://github.com/privacyguides/privacyguides.org/blob/main/blog/posts/yubikey-reset-and-backup.md Install the ykman CLI on macOS using the Homebrew package manager. ```bash brew install ykman ``` -------------------------------- ### Note Admonition Example Source: https://github.com/privacyguides/privacyguides.org/blob/main/docs/meta/admonitions.md Illustrates how to format a 'note' type admonition. Use this for general information or important points. ```html

Note

Lorem ipsum dolor sit amet, consectetur adipiscing elit.
```