Results 59 comments of hatoo

This is because of the old `clap`'s behavior. in newer `oha` with version >= 0.5.0 (which has deps update for `clap`), you can run ``` > oha -H "foo: bar"...

Currently, `-d` option takes one argument and just set HTTP body. The command failed because it parsed `to=+25078xxxxxx` as body, `text="Hello"` as URL, and the rest as invalid arguments. ```...

I think it's good to provide immutable source archives. But I don't know how to do. Is it can be done by modifying GitHub Action settings? PR is more than...

https://github.com/rust-lang/rust-bindgen/blob/e24afad6a16b0940baadebc937be9461fdccdc0f/src/ir/function.rs#L270-L272 This condition seems not applicable in MSVC. Without this expression, it works fine in my environment (windows11 Microsoft Visual C++ 2019).

Sorry, I misunderstood. `bindgen` uses clang. I think it's the same issue with #1725. And the workaround works for me.

> Please give an example on how to use multiple POST apis for a test. `oha` doesn't support multiple targets. [drill](https://github.com/fcsonline/drill) maybe better to such a usecase. But you can...

Thanks for the issue! I think the correct URL for ipv6 would be `https://[fe80::5017:d7ff:feb8:a43e]%ve-local-arwyas` But it's not supported yet. You can run ``` oha --ipv6 https://[fe80::5017:d7ff:feb8:a43e]%ve-local-arwyas ``` in #182

It seems that it can be done by creating a custom TcpStream struct. https://github.com/lnx-search/rewrk/pull/6

After I added codes to my shader, it takes very longer time to compile. In [this commit](https://github.com/hatoo/rene/tree/bfcccbb661d97c80cb9783b847f4c802277fa769), it takes about 1000s. ``` Completed rene v0.1.0 build script (run) in 1009.6s...

I enabled `-Zself-profile` and build it and I found `rustc` is spending almost all time to link (`link_block_ordering_pass_and_mem2reg`). ## Procedure 1. Enable `-Zself-profile` on spirv-builder. It can be done by...