Titusz

Results 44 comments of Titusz

This would be much more efficient. The problem with regular cron-execution channels are often being depleted before the fees are adjusted to the new balance. Routing event based execution would...

The ISCC project is working on a decentralized content declaration protocol and a schema for declaration metadata that is a superset of schema.org and NFT Metadata. See https://schema.iscc.codes/schema/

Hmmm. Maybe I can just skip using the decorator alltogether and simply check if `queryset` really is a QuerySet?

For int53 overflows it would help to use a more strict JSON encoder. For example with https://github.com/ijl/orjson you get: ```python import orjson orjson.dumps(2**53, option=orjson.OPT_STRICT_INTEGER) Traceback (most recent call last): File...

Just had a look at https://datatracker.ietf.org/doc/html/rfc8785#appendix-B I guess for canonical round-trip support in python it would need a custom `json.JSONEncoder` and `json.JSONDecoder` implementation.

The python implementation does not seem to throw an exception for 2**600 ``` >>> canonicalize(2**600) b'4.149515568880993e+180' ``` I think generally it would be good practice to throw an exception if...

Ok, I see it is tricky. Yes an integer specific test would be welcome. Off-Topic: I was also looking into CBOR lately and I liked what I saw. The specification...

Thank you for the detailed report. This seems to be an issue with the content-type detection, which is currently done with Apache Tika. This will change with the next release...

This relates to: https://github.com/iscc/iscc-specs/issues/83

For example decoding an "illegal" component code like 'decode("1HUg6wnerR9jP")' should raise an error.