Fifth-Normal-Form
Kv encodes integer as double
Anyone know why Deno.kv encodes an integer in a mutli-part key as a double?
the - 33, 192, 8 above represents a Double
(code 33 = Double) with value 3
It should encode to:
21, 3 represents (code 21 = integer) 3
13 replies
Run examples on Windows
Anyone know how to run the
Piping to files
example on Windows?
https://deno.land/manual@v1.30.3/examples/subprocess
'yes' is ignored, and I get a final error for the kill request
error: Uncaught PermissionDenied: Access is denied. (os error 5)
process.kill("SIGINT");12 replies