Skip to content

Instantly share code, notes, and snippets.

View rmandvikar's full-sized avatar
🙄
il dolce far niente!

hippy rmandvikar

🙄
il dolce far niente!
  • ɥsıɹ, RM, Rish, Mandvikar
  • An'arctica
  • 16:28 (UTC +13:00)
View GitHub Profile
@rmandvikar
rmandvikar / .gitconfig
Last active April 8, 2017 23:16
.gitconfig
I moved the .gitconfig along with other files into below repo so that updates are easy as you can just fetch/pull.
https://github.com/rmandvikar/git-setup
@ygotthilf
ygotthilf / jwtRS256.sh
Last active May 8, 2024 10:31
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
@davidfowl
davidfowl / dotnetlayout.md
Last active May 8, 2024 07:49
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@earthgecko
earthgecko / bash.generate.random.alphanumeric.string.sh
Last active April 2, 2024 15:59
shell/bash generate random alphanumeric string
#!/bin/bash
# bash generate random alphanumeric string
#
# bash generate random 32 character alphanumeric string (upper and lowercase) and
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
# bash generate random 32 character alphanumeric string (lowercase only)
cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1