Alt

Results 237 comments of Alt

As I expected, with the streaming: - [the memory consuming **is x2 and more times optimised**](https://github.com/Tampermonkey/tampermonkey/issues/1278#issuecomment-1005344682) - [SSD\* consuming (data writing) is double less](https://github.com/Tampermonkey/tampermonkey/issues/1278#issuecomment-1005376246) (there is no blob flushing to...

Well, qView 5.0 is not just slow, it's legendary slow. An image in a directory with 30k of files was not opened even in 4 minutes (then I just killed...

Also I can say that preloading/caching of the adjacent images is not working, while I see in the repo [a code for that](https://github.com/jurplel/qView/blob/eee6b693e3694876950bada0d47756803b2aed14/src/qvimagecore.cpp#L340-L416) and it is enabled by default in...

**2** and **3** are obviously bugs. For **1**, for me: - Either add a way to remove the default headers, ~for example, by setting its value to null (not "null")....

So, what about `"sec-fetch-mode"`? It's a pure browser's thing, like CORS. Why Node.js aimed `undici` uses it by default (and there is no way to disable it)? --- > Why...

> You can disable the keep-alive header by disabling keep-alive and the other headers Wait. Could you show me the example?

> setGlobalDispatcher(new Agent({ pipelining: 0 })) It just changes `connection: keep-alive` to `connection: close`. It does not remove any default header. --- > neither does Chrome. As I already said,...

[ModHeader](https://chrome.google.com/webstore/detail/modheader/idgpnmonknjnojddfkpgkljpfnnfcklj) allows to edit and **remove entirely** any header (except `"host"`, `"connection"`, `"cache-control"` (on a page reload), `"pragma"` (on "Disable cache" with DevTools)). --- > fetch is a browser API....

Yeah, I also would like if Node.js have some permission list in `package.json` like it is in Web Extensions, Android Applications: [My comment in the topic about the recent `RIAEvangelist/node-ipc`...

I don't know about Cloudflare Workers, but Deno's `fetch` default headers are: ``` accept: */* user-agent: Deno/1.20.3 accept-encoding: gzip, br host: 127.0.0.1:3000 ``` That's all. That looks fine. Need additional...