Marcel Stör
Marcel Stör
Thanks for the feedback. > Obviously hikaku should list all endpoints which are actually offered There's no way it would know _for sure_. It has access to my code but...
@HHHartmann did you mean to tag @marcoskirsch rather than me?
> ADS-B Exchange no longer provide free keys to feeders Thanks but what? Do you have a link to the respective announcement/post/etc.? Why should I continue feeding them if I...
The min / max is actually "broken" (our opinion) in the OWM API, see #172.
Looks like I misinterpreted the issue at first.
> is there any accounting for the 'TZ' offset I wondered as well the other day. [`gmtime`](https://www.cplusplus.com/reference/ctime/gmtime/) returns UTC.
Maybe there's both a conceptual and a coding problem (not sure, haven't been around this code for a while). With https://github.com/ThingPulse/esp8266-weather-station/blob/master/examples/OpenWeatherMapForecastDemo/OpenWeatherMapForecastDemo.ino#L101-L102 ```c++ uint8_t allowedHours[] = {0,12}; client.setAllowedHours(allowedHours, 2); ``` you're...
I looked into this again today. It's complicated I'm afraid and I don't see a satisfactory solution. Below is a kind-of note to self so I don't have to start...
According to https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#composition-and-inheritance-polymorphism it is expected(?) that you use `allOf` to compose something out of a `$ref` object and an "anonymous" local object.
I appreciate your feedback. > The bundle command replaces _one_ `$ref` to a particular value with the value itself, and then replaces all _other_ `$refs` to that same value with...