Results 33 comments of Max Battcher

If it helps, what npm's site seems to do is rewrite relative links to repository (GitHub) links. I don't know the details of their algorithm, but a relative link in...

Same with GitHub email notifications in my case as well, it seems. As far as I remember of what I was trying to do at the time, it was a...

Had some time to prototype this afternoon. I couldn't find a mime-type that emulated the simple pixel format of `ImageData`, so it still needs a temporary canvas for the immediate...

I briefly looked into building a PR but your project does not currently build on Windows and so I instead tested the concept in a different repository. Here's a gist...

I was thinking about the same thing. It would be interesting to compare if everything was offloaded to a single transaction script like this and see if offloading all the...

Interesting results. We're about at the limit of my personal experience with SQLite directly and a lot of the things you might try to speed things up in other SQL...

Ah, the fun of dot-free styles and missing arguments *were* used. If you wanted to do it a fun way, with Ix.NET you could always do: ```c# var initInfinite =...

I stepped into this use case as well. It also doesn't look like `jsdom.serialize()` renders `` tags at all, as well. It does complicate my SSR plans, I think. Edit:...

@asamuzaK Yes, in my case I want to make sure that the contents of the template are included in a `dom.serialize()`. (I don't think I'm worried about `outerHTML` in my...

Verified that appending to `template.content` instead of `template` did the trick in my current test cases. I did not set any `shadowrootmode` attribute. Still curious if this is the "proper"...