Edwin Amsler
Edwin Amsler
Here's a bit of a silly workaround. Create a '[.cargo/config.toml](https://doc.rust-lang.org/cargo/reference/config.html)' file at the root of your workspace and set this as an environment variable: ``` [env] CARGO_WORKSPACE_DIR = { value...
Seems good to me! I’d also like the tablify some sections (like the WIP list), but I’m not sure when I’ll be able to get around to it.
Exhuming this thread from the dead, I do think removing the badges is a good plan. @japaric what was the original reason to add them? They’re neat but was there...
> vastly smaller Depends on the resolution of the *rendered* image. A one pixel bitmap beats them all. It could be the browser implementation of parsing and walking a new...
Really?! Can you open your browsers profiler, disable caching (both FF and Chrome support this) and check the networking timeline? Update: I just did it myself (for science!) and you're...
Just some quick notes here, it looks like following is what Linux does with I2C_RDWR and might be a great way to go if we're okay implementing a fallback if...
Well, the i2c calls in Linux just take pointers to memory. I have a quick test I’m dabbling with to see. Because we need to stick to the common denominators...
I’m glad you guys are keen to help here! Should be better for everyone once we’re done. I like this builder pattern plan. I’ve [pushed some (pretty broken) attempts](https://github.com/RandomInsano/i2c_experiments/blob/master/src/lib.rs) to...
A little update: After banging on it a few hours I’m stuck on getting the ioctl to play ball. I’ll reach out to the resident master of these things @posborne.
I'm back after yet more head bashing. I got stuck on [a weird drop problem](https://github.com/rust-lang/rust/issues/54494), but my [weird little POC](https://github.com/RandomInsano/i2c_experiments/blob/master/src/lib.rs) is working and there are no memory copies in userland....