Zenroom icon indicating copy to clipboard operation
Zenroom copied to clipboard

Implement ULID creation and decoding

Open jaromil opened this issue 10 months ago • 1 comments

ULIDs are a base32 encoded variant of UUIDs (incompatible with them) which can be lexicographically sorted based on time of creation. The best C implementation I've found is this https://github.com/skeeto/ulid-c

It can be useful to have them in Zenroom and it will mean to also implement base32 encoding/decoding.

jaromil avatar May 07 '25 08:05 jaromil

What about also having a statement to create uuid? The simpler are uuid v4 that are completely random, but there can be intereset also in other uuid versions

matteo-cristino avatar May 23 '25 10:05 matteo-cristino

done

When I create a random ulid

jaromil avatar Oct 14 '25 04:10 jaromil