Results 78 issues of Jacob Lifshay

the mcc encoder currently tries to use 8 bits split across two bytes, which is incorrect. the correct way to handle it is to use a 16-bit counter: https://github.com/CCExtractor/ccextractor/blob/81fdecd5af683ff25b953339fdb0d84e141d60c1/src/lib_ccx/ccx_encoders_mcc.c#L326-L334 according...

I got it to cross compile from Debian 12 using Autotools. I ended up deciding to just disable UDP support on Windows, since I don't need it and it's a...

https://github.com/stoth68000/libklvanc/blob/b409fc2b0b8051c871f89367a3489f8aa2b6ed37/src/core-lines.c#L177-L184 they should be set to `NULL`/`0` respectively.

I'm using `hashbrown`, but unlike the `std` wrapper types, lldb doesn't have support for `hashbrown`'s `HashMap`/`HashSet`, which makes it very difficult to see what values are stored through the debugger.

[Thread on Zulip](https://rust-lang.zulipchat.com/#narrow/channel/346005-t-style/topic/expression.20attributes.20on.20stable/with/560731759) Some code I'm working on right now that ends up with terrible formatting when using rustfmt on stable: (note the code is in an attribute macro, so...

I-style-nominated

# Proposal ## Problem statement Sometimes it's useful to be able to create empty iterators without needing to first obtain an empty container to then iterate over, some of the...

T-libs-api
api-change-proposal

I'm trying to use `which`, but it errors: ``` error: unsupported operation: can't call foreign function `access` on OS `linux` --> /home/jacob/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.31/src/backend/libc/fs/syscalls.rs:723:18 | 723 | unsafe { ret(c::access(c_str(path), access.bits())) }...

C-enhancement
A-shims
A-linux

I think it would be a good idea to standardise on if the file-system APIs should be case-sensitive or not and to what extent implementations should enforce case-sensitive/insensitive file-system access...

P-filesystem