Results 10 issues of Hao Xiang

https://github.com/spf13/cast/blob/88075729b052bca4b8b6c31bf198db2fe6c9da93/caste.go#L81-L99 there only assert type `int`, no `int8`, `int16`, `int32`, `int64`, `uint` ... could we add these type case?

I want to use flatbuffers with mmap which manage the `Bytes` in `flatbuffers.Builder` https://github.com/google/flatbuffers/blob/0edb2752855c59aabd596a9fce8c8c39b733480a/go/builder.go#L8-L12 But it is not easy to recognize when to grow the `Bytes` when the generated code...

Just follow the [Tutorial](https://google.github.io/flatbuffers/flatbuffers_guide_tutorial.html). 1. schema from [monster.fbs](https://github.com/google/flatbuffers/blob/54418f371b76c604ca47ae954c3aef15920ea116/samples/monster.fbs) 2. use `flatc` to generate ```bash ❯ flatc --version flatc version 22.9.29 ❯ flatc --rust --gen-mutable --rust-serialize src/monster.fbs ``` 3. `Cargo.toml` ```toml...

## Steps to Reproduce (for bugs) ### code ```rust use actix_web::{post, web, App, HttpServer}; use serde::Deserialize; use log::warn; #[derive(Deserialize)] struct Info { name: String, } #[post("/")] async fn index(web::Form(form): web::Form)...

C-bug
needs-investigation
A-http

Now `DynamicTable` just is an alias of `ParsingTable`. https://github.com/cole14/rust-elf/blob/2d845d7f44f3c720140108124308c0c29835d357/src/dynamic.rs#L6 It does not implement any other method except `iter` to get `Dyn`. So is there a plan to add more methods...

after install, there isn't `Mermaid` in `Shapes` ![image](https://user-images.githubusercontent.com/8402502/186136703-552f66d8-048d-4e26-b34e-eed305e6c145.png)

similar as #818. but this allows different values for the same type. for example ```rust #[derive(Debug, serde::Deserialize, serde::Serialize)] struct TCP { #[serde(skip_serializing_when = true)] no_delay: bool, #[serde(skip_serializing_when = true)] keep_alive:...

> https://chromium.googlesource.com/chromium/src/+/refs/tags/104.0.5112.129/docs/native_relocations.md > > Relocations are stored in sections of type: REL, RELA, [APS2](https://chromium.googlesource.com/chromium/src/+/refs/tags/104.0.5112.129/docs/android_native_libraries.md#Packed-Relocations), or [RELR](https://reviews.llvm.org/D48247). - [x] [APS2](https://chromium.googlesource.com/chromium/src/+/refs/tags/104.0.5112.129/docs/android_native_libraries.md#Packed-Relocations) - [x] [RELR](https://reviews.llvm.org/D48247)

To fix [url pasted params parsed incorrectly](https://feedback.yaak.app/p/url-pasted-params-parsed-incorrectly)

For [delete the selected env](https://feedback.yaak.app/p/delete-the-selected-env)