Nikita Ofitserov

Results 27 comments of Nikita Ofitserov

Maybe the code could be extended to try [smaps_rollup](https://marc.info/?l=linux-mm&m=150250453624272&w=2) if available (in kernel since 4.14)? The format is exactly the same, just less data to parse.

No, the application has already received the `KeyboardInterrupt` (by awaiting the job future), and is in the process of graceful shutdown (in the exception handler). In the process of the...

The last line from the test case I provided outputs `0 `, so while the bug is fixed, it changes the semantics of `BoundKey`: ``` >>> inj.get(BoundKey(A, a=1)) 0 1...

It is even more confusing when using subclass auto-discovery: ``` class Base(Model): @classmethod def _claim_polymorphic(...): ... class Sub1(Base): ... class Sub2(Base): ... Poly = PolyModelType(Base) ``` In this case, `Sub1`...

For example, see stdlib logging [dictionary configuration](https://docs.python.org/3.5/library/logging.config.html#logging-config-dictschema) schema. Logging handler schema is this: ``` The configuring dict is searched for the following keys: class (mandatory). This is the fully qualified...

Thank you for telling me about `pyarrow_array_to_numpy_and_mask` and `__from_arrow__`, I totally missed them! I must admit I did not think much about the Python code overhead while trying to ensure...

This change should fix the practical issue, allowing to use the API with large files. But I still think that the API does not really match the JS from the...

Thanks for those alternate references! Just to be clear, the implementations I provided **are** what most people would call LUT-based, only the LUT is so small that it is encoded...

> Can you create your own repository or NPM/Python packages for these functions? That would make it more applicable than just in PMTiles implementations. Yes, that could also be useful,...

I think that would depend on whether the "geo" metadata would be made optional in the specification (that is, if any other parquet file would be a valid GeoParquet file,...