Evan Boehs
Evan Boehs
For what it's worth 1. I believe embedding this capacity into the main server is better than an independent bot (some rational is in #3277) 2. Configuration language is more...
also see #26263 @ProfDoof it seems FWIW there's a gecko impl shipping very soon
What's interesting is the same code in gecko is here https://github.com/servo/servo/blob/main/components/selectors/parser.rs#L2944-L2972 https://github.com/mozilla/gecko-dev/blob/master/servo/components/selectors/parser.rs#L3213-L3241 but ```rs fn parse_has(&self) -> bool { true } ``` is set to false in servo. I'm not...
I'm working on Kysely. I'm using it like ```ts mock.module("../../lib/db", () => { return { db: newDb().adapters.createKysely() }; }); ``` unfortunately my migrations script fails because of the `!~` operator...
Now I do this: ```ts mock.module("../../lib/db", () => { let mem = newDb(); mem.public.registerOperator({ operator: "!~", left: DataType.text, right: DataType.text, returns: DataType.bool, implementation: ([lhs, rhs]) => { return !new RegExp(rhs).test(lhs);...
Would it be possible to mock this info? I'm having unrelated HUGE issues inside bun's testing framework so I can't even play with this for now, but eventually...
Before I saw this, I wrote a script to do it, it gives a bit more resolution script ```js let tags = {}; let sites = [...document.querySelectorAll('.item-tray')] sites.map(item => {...
My computer has been soooo laggy for the past couple days, this explains it! Thank you!
I'm curious now... How does battery differ between auto-cpufreq and p-state?
Oh sorry, to be clear I'm talking about the 11ty instance, is there a more appropriate place for this?