alfechner
alfechner
I use Android File Transfer on Linux. I miss a way to automatically import all media files from my mobile to my computer without finding them myself. I'd like the...
I have MetaData entries stored on my server. MetaData identifies a value in the database, it's doesn't contain the value itself. A MetaData object holds a DataType, i.e. StringDataType, IntegerDataType....
I use the [--ignore-path](https://prettier.io/docs/en/cli.html#--ignore-path) argument and point it to an exhaustive `.gitignore` file. It's great that I don't have to duplicate the list of ignored files. However, there are a...
* `jest-dom` version: 3.1.2 * `node` version: v8.11.4 * `npm` version: 5.6.0 ### Relevant code or config: ```js test('toHaveFormValues', () => { const { getByTestId } = render( Sign in...
I used the [simple usage example](https://flask-cors.readthedocs.io/en/latest/#simple-usage) from the docs: ```python3 from flask import Flask from flask_cors import CORS app = Flask(__name__) CORS(app) @app.route("/") def helloWorld(): return "Hello, cross-origin-world!" app.run() ```...
The templates returned from `func templates list` are not valid as input for `func new`'s `--template` parameter. `func templates list --language dotnet` returns (amongst others) the template 'Azure Service Bus...
### Description I would like to stream a large file to my `AsyncApp`. My app is supposed to proxy the incoming bytes to another service. The goal is to reduce...
### Description I use `multipart/form-data` content type. The following spec works just fine: ``` openapi: 3.0.3 info: title: LIQUID Dataset Service version: 1.0.0 paths: /foo: post: x-openapi-router-controller: liquid_dataset_service.controllers.dataset_controller operationId: create_bar...
My service has an endpoint to check weather it's healthy or not. Spec: ```yaml /health: get: operationId: my_service.controllers.monitoring_controller.get_health security: [] description: Checks the health status of the service. Does not...
I need to stream the logs from my docker container for logging. Currently I do this: ```python stream = container.logs(stdout=True, stderr=True, stream=True) for line in stream: logger.info(line.decode("utf-8")) ``` Now I...