Michael Joseph Rosenthal

Results 152 comments of Michael Joseph Rosenthal

I'm trying to evaluate the viability of aggressively using the lazy getter approach in my app, and am wondering if anyone knows/has experience with how expensive it really is? Like,...

Seconded - the fact that copycat doesn't at bare minimum have a configuration for this makes it pretty unusable for me with a prompt like `01-16 10:39 > ~/Doc…/code/` which...

Why not expose a separate, non-decorator-based api for scheduling predefined functions?

@pariola Here's a wrapper util I'm using in python 3. ```python import typing as t from logging import getLogger as get_logger import crython log = get_logger(__name__) def schedule_job(job: t.Callable[..., t.Any],...

You need to provide more details here. I personally struggled to get started because my job was raising an `Exception` that was being swallowed: ```python import crython @crython.job(expr='@reboot') def exceptional_job():...

fwiy I just monkeypatched `parser/openapi.py` temporarily with **edit**: actually the default was the valid response so for me it ended up being ```python response_from_data(status_code=int(200 if code == 'default' else code)...

> To configure a package directory to be included it must contain a `mono_pkg.yaml` file (along with the normal `pubspec.yaml` file). So basically, to use `mono_repo`, you `touch mono_pkg.yaml` in...

related to #583

Aside from language support for optional types, the biggest challenge here is that it introduces a serializer concern to the core library, which then requires some middleware for every unique...

You might be able to use [the socket client](https://github.com/zino-app/graphql-flutter/tree/next#subscriptions-experimental), as it [implements cancel](https://github.com/zino-app/graphql-flutter/blob/d108eeff59619bda9b8b8365f2d67cbbd5b64ce1/lib/src/socket_client.dart#L60). As for `GQL_STOP` in the http client, support could take a while. But if you can get...