James C.

Results 7 issues of James C.

Passing an `ImageBuffer` to a `JpegEncoder` and encoding it as `ColorType::Rgba8` causes an internal panic. Code to reproduce: ```rust use image::{DynamicImage, jpeg::JpegEncoder, ColorType}; fn main() { let image = DynamicImage::new_rgb8(10,...

Might be an easily answered question if I looked harder, but is it possible to take a raw RGBA buffer and pass it to ImageMagick using this crate? I imagine...

Attempting to search for bots on the website with any search query results in all listed bots displaying their guild count as zero. I have observed this behaviour on both...

As it stands, the current format of the analytics graphs leaves much to be desired. ![image](https://user-images.githubusercontent.com/40544507/144536546-3ddb4ba3-14c7-419e-8c5d-deb988c8fd4f.png) Some issues I've had with them: - Both axes have no grid, making it...

Fixes https://github.com/rust-lang/rust-clippy/issues/11858 Adds a new lint which checks for an if-conditional which checks if a sequence is not empty (`!seq.is_empty()`) and, in the body of the if statement, accesses the...

S-waiting-on-review

Fixes https://github.com/rust-lang/rust-clippy/issues/12163 I decided to initially make this a restriction lint because it felt a bit niche and opinionated to be a warn-by-default style lint. It may be appropriate as...

S-waiting-on-review

Closes https://github.com/rust-lang/rust-clippy/issues/10118 This lint checks `map_or` method calls to check if they can be consolidated down to something simpler and/or more readable. For example, the code ```rs let x =...

S-waiting-on-review