Results 398 comments of refi64

Clippy failure seems unrelated: ``` error: accessing first element with `responses.get(0)` Error: --> netlink-request/src/lib.rs:64:19 | 64 | match responses.get(0) { | ^^^^^^^^^^^^^^^^ help: try: `responses.first()` ```

oops sorry it looks like I completely missed the last comment :sweat_smile: thanks for pushing that update!

Deleting `/lib/firmware/ath10k/QCA9377/hw1.0/firmware-6.bin` from the `ROOT-A` partition fixed it for me.

FWIW this is a bit OT, but I have a very, very thorough userstyle for the link colors [here](https://userstyles.org/styles/139586/github-softer-blue-color).

Sorry the huge review delays! > I don't know how you handle the versioning of the aspen package, as there is no breaking change and only the README.md needed an...

I like this idea, *but* it wouldn't work, as the build system Dart uses has no way at the moment of running file globs like this. We *could* do something...

Hy doesn't have pattern matching as part of the core language.

I'm currently watching this repo 😁

Found out the *Error allocating memory* issue. Over in [infuncs.c](https://github.com/tonyfischetti/qstats/blob/master/src/infuncs.c#L87-L93) we have: ``` /* resize to not waste memory */ temp = realloc(build_array, size * sizeof(double)); if(temp == NULL){ free(build_array);...