Cody Laeder

Results 12 comments of Cody Laeder

> `cargo fuzz init` should be run in the directory of your cargo project, not your cargo workspace I change directory within the example: ``` $ cargo fuzz init Error:...

@kpp If you read the entire linked issue this _always_ returned `Result::Ok(Async::NotReady)`. I'm streaming about ~100KiB/s of data into the UDP socket (about 500bytes per datagram) and it never _is...

I have recreated this issue with `consul connect`. The root cause appears to be `iptables` are rejecting my connections.

I also get this error while compiling `0.16.20` from AMD64-GNU-Linux for AMD64-MUSL-Linux. Setting `TARGET_CC` does not change the error received.

The lack of bitfield compatibility of Rust `struct`/`union` with C `struct`/`union` came up in a recent Usenix paper discussing the key challenges of the integrating Rust into the Linux Kernel....

Actually been attacking these problems on my own. I Currently have the rust implementation at ~7.06% faster than the reference C implementation. I hope to open a PR by sunday....

> Rust does not provide stable ABI, the only API we can rely on is Lua C API which is stable and consitent. Modules and the main app can be...

AFAIK this would only require moving the options that store client position & size to the profile data structure, instead of saving it globally on disk. I'm not sure if...

Symlinks & scripting are an easy work around, you read `$0` to see what your script was invoked as, then convert that into a parameter. For example ```shell $ cd...