wrobell
wrobell
@tomdl89 This is what I tried. I have installed `evil-cleverparens`, and run `evil-cleverparens-mode` using `M-x`. Emacs says the mode is enabled in current buffer. In the buffer I have ```...
So is that a bug, or I am doing something wrong?
It works. Have not realized it is so simple. Thanks.
> Do you mind if I ask for clarification about [tile usage policy](https://operations.osmfoundation.org/policies/tiles/)? > > Is "Maximum of 2 download connections" restriction set per URL? If so, using out-of-date URL...
Changing `setup.py` to use proper format character and setting `strides` to null in `pyrobuf_list_pyx.tmp` solves the issue.
I can confirm the issue. `setuptools` tries to read directory using first letter from `pyrobuf_modules`. You can set it to `'proto'` or `['proto']` and it will try to read `p`...
Thanks for all the information. I am not sure if you are aware, but GeoTiler support caching, example: https://wrobell.dcmod.org/geotiler/usage.html#caching. But there might be need for GeoTiler be smarter here, i.e....
This caches tile objects: https://github.com/wrobell/geotiler/blob/master/geotiler/cache.py. Tile object references existing image object. In theory, you just need a similar function to "redis_downloader" function in the cache module, and then use that...
Good point. I see the problem now. This is something to reconsider. Thanks.
@AlJohri @leftys Have you tried something like this ``` cursor = await conn.cursor(sql) while (data := await cursor.fetch(10 ** 5)): ... process data ... ``` With above I am able...