ansemjo

Results 47 comments of ansemjo

> ..., as I've never been a frontend dev and I know that there are > many things to improve. Well, you've done a beautiful job so far. :) >...

> Do you think document thumbnails are worth it? I tried it very early on and found that most documents just look the same from a distance and the thumbnails...

I think I am hitting this same error just now. The relevant code looks like this: ```c // display the current runtime in MM:SS on display void rtctime(void *arg) {...

> Update ESP-IDF (recommended, v3.x is waaaaay too old) But both mine (`framework-espidf 3.40001.200521 (4.0.1)`) and @Tristaan's version (`framework-espidf 3.40201.210513 (4.2.1)`) is > 4.0 (note the version in parentheses .....

Yep, this is an issue again. I flashed the `micronucleus` bootloader compiled from current master ([e74ce6f](https://github.com/micronucleus/micronucleus/tree/e74ce6f064e0bcbe1c52459a0988187c76834222/)) to an ATtiny85, which reports as being device version 2.4: ``` Warning: device with...

If I may chime in with another use-case: I'm not using MessagePack for persistent storage but for streaming data to a browser over WebTransport. The data contains some metadata and...

> This is something I’d like to address in an update to Comlink where `wrap()` returns a Promise that you have to await where Comlink waits until the worker calls...

I wrote myself thin wrappers with an EventListener that waits for a simple `{ ready: true }` message from the Worker before resolving a Promise with the Comlink-wrapped Remote. This...

Oh, I see. I wasn't aware that there's such a hard limitation. Makes sense though. According to [this article](https://web.dev/origin-private-file-system/#getting-a-synchronous-access-handle), it is possible to get synchronous handles to individual files –...

> Firefox supports OPFS itself already? [Yes! Since Version 111, apparently.](https://caniuse.com/native-filesystem-api) My current experiment downloads a binary to OPFS in one Worker and then executes it in another, somewhat like...