▲ | sfkgtbor 2 days ago | |||||||
Very interesting to see another person also landing on using 4 base32 characters for labeling things - it really is enough for a human. Personally I use it for labeling physical things - mainly boxes. With a corresponding note in my Obsidian vault it really helps with getting content, context, and history about random stuff in my basement. Python oneliner for generating them I've aliased in my Bash config: python3 -c "import base64; import secrets; print(''.join(secrets.choice(base64._b32alphabet.decode()) for _ in range(4)))" | ||||||||
▲ | fastball 2 days ago | parent | next [-] | |||||||
The space has 1M IDs available, which sounds like enough until you take into account how the probability of collision works (birthday problem). With only 1200 notes (not many in my experience running a notes platform), your probability of collision is already about 50%. | ||||||||
| ||||||||
▲ | mungoman2 2 days ago | parent | prev [-] | |||||||
Interested as I have a basement full of stuff in questionable order. Could you explain a bit more? If a box in the basement box is marked with 4 emoticons, how does this help you understand content, context, history of it? | ||||||||
|