jtoppine
jtoppine
According to types.ts and lib.js, toBuffer() should accept type argument and support "image/png" as well as "image/jpeg". However, a PNG image is created even if "image/jpeg" is specified. PNG's can...
Many mongodb drivers implement a reconnect for when a connection to remote server is dropped. This is needed for any long standing use, like on servers to recover from any...
Version: Deno 1.39.0 / Linux From `Deno.ChildProcess.unref()` docs: Ensure that the status of the child process does not block the Deno process from exiting. This seems to work in case...
Okay this is pretty hard to get a reproduction as this happens intermittently / randomly. But it seems the following code sometimes never returns control to the main thread. Throws...
Library outputting to the console is undesireable in most cases. In cluster.ts, the close function looks like this: ``` close() { for (const conn of this.#connections) { try { conn.close();...
In Deno, `vips.Image.newFromBuffer(buffer)` works well! But opening local files directly for example `vips.Image.newFromFile('sample.jpg')` always complains: ``` error: vips::Error: unable to load from file sample.jpg VipsForeignLoad: file "sample.jpg" does not exist...
Starting with Deno 1.40, deno prints out a lot of warnings about the use of deprecated APIs in sqlite module. Below is a sample of the warnings (I removed some...
Since Deno 1.22.3 started having these errors very frequently. Also happens on the latest version 1.23.0 ``` Error: connect timer should not be timing out in connected state at Client.connectTimedOut...
Signout function here only deletes the session locally on the server, but does not actually revoke the authentication with the provider: https://github.com/denoland/deno_kv_oauth/blob/main/lib/sign_out.ts This causes browser to remember earlier credentials even...
Version: Deno 1.45.2 This works in Deno CLI, but VSCode (or LSP) does not recognize the std/exists import: deno.json ``` { "importMap": "./import_map.json" } ``` import_map.json ``` { "imports": {...