LiosK
LiosK
I don't see a real reason to change the variant bits to develop a time-ordered UUID format. Implementing a UUIDv7 generator is an easy job that can be done by...
Makes sense. My concern is addressed. I am yet to be convinced that the variant bit change is necessary because the simplicity that will be achieved sounds trivial to me,...
> My main concern is that this starts to populate the 0b111 variant space, which I'd rather avoid. Agreed, but the actual downside should be acceptable because future definitions can...
A classic linear search using a sentinel value: ```javascript /** Returns the largest k that satisfies sortedHaystack[k] < needle. */ const lookup1 = (needle, sortedHaystack) => { // Append MAX...
I agree that it should generally be encouraged to entirely randomize some (say, 16 or 32 bits) trailing bits at every generation to ensure some levels of unpredictability, rather than...
I feel the current content of Monotonicity and Counters section to be a little bit confusing. It's basically very permissive, so personally I feel okay with this because almost everything...
I don't really have an opinion about naming, but I have a question: is Omni a _right_ word and word form in Latin for use as an antonym of Nil?...
Common JS entry point is not provided. You have to configure your ts-node to use ES Modules.