Joaquim Alves Pinto
Joaquim Alves Pinto
I am reading Architecture Patterns with Python and at some point the frozen dataclasses just don't work with sqlalchemy, so the author suggests setting `unsafe_hash=True`. To avoid making the class...
I see that for the months selection it is ok to have an empty selection, but I get an error if no year is selected for the 'years' page. Also,...
I am starting to learn rabbitmq and I read in the book "RabbitMQ in Action" that I should handle on my consumer the reconnection and rebuilding of resources basically through...
Why message body takes only bytes? Should 'json.dumps' + 'content_type=application/json' be enough?
Shouldn't `self.body = body if isinstance(body, bytes) else bytes(body)` use something like `_as_bytes` instead of `bytes`?
In some examples the consumer `main` function ends with `await asyncio.Future()` so the process does not finish. What is the best practice when you have multiple consumers spread across multiple...
I am trying to have `Either` where `Concrete` extends `Abstract` class, but I cannot get it to work. If I try to cast the left side I get the error:...
I am just starting to use stacked and I am really enjoying it. tks for doing that! Previously I was using code I got from [https://github.com/Kavantix/hn_state_example.git](url), which has a similar...
### Is there an existing issue for this? - [X] I have searched the [existing issues](https://github.com/singerdmx/flutter-quill/issues) ### The question I have create this simple text to see how `jsonEncode(_controller.document.toDelta().toJson())`. This...