Yves-Marie K. Rinquin

Results 9 comments of Yves-Marie K. Rinquin

Since the last releases ACF default to its `light` REST API format. You can switch back to the `standard` format with an URL param (`acf_format=standard`) or globally with a WordPress...

Est-ce que c'est du troll ? (cf. [Difficultés](https://www.larousse.fr/dictionnaires/francais/programmateur/64202)) - Developer => Développeur - Programmer => Programmeur

I agree, the issue comes from how translation is handled and not the translations themselves : - https://github.com/grid-js/gridjs/blob/master/l10n/de_DE.ts The translation is done on an word basis (`showing`, `of`, `to`, `results`...)...

Although most of `Math.random()` implementations aren't crypto-secure algorithms, the important parts to look up are how these implementations are seeded and if they're independently seeded across windows/tabs. In my opinion...

After some more digging, most of the fail tests in this issue https://github.com/whatwg/urlpattern/issues/206 are related to this *opaque host* issue. I think the idea was that these test should (at...

In fact, it's exactly what [canonicalize a port](https://urlpattern.spec.whatwg.org/#canonicalize-a-port) is already doing : passing the protocol as context to normalize default port values. And as pointed out above [process pathname for...

hi @annevk, I finally tried to look into this. It's pretty simple to fix the hostname parsing for regular processing but there's no easy solution to fix it for pattern...

@jeremyroman @domenic I found a decent way to fix this issue : - in *canonicalize hostname*: add a protocolValue param, and set dummyURL.scheme if supplied. - add a *canonicalize domain...

I agree my PR feels a bit *hackish*, however the **canonicalize a domain name** method (with `https` as default scheme) is only called for special URLs. All non special URLs...