Results 9 comments of Jan Eil

I think so too. But sadly [prettier-plugin-toml](https://github.com/un-ts/toml-tools/tree/master/packages/prettier-plugin-toml) is "still in alpha state". There are no configuration options, nor the possibilty to add an inline ignore... Maybe we should open up...

I created an [issue](https://github.com/un-ts/toml-tools/issues/79) for ignoring lines.

I used the workaround described in the [issue](https://github.com/un-ts/toml-tools/issues/79) to at least ignore the one instance, where multiline would be nicer.

A `@pytest.mark` would great for that purpose!

That's especially annoying since it's only the case for [R4B](https://github.com/nazrulworld/fhir.resources/blob/7.1.0/fhir/resources/R4B/element.py#L45), not for [DSTU2](https://github.com/nazrulworld/fhir.resources/blob/7.1.0/fhir/resources/DSTU2/element.py#L30), [STU3](https://github.com/nazrulworld/fhir.resources/blob/7.1.0/fhir/resources/STU3/element.py#L46) or [R5](https://github.com/nazrulworld/fhir.resources/blob/7.1.0/fhir/resources/element.py#L43). The [FHIR definition for Elements](https://www.hl7.org/fhir/r4b/element-definitions.html#def) states, that `Element.id` is a string in all versions.

I took the liberty to create a separate PR #165 for 7.x.x as it should be fixed in both 7.x.x and main, but the commits differ slightly.

I realized that video compression is quite strong, when not using chunks. Here is a screenshot from a 30s 4k (mkv) video of a football game, zoomed way in on...

You can download the video [here](https://storage.googleapis.com/sw-sc-de-shared/113201/panorama/4k%20113201%200%3A55%3A30-0%3A56%3A00.mkv). Thanks for looking into it!

Setting the bind-host to 0.0.0.0 worked for me. ```yaml services: flink-jobmanager: image: bitnami/flink:1.17.1 ports: - "8081:8081" expose: - "6123" environment: FLINK_MODE: jobmanager FLINK_CFG_REST_PORT: 8081 FLINK_PROPERTIES: | jobmanager.rpc.address: flink-jobmanager rest.bind-address: 0.0.0.0...