Christian M

Results 12 comments of Christian M

Same problem when I run the example: ```bash examples/image-rs$ cargo run IMG_0818.JPG out.jpg examples/image-rs$ exif out.jpg Corrupt data The data provided does not follow the specification. ExifLoader: The data supplied...

Hi, thank you for the response. Libexif could make a fix, I can read the exif data in the images now. It looks like the image data is stored before...

Cargo.toml ```toml [dependencies] wifi-rs = { git = "https://github.com/tnkemdilim/wifi-rs.git" } ```

I've already created some cmake projects based on this cmake template (https://github.com/cginternals/cmake-init) which also has packaging for deb and rpm. Let me know if I can help anyhow.

I plan to provide to config as strings, not as file. For my own I would run the event loop in my own thread, but for convenience the library should...

"vue-loader": "16.5" works for me. "vue-loader": "16.6" failes: ``` [tsl] ERROR in /src/views/About.vue.ts(3,22) TS7006: Parameter 'n' implicitly has an 'any' type. ```

You can read here how to start unsigned DMGs: https://github.com/create-dmg/create-dmg/issues/52#issuecomment-377878026

Is there a way to configure the 'compact' mode for arrays? In Version 3.14 I get ```yaml array: - object: 1 name: O1 - object: 2 name: O2 ``` but...

A workaround is to change headers host in proxy: ```javascript const express = require('express') const proxy = require('express-http-proxy') const app = express() ... app.use(/^\/api|auth\//, proxy(`http://${backendHost}:${backendPort}`, { proxyReqOptDecorator: function(proxyReqOpts, srcReq) {...

I think that should be used as an intermediate container like it is with node. ``` FROM flask-unchained USER root COPY .requirements.txt requirements.txt RUN pip install -r requirements.txt COPY requirements-dev.txt...