Skip to content

Instantly share code, notes, and snippets.

View reallyasi9's full-sized avatar
🐗

Phil Killewald reallyasi9

🐗
  • Greater Ann Arbor Area, Michigan, USA
View GitHub Profile
@atoponce
atoponce / description.md
Last active June 21, 2021 17:49
Playing card password generator

Playing Card Password Generator

Chris Wellons has done work here with Pokerware, building passphrases from a shuffled deck of cards. This builds using a sufficiently shuffled deck of playing cards, but building random meaningless password strings instead of passphrases.

This is a manual method of password generation without needing a computer. As such, some care must be taken during generation:

@gregjhogan
gregjhogan / random-string-generator.ps1
Last active February 6, 2024 13:39
Generate random string in powershell
#lowercase letters/numbers only
-join ((48..57) + (97..122) | Get-Random -Count 32 | % {[char]$_})
# all characters
-join ((33..126) | Get-Random -Count 32 | % {[char]$_})