[Alt'tiRi]

Results 159 comments of [Alt'tiRi]

There are some invisible characters in the site title - `‪Chen Ning Yang, 杨振宁‬ - ‪Google Scholar‬` The result file name is - `[scholar.google.com] 2021.09.30—_Chen Ning Yang, 杨振宁_ - _Google...

@mikf I think it makes sense to add at least a spoiler with step-by-step guide for windows users to the readme file. Currently it contains mostly useless https://pypi.org/, https://pip.pypa.io/en/stable/ links....

I have checked some blogspot URLs. It works as usual. But there is one thing, I think it makes sense to use `decodeURIComponent` on `{filename}`. For example, to convert `%28%26%29`...

There is a minor bug (with https://github.com/mikf/gallery-dl/commit/bdad9c40dd977e78820449460712ad675e52987f) in case when you use `"\t#"` and `" #"` in one line: ``` https://example.com/123 #not-followed #3d ^ \t is here ``` ``` gallery-dl:...

Well, it seems for me that `fixResponseChunkedTransferBadEnding` is not suited to work with keep-alive Agent at all. Since it relies on `'close'` event of Socket, however, there will no `'close'`...

Should say, since `fixResponseChunkedTransferBadEnding` is not suited for keep-alive Agent at all **this pull request makes sense.** Probably, even more than the other one. While https://github.com/node-fetch/node-fetch/pull/1474 fixes the memory leak,...

However, will it have any effect on the TCP connection? I think just setting the `Connection` header to `keep-alive` will not have real effect **on the connection** — it's not...

Also it think it should send (by default) `"accept-encoding": "gzip, deflate, br"` instead of `"accept-encoding": "gzip,deflate,br"`. Like it browsers do. They separate encoding with `", "`, not just with `","`....

Yes, when a user code iterates a `Header` object the iterator returns the headers in sorted order. But the inner state keeps the order in which the headers were added....

> https://support.code42.com/CrashPlan/6/Troubleshooting/Windows_file_paths_longer_than_255_characters It's thing for very special cases. By the way, node.js works in all cases fine from the box. Code ```js #!/usr/bin/env node const fs = require("fs").promises; const path...