Jonathan Giroux (Koltes)
Jonathan Giroux (Koltes)
FYI I've seen that Adopt is deprecated and redirects to `Temurinjre`.
I'm wondering the same thing. When there's no async, `.andThen` could do it, although it adds some (minor) performance penalties compared to an early return. ```ts const read = (path:...
Follow-up thinking. My last code could be written this way, thus avoiding the nested await: ```ts const read = (path: string, key: string) => validatePath(path) .andThen((validPath) => readBytes(validPath)) .then((result) =>...
In the TypeScript AST, each node has metadata, for instance the start and end positions in the buffer. It'd be great to have such metadata, with the line number in...
I guess that's similar to what [nom_locate](https://github.com/fflorent/nom_locate) does.
Do you still have the issue? I discussed with some people on macOS and it works fine.
@munsocket obviously this is off-topic, don't be afraid to open a new ticket and to give more info so that I or someone else can help you.
Sorry that you experienced that :/ Admittedly the UI is really raw, it's time for an update.
Sorry for being late. I've fixed the resizing part. https://github.com/KoltesDigital/shadertoy-exporter/commit/9d471c358684c357bd2b0fb57420672113f3b04c @tdhooper I tried to use your change, but after all I copied the code executed on going fullscreen, this has...
Sorry for being late again... I finally took time to fix the CICD. As mentioned, the code was fixed months ago, but the CICD didn't actually published anything. A working...