Philipp Gortan
Philipp Gortan
I ran into the same issue as @FirefighterBlu3. Seeing an inconsistent revision list which is incomplete, and to make things even funnier, changes when executed multiple times. That's bad -...
See also https://github.com/gentics/mesh/issues/981
To show the potential: changing the `Sheet.sheets` decorator from `@property` to `@cached_property` reduces the requests from 9 down to 3: * one from `open_spread` -> `open_by_url` * one from `open_spread`...
The old directory is re-created every time: ```sh rm -rf ~/.local/share/Nextcloud/ nextcloud & ls -d ~/.local/share/Nextcloud/ /home/.../.local/share/Nextcloud/ ``` and it contains a new log file for each sync target. I'm...
Hi @dr-leo , just out of curiosity: will pydantic as a whole be removed, or just the 1.x limitation? Asking because I'm currently thinking whether to start using pydantic in...
Thanks, miyagawa for posting these links - good to see that there've been quite some thoughts on this topic. For my understanding, setting RELEASE_TESTING in the context of shipit's DistTest...
Ah, true, the issue is caused by the % in the password!
Hmmm, after reading the documentation and through a few relevant pieces of the code, I wonder how maps are supposed to work at all: There is no projection specified in...
This line looks suspicious to me: https://github.com/apache/echarts/blob/master/src/coord/geo/Geo.ts#L38 It sets the default aspectScale for GeoJSONs to 0.75 - where does this magic value come from? If I change it (in the...
I checked what Python's geopandas is doing, and copied their algorithm cf https://github.com/geopandas/geopandas/blob/v0.10.2/geopandas/plotting.py#L390 - and now my map is perfectly shaped. 1. you need the bounding box of the GeoJSON....