Ted Mielczarek

Results 181 comments of Ted Mielczarek

FYI, while looking at the Microsoft source again (no thanks to you :wink:) I noted [this comment](https://github.com/Microsoft/microsoft-pdb/blob/082c5290e5aff028ae84e43affa8be717aa7af73/PDB/msf/msf.cpp#L57) about the "storing the stream table page list in a list of pages":...

Just ran across this again and wanted to drop a note about what I did to solve a similar issue in my `minidump` crate. I made the `Minidump` type generic...

FYI the first invocation comes from [`Rustc::new`](https://github.com/rust-lang/cargo/blob/f12d72e11b8643b4851a50325d77af962931fe98/src/cargo/util/rustc.rs#L34) which gets called via [`Config::load_global_rustc`](https://github.com/rust-lang/cargo/blob/c369b8c8d85a90579ab2f7fd0332701a9e9dc65b/src/cargo/util/config/mod.rs#L334). That codepath does use a cache in `target/.rustc_info.json`, so you could write a dummy file out there to...

After dealing with the last advisory causing a bunch of our PRs to fail I'm of the mind that advisory checks like these don't belong in regular CI. Perhaps if...

I work with @maltzj and I asked him about this failure and after poking around a bit it looks like the problem is that the list of argument encoders is...

Oh, sorry, that comment would be more useful on the PyMySQL project. It looks like this actually got fixed in freezegun 0.3.12: https://github.com/spulec/freezegun/commit/e9c46906fe7e96b243b1f7db1a49bcb9b3b60af4

I spent more time looking into this and the crux of the issue for us is that we're using `pytest-django` and that pytest plugin [configures django extremely early in the...

I was struggling to write a hook or fixture that fixed this and it turns out that my understanding of the problem was incomplete! The bit I missed was that...

You might also be interested in [`encoding_rs`](https://crates.io/crates/encoding_rs) which is currently shipping in Firefox.

I've found myself wondering occasionally whether we could make `scroll` work with `serde`'s trait system, and just implement it in terms of `Serializer` / `Deserializer` without making the performance significantly...