Julik Tarkhanov
Julik Tarkhanov
Thank you for exploring async in Ruby! We are currently looking at raising our throughput on our download servers (if you are curious there is a presentation about it here...
We are using email previews a lot, and we have many variations in our templates regarding model objects that participate in email rendering. Using the menus for raw/html/text and languages...
PNGs for instance can be indexed color or RGB or RGBA, TIFFs can be RGB, CMYK, Grayscale... and it would be great to have that information in the output.
With our fixtures id3tag raises an exception when addressing `Tag#genre` apparently. ``` 1) FormatParser::MP3Parser decodes and estimates duration for a CBR MP3 Failure/Error: value = tag.public_send(k) NoMethodError: undefined method `gsub'...
to prevent nasty display shenanigans and problems with JSON-encoding them
We have formats that parse ambiguously. For example, a Keynote document is a JPEG "at the head" and a ZIP with a specific structure "at the tail". A CR2 is...
We call parsers in succession, and a single parser failing should not, at least for most errors, lead to other parsers failing as well. We currently capture a tiny subset...
A good outline of the format is in http://www.openexr.com/openexrfilelayout.pdf
As mentioned https://twitter.com/mperham/status/952969180856205312 I must admit the idea does have some merit, although I am on the fence about having both retriable and non-retriable errors under one parent class -...
I started work on the streaming response bodies in https://github.com/toland/patron/tree/response-body-callback – using a Ruby callback to get the body data as it gets returned. However, the current API Patron has...