Cotton Hou
Cotton Hou
Any thoughts on adding non-cryptographic hashes? e.g.: - CRC32 - Murmur3 - xxHash - City - etc...
In general non-cryptographic hashes give synchronize call which widely applicable. `CRC32` is good for quick integrity check. Both `Murmur3` and `xxHash` commonly used in **Bloom Filter**, however existing widely used...
Btw, I'm currently settle on `fnv1a` as alternative to `Murmur3`, changeable via: - **npm:@sindresorhus/fnv1a** - **jsr:@std/crypto** `crypto.subtle.digestSync('FNV32A')`
I have used this esbuild plugin to do the extra refinement: ```js const esbuild_plugin = { name: 'hotfix', setup (build) { build.onResolve({ filter: /^jsr:/ }, ({ path, kind, resolveDir })...
I think the cause would be `readline.createInterface` now requires `--allow-env=TERM`. Is this an oversight or mandatory change on permissions?
I think slow types is OK-ish for just publish with `--allow-slow-types` if it cost too much of effort. Flow-wise, I think it'd be done by: - having one corresponding `jsr.json`...
Thanks for making this happen. I really appreciate all the effort that went into it. I noticed that `jsr:@hono/valibot-validator` currently depends on `npm:valibot`. Would it be possible to switch the...
Please checkout the draft in diff below: ```diff diff --git a/crypto/totp.ts b/crypto/totp.ts index e9f6f5a..6742c75 100644 --- a/crypto/totp.ts +++ b/crypto/totp.ts @@ -12,11 +12,11 @@ * * @example * ```ts - *...
Hey, shall I close the ticket if it's not ideal to your current aiming? I don't want to put too much of maintaining labor to you since I can get...
Got it, this is low priority to me, nothing urgent as well.