Eugene
Eugene
  these got stuck after massive explosions. Gas inside a door seem to be a separate bug though
> Sometimes you do care about the reply values from commands within the pipeline and we need to provide a way to access those values. You can still get results...
Not relevant
slightly updated ascii art 
Unsure if `new_with_speed` works at all. I tried values 1 and 30 on multiple images both in debug and release modes, there is no difference in speed/resulting image quality at...
One of EdgeDB's goals is live migrations (from roadmap page), so async interface for `migrate` could be useful in some cases?
Any updates on this one? Looks like there is a working CLI migration functionality now. `edgedb migrate` is not interactive and can probably be easily implemented here. Or no? Does...
Quick and dirty temporary solution: ```python from typing import Any, Dict from edgedb import Object def edb_object_to_dict(obj: Object) -> Dict[str, Any]: # until https://github.com/edgedb/edgedb-python/issues/107 is resolved result = {} for...
Why you decided against asyncpg's approach where `Record` objects had all the nice methods attached? Using top-level function is less convenient.