Wonwoo Choi

Results 24 issues of Wonwoo Choi

- Code generation - [ ] Alias - [ ] Unboxed - [x] Enum - [ ] Record - [ ] Union - [ ] Primitive - [ ] Add...

typ:enhance
cmp:compiler
dfct:hard
target:rust

현재 표준에는 ㅂ+ㅎ 명령이 UTF-8 문자 하나를 읽는다고 적혀 있습니다. 하지만 Windows 명령 프롬프트에서 구현체를 실행하면 기본적으로 콘솔이 입력을 UTF-8이 아니라 현재 로캘대로 넘겨 주기 때문에(출력도 마찬가지입니다) 간단한 입력에도 리디렉션을...

~~I'm pretty sure this will fail with any input, it hanged up while reading header.~~ I forgot to `wake` and it's working now.

`async_h1::accept` panics with the following endpoint and request: ```rust |req| async move { let mut res = Response::new(StatusCode::Ok); res.set_body(req); Ok(res) } ``` ``` POST / HTTP/1.1 content-length: 0 ```

**Describe the bug** macOS build of djxl crashes when I try to extract metadata. ```console $ djxl image.jxl metadata.exif JPEG XL decoder v0.10.0 8e7dc5ef [NEON] zsh: trace trap ./djxl image.jxl...

bug
djxl
unrelated to 1.0

This code produces broken APNG without any errors: ```rust fn main() { use std::io::Write; let file = std::io::BufWriter::new(std::fs::File::create("out.png").unwrap()); let mut encoder = png::Encoder::new(file, 8, 8); // 8-bit grayscale, 2 frames...

hard

Maybe see how libjxl handles splines and adopt it.

optimization

Not sure how to SIMD-ify this; maybe port from libjxl?

help wanted
optimization