Colbyn

Results 12 issues of Colbyn

For lossy encoders theres usually some parameter controlling compression. Instead of using hardcoded settings, or manually tuning such, I’ve been working on a [tool that I call Imager](https://github.com/imager-io/imager) that tries...

enhancement
libimageflow

Optimized images should never be given to imager again. Trying to re-optimize the output again may lead to noticeable compression artifacts.

Why does the AWS docs instruct us to build our images using some "raw" file format? Why not just use e.g. VMDK which is significantly smaller (e.g. from 1GB to...

Any thoughts on compiling this to web assembly? Unlike most other CAS implementations that are tried to some high level runtime, this happens to be implemented in a language that...

Alright results are looking interesting I think ![Dy-b6Y3](https://user-images.githubusercontent.com/2118601/72675341-4f89c100-3a3f-11ea-8da8-d595c7a1f2c1.jpeg) ![Dy-b6Y3 debug](https://user-images.githubusercontent.com/2118601/72675335-41d43b80-3a3f-11ea-9bca-ae96d8b6bc0e.jpeg) Using this: ```rust pub fn preprocess(image: &DynamicImage) -> DynamicImage { // let image = image.resize_exact(700, 700, ::image::FilterType::Lanczos3); let image =...

I hope I’m not intruding or anything. I literally just discovered your project and it’s everything I’ve always wanted from Docker! :) Anyway if you’re ever looking for some inspiration...

VIA some minor tweaks I was able to get rust to build rust-skia for the `x86_64-apple-ios-macabi` target. But when I link it from Xcode, Xcode complains ``` ld: in lib/file.a(libskia.SkPaint.o),...

# TLDR I'm having issues with Catalyst and I suspect it's trying to build with IOS 15 SDK and I'm on **MacOS `11.6.4 `** (and therefore doesn't support it). If...

help wanted

This check in [build.rs](https://github.com/simlay/uikit-sys/blob/master/build.rs#L84) breaks my development tools. I.e. `!target.contains("apple-ios")` in: ```rust fn main() { let target = std::env::var("TARGET").unwrap(); if !target.contains("apple-ios") { panic!("uikit-sys requires the ios target"); } let directory...

Something like this doesn't work, ```rust #[derive(Debug, Clone, DisplayTree)] pub enum Html { Text(String), Element { tag: String, /// Can't use this `#[tree]` children: Vec, } } ``` I'm cloned...

enhancement