He Li
He Li
When we are trying to spawn a memory costy task with async-std `async_std::task::spawn(some_future())` It throws `thread 'async-std/runtime' has overflowed its stack` Although we can solve this problem with the following...
This code: ```css .platforms { margin: auto; } ``` In my neovim, it displayed like this:  I'm not sure if this issue is caused by coc-svelte, here is my...
如题,`ghproxy.com` 提供的服务比 `download.fastgit.org` 更加稳定快速,也许可以考虑在默认配置中替换掉? 手动替换只需要修改如下配置: ```json "/.*/.*/releases/download/": { "redirect": "download.fastgit.org" } ``` 更改为: ```json "/.*/.*/releases/download/": { "redirect": "ghproxy.com/https://github.com/" } ```
无法解析 `--range 1` 类似格式
I'm using a system proxy to accelerate my network access. However, I find out that degit-rs can not recognize my global proxy settings.
Environment: Firefox 124.0 on Linux. When [Ruffle extension](https://addons.mozilla.org/en-US/firefox/addon/ruffle_rs/) is installed, it will replace `navigator.plugins` and `navigator.mimeTypes`, resulting in false positives of two related tests. 
- Created the `goldberg_include_str!` macro. Behaves like the built-in `include_str!` macro. - Currently the path is relative to the building working directory (Usually where `Cargo.toml` is placed). - I might...
When meet an unknown error, return a Result::Err instead of panic
I'm using `wpcap` as backend. My program uses multithreading to send packets, but it panics when the rate is fast. ``` thread '' panicked at 'assertion failed: `(left == right)`...