Nick
Nick
Very cool! Let me see if I can run the docker container and dig around it to find the issue with animations. I guess it’s also time for me to...
So after about 2 hours of debugging I finally traced it to a problem with text rendering. Converting SVG to `BufferedImage` (which is what the animations do via *Apache Batik*),...
> This could solve the issue: http://elliot.kroo.net/software/java/GifSequenceWriter/ Not sure I understand, doesn’t the problem have to do with the reader? Also scrimage already has a class like that, [I am...
Actually I am not sure if `ImageIO` is really needed :) base64 encoding can be done on the file itself (and the MIME type can be derived from the file...
Since this is closed, should I open a new issue for correct rendering of non-PNG images? Edit: I meant animated images, or anything else not fully supported by `ImageIO`.
I see, that makes a lot of sense. What about using typeclasses to distinguish safely traversable/mappable/... entities? One way would be to embed this functionality into `async` and provide the...
@lihaoyi I respectfully disagree :) Why would you put `doSomethingOnce` in a loop anyway?! I have used the `while` loop numerous times exclusively to await a sequence of futures one...
@lihaoyi Interesting! That’s an option for sure. P.S. Do you mean “who’d have thought it?”, or it’s a pun on a well-known programming concept? :)
That sounds plausible. What about this one? Is it because of the :-ending operator? ``` scala @ x(1 :: List(2, 3)) res4: String = ":: List(2, 3)" ```
``` scala @ x("a" +: Vector("b", "c")) res6: String = """ +: Vector("b", "c") """ @ x("a" +: Vector("b", "c") :+ "q") res7: String = """ "a" +: Vector("b", "c")...