Skip to content

Instantly share code, notes, and snippets.

View richardstrnad's full-sized avatar
💭
💻 Coding

Richard Strnad richardstrnad

💭
💻 Coding
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 27, 2024 19:57
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@ygotthilf
ygotthilf / jwtRS256.sh
Last active July 26, 2024 08:54
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub