Tobias Zwick

Results 931 comments of Tobias Zwick

Definitely not always. Very (very?) rarely. So I guess it must be a race condition of sorts.

The library does not actually parse the json into the necessary data structure, you need to do that part yourself. The reason is so that the library doesn't have any...

> 1 I am not sure if I understand this. So the connection state can go back from `CONNECTED` to `CONNECTING`, when` connect()` is called a second tiime? Are you...

Okay, thank you for the advise and analysis :-)

Just a comment on the side: I think the reason why smartphones nowadays get a GPS fix so quickly is because Google does not only use [Assisted GPS](https://en.wikipedia.org/wiki/Assisted_GPS) with cell...

Do you mean that `AR_AVAILABILITY_UNKNOWN_CHECKING` will be returned forever in this case? That means that on a device on which the user is not logged in to Google, the application...

Any idea how [Him188/yamlkt](https://github.com/Him188/yamlkt) does it? According to https://github.com/Kotlin/kotlinx.serialization/tree/master/formats#yaml-multiplatform it is YAML multiplatform but looking through their build config, I haven't found any hint of what they are using as...

@sschuberth I partly agree. I think the best approach would be to have a pure Kotlin YAML parser and separately from that, a YAML plugin for kotlinx-serialization that uses that...

You might be interested in some of the data in https://github.com/streetcomplete/StreetComplete/tree/master/res/country_metadata , e.g. https://github.com/streetcomplete/StreetComplete/blob/master/res/country_metadata/hasDailyAlternateSideParkingSign.yml https://github.com/streetcomplete/StreetComplete/blob/master/res/country_metadata/hasNoStandingSign.yml https://github.com/streetcomplete/StreetComplete/blob/master/res/country_metadata/noParkingLineStyle.yml https://github.com/streetcomplete/StreetComplete/blob/master/res/country_metadata/noStoppingSignStyle.yml etc.

Well, another idea here: Instead of always also matching against the en-US default localization, instead match against the **tag value**. E.g. if you type "parking", it will **also** find `amenity=parking`...