7nik

Results 188 comments of 7nik

> should it strip literally every whitespace? If you refer to `` and other exceptional cases, I think the user can move it out to another component where whitespaces are...

You don't need to use `on` on the MediaQueryList. Its only purpose is to attach event handlers to the DOM elements in a way that doesn't clash with the delegated...

> I can reuse the `on` function to delegate any events No, you can't because only common events are delegated: https://github.com/sveltejs/svelte/blob/5a05f6371a994286626a44168cb2c02f8a2ad567/packages/svelte/src/constants.js#L41-L65 Also, `on` doesn't delegate events at all but only...

Isn't it just misleading info in the console and what #13070 tries to fix?

Seem this logic can be extracted from the Danbooru sources. Though, I'm not familiar with Ruby at all.

I've pushed implementation to the branch [feat101](https://github.com/evazion/translate-pixiv-tags/tree/feat101), will merge it later. Among the top 30 domains, I've added ones where normalization is possible, is needed, and amount of posts is...

403 is unauthorized access. In case of claudflare, you have to open the site or subdomain and pass the captcha. 408 is something about a too long response. Though danbooru's...

The one that you set for sending requests?

You don't need to statify a stateful value. Also, in the original case, it was ```js let arr = getContect("myarr"); // returns stateful array ``` and it can be any...

The problem is that both `arr1` and `arr2` contain a reactive value (though `arr1` is additionally marked as reactive because it is defined with a rune), but the compiler compiles...