msoxzw

Results 11 issues of msoxzw

Firstly, I appreciate your excellent AAC encoder. As far as I know, one work-around for getting DLLs in the new installer is as follows: ``` msiexec /a iTunes64.msi /q TARGETDIR={Directory}...

Related to https://github.com/benbusby/whoogle-search/issues/544 Current [searX Google engine](https://github.com/searx/searx/blob/master/searx/engines/google.py) maps country to Google country specific domain, but it needs manual maintenance and has some edge cases. In a addition, this method does...

enhancement

According to [RFC 9250](https://datatracker.ietf.org/doc/rfc9250/), ``` Using 0-RTT for DoQ has many compelling advantages. Clients can establish connections and send queries without incurring a connection delay. Servers can thus negotiate low...

enhancement

It is very strange for aioquic to take at least 500 ms to complete handshake, and the following code to illustrate this issue. python [examples/http3_client.py](https://github.com/aiortc/aioquic/blob/main/examples/http3_client.py) -v https://doh3.dns.nextdns.io/info ``` examples/http3_client.py:528: DeprecationWarning:...

The speed of QUIC on Windows is more than 10 times faster when transferring a large file, e.g. 64 MiB. Test file: https://gist.github.com/msoxzw/290cca70170ea9f6082c153ce391eb47 https://gist.github.com/msoxzw/567b747e70e2bb69d52586680f0c3a78 Rational: [`loop.time()`]( https://github.com/python/cpython/blob/f8dc6186d1857a19edd182277a9d78e6d6cc3787/Lib/asyncio/base_events.py#L697-705) calls `time.monotonic()`, but...

[The bindgen automatically generates Rust FFI bindings to C and C++ libraries.](https://rust-lang.github.io/rust-bindgen/) Therefore, ngtcp2, nghttp3, and even nghttp2 could support Rust with little maintenance burdens, and further, would be published...

@wcawijngaards, I really appreciate your current work on [DNS over QUIC](https://github.com/NLnetLabs/unbound/tree/dnsoverquic). **Current behavior** It seems that the DNS over QUIC under development has not supported NEW TOKEN: [`recv_new_token`](https://nghttp2.org/ngtcp2/types.html#c.ngtcp2_callbacks.recv_new_token) has not...

@Elizaveta239 I seem to solve the [problem](https://youtrack.jetbrains.com/issue/PY-14631) Could you help me examine if this PR indeed makes PyCharm load IPython config flie and possibly break other things?

The maximum idle timeout in neqo used by Firefox is [30 seonds](https://github.com/mozilla/neqo/blob/07c2019988a8f0a37f87cbd90f95e906e7b53258/neqo-transport/src/connection/params.rs#L29), eclipsed by [600 seconds]( https://github.com/google/quiche/blob/1fdac9bdbf85d27537e8ce47ca4f1eaa034f1ff5/quiche/quic/core/quic_constants.h#L152) in quiche used by Chrome. Considering remote servers, https://www.cloudflare.com/ is 180 seconds, and...