kalebo
kalebo
JFYI The shape of vdom nodes has changed in Preact. See the following definition from their `src/index.d.ts`: ```ts interface VNode { type: ComponentType | string; props: P & { children:...
The previous link to dehydrated did not render correctly on GitHub. It might be better to point it towards https://dehydrated.io anyway though.
Given that checkup is sponsored by Sourcegraph the expectation is that they would have it deployed somewhere. In the [blog post from 2016](https://about.sourcegraph.com/blog/why-we-open-sourced-our-uptime-monitoring-system/) announcing the release of checkup it seems...
Using async decorator uses type hints incompatable with with `asyncio.run` or `asyncio.create_task`
It would be nice to be able to use this with asyncio methods like `run` and `create_task` without needing to resort to escape hatches like `typing.cast` or `#type: ignore`. I'm...