NDH
NDH
DDeno
Created by NDH on 4/10/2024 in #help
Deno Clean
Is there documentation or a utility to completely remove Deno from a system?
If not, what directories must be purged?
6 replies
DDeno
Created by NDH on 8/10/2023 in #help
Kv encodes integer as double
Anyone know why Deno.kv encodes an integer in a mutli-part key as a double?
const key = ["int", 3]
encodes to: [2,105,110,116,0,33,192,8,0,0,0,0,0,0]
const key = ["int", 3]
encodes to: [2,105,110,116,0,33,192,8,0,0,0,0,0,0]
the - 33, 192, 8 above represents a Double (code 33 = Double) with value 3 It should encode to:
[2,105,110,116,0,21,3]
[2,105,110,116,0,21,3]
21, 3 represents (code 21 = integer) 3
13 replies
DDeno
Created by NDH on 2/15/2023 in #help
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
process.kill("SIGINT");
process.kill("SIGINT");
error: Uncaught PermissionDenied: Access is denied. (os error 5) process.kill("SIGINT");
12 replies