Results 48 comments of Eugene

![image](https://user-images.githubusercontent.com/22667809/133289968-6cd81952-2157-4f50-abff-9f5e59d8fca9.png) ![image](https://user-images.githubusercontent.com/22667809/133290021-c6aa856d-4701-4dd1-a46a-3fcea9749503.png) 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...

slightly updated ascii art ![Screenshot_20220110-003903_Termux](https://user-images.githubusercontent.com/22667809/148702067-45cee29d-ebc8-4aa4-91e6-8723bb18821a.png)

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.