Ted Mielczarek
Ted Mielczarek
> @luser yea i think about this sometimes, not sure what it would mean or look like? Do you have any ideas on that front? I assume it would be...
> `scroll` [implements `IntoCtx`](https://docs.rs/scroll/0.9.2/scroll/ctx/trait.IntoCtx.html#foreign-impls) and [`TryIntoCtx`](https://docs.rs/scroll/0.9.2/scroll/ctx/trait.IntoCtx.html#foreign-impls) on borrowed primitive types, suggesting that `[Try]IntoCtx` needn't consume its value after all. I added those in https://github.com/m4b/scroll/pull/35 in service of https://github.com/m4b/scroll_derive/pull/17. I think...
I agree that `#[repr(packed)]` is unnecessary for scroll usage and we should advise against it. I was originally using packed and transmuting bytes in my minidump crate, but I removed...
Here's a simple example project that demonstrates the error: https://github.com/luser/scroll-derive-struct-array . I hit this in practice trying to convert my [minidump](https://github.com/luser/rust-minidump) crate to use scroll. [The `MDXmmSaveArea32AMD64` struct](https://github.com/luser/rust-minidump/blob/db4a828873d68f513261d285d274feb9febc9733/minidump-common/src/format.rs#L159) contains arrays...
I actually got myself unstuck on this by switching to `u128` for those arrays, hence my other PR. I think it still makes sense to fix this at some point,...
I tried using this to capture Fn+Space (I bought a new keyboard that has a "Microphone" key that sends that combo.) and similarly wasn't able to: ```swift let hotKey =...
I'd also love to have a solution for this that's more lightweight than "implement an entire pytest plugin". We're running into an issue [where using `freezegun` in our tests breaks...
I think Apple's libc bits are all BSD licensed. It can be hard to tease out exactly what's what on their open source site, but libc is definitely there: http://opensource.apple.com/source/Libc/Libc-1082.20.4/...
I'm possibly interested in working on this. I'm one of the authors of the W3C Gamepad API spec, and I wrote most of the Gamepad API implementation in Firefox. I've...
One thing that's bothering me right now about the code in Piston is the terminology--nobody calls game controllers "Joysticks" anymore. :) When I wrote the first prototype implementation of the...