What it is:
- Your permanent cryptographic identity in the system
- Asymmetric key pair (public + private)
- Like your digital fingerprint/passport
See how a minor change to your commit message style can make a difference. Examples
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs
| import { gql as apolloGql } from "@apollo/client"; | |
| const gql = (strings, ...keys) => { | |
| if ( | |
| process.env.NODE_ENV === "test" || | |
| process.env.NODE_ENV === "production" | |
| ) { | |
| strings = strings.map((str) => | |
| str.replace(/\@client\s/gi, "").replace(/\s\@client/gi, ""), | |
| ); |
Python 3.11 is not available as apt package on debian raspbian bullseye so installing from source needed
updatepython2v11.sh can be used to compile python 3.11 on raspberry pi
installing packages like bcrypt and cryptography needs rust compiling so rust compiler needed if you don't do that you will get error liek this:
Building wheels for collected packages: bcrypt