heri16
heri16
Benchmarking (perf-test.cpp) could become cross-platform (Windows, macOS, Linux, BSD) with something like: https://github.com/chronoxor/CppBenchmark
Now that we have #45 ... Is it viable to remove Boost as a dependency and just use the Non-boost version of ASIO? https://think-async.com/Asio/AsioStandalone.html
Where can documentation or examples on process linking/monitoring be found?
Some IKEv1 NAT-T implementations on hardware are buggy. Allow an easy way to disable sending of nat capabilities to allow charon to work with these implementations.
### Is your feature request related to a problem? Please describe Elixir is one of the most loved programming languages according to the 2022 Stack overflow Developer survey: https://survey.stackoverflow.co/2022/#section-most-loved-dreaded-and-wanted-programming-scripting-and-markup-languages The...
**Describe the bug** https://github.com/MetaMask/metamask-extension/issues/11308 When performing a Signed transaction using signTypedData an error is thrown. This includes when passing ChainID as an INT, a HEX, a BigNumber. This issue has...
Would Cowboy be supporting HTTP/3 or QUIC? Would there be an API to send/receive a raw multiplexed stream, or would [WebTransport](https://web.dev/webtransport/) (modern Websocket) be supported? Would the implementation be pure...
Found an issue while using tenacity. For a wrapped function that receive a generator as arguments, the generator is not rewound before each retry attempt, causing subsequent attempts to skip....
Many users might need to use traditional blocking libraries within their new asyncio projects or frameworks (e.g. uvloop, Sanic, aiohttp, aiosmtpd). Provide a conveinience method for shortening the below within...
Could we support retry for Synchronous Generator? ```python import random from tenacity import retry @retry def ticker(to): """Yield numbers from 0 to `to`.""" for i in range(to): if random.randint(0, 10)...