Skip to content

Instantly share code, notes, and snippets.

@Akanoa
Akanoa / Cargo.toml
Last active October 14, 2024 14:06
Clodo Redis : le redis dans une map
[package]
name = "clodo_redis"
version = "0.1.0"
edition = "2021"
[dependencies]
eyre = "0.6.12"
log = "0.4.22"
env_logger = "0.11.5"
tokio = { version = "1.40.0", default-features = false, features = ["rt-multi-thread", "macros", "net", "io-util", "signal", "sync"] }
@phortuin
phortuin / signing-git-commits.md
Last active October 13, 2025 02:47
Set up a GPG key for signing Git commits on MacOS (M1)

Based on this blogpost.

To sign Git commits, you need a gpg key. GPG stands for GNU Privacy Guard and is the de facto implementation of the OpenPGP message format. PGP stands for ‘Pretty Good Privacy’ and is a standard to sign and encrypt messages.

Setting up

Install with Homebrew:

$ brew install gpg