Seems like it's already taken down? I would expect we get any safe browsing status updates from Google and automatically trigger a review, but those updates are not realtime (daily IIRC?).
Seems like it's already taken down? I would expect we get any safe browsing status updates from Google and automatically trigger a review, but those updates are not realtime (daily IIRC?).
Show Preact and signals some love over at @npmx.dev
npmx.dev/package/preact
V interested in this, assuming it works for cross-origin.
Think prefetch is not enough, but prerender is too risky for your site?
Well then check out "prerender until script"βa new option we're testing for the Speculation Rules API now available for you to test on your site with an origin trial!
developer.chrome.com/blog/prerend...
Two graphs, the first one being "Preact.js downloads over time" 2015-2025, the other being "UFO sightings over time" 1940-2015, showing a vaguely similar increasing trend over time.
OPEN YOU'RE EYES ποΈπποΈ
Oh right I listened and then forgot
Wait what
Wait what
This looks disturbingly similar to the AI client I wrote over the weekend. Crazy. Same names!
github.com/Shopify/remo...
I really want to try rendering this via Preact. Had a repo started for it a while back.
You can intercept (monkey patch) Component.prototype.setState for granular scheduling control. It powers all re-renders.
this is random but:
function getBox(textNode, char = 0) {
const range = document.createRange();
range.setStart(textNode, char);
range.setEnd(textNode, char + 1);
return range.getBoundingClientRect()
}
woah atpkgs is siiiiiiiiiiiiick
We have some stuff coming that you will like then
<script type="importmap">
{
"imports": {
"preact": "https://esm.sh/*preact",
"preact/": "https://esm.sh/*preact/",
"@preact/signals": "https://esm.sh/*@preact/signals",
"htm/": "https://esm.sh/*htm/"
}
}
</script>
tip: for esm.sh you can tell it to leave all deps external by just putting a `*` at the start of the path:
esm.sh/*htm@3.1.1/p...
π Preact 11 beta is here! After years of thoughtful development, we're delivering major improvements with minimal breaking changes. Better hydration, forward refs by default, and performance upgrades - all while maintaining the stability you love about Preact X.
a screenshot of the preact dev tools, displaying a single signal called "global-counter" with a log of the value updates it saw
added grouped updates to the preact signals devtools π
thanks to @jovidecroock.com and the team for being open to early contributions π
And this
Just gonna leave this here
pnpm v10.16.0 adds "minimumReleaseAge", a setting for defining how long a version has to have been published before pnpm will install it.
A nice countermeasure against accidental installs of short-lived compromised packages before they get taken down. Not a 100% fix, but a great additional step!
Any chance you're looking at having the file format compile to configurable output targets? πΈ
Damn, this is so similar to a thing I have been working on... neat idea melding the conditional and iteration syntax without a syntactic boundary
Wow how have I never heard of this charity
Tech Mortgage
a radial gradient shown over a conic gradient of sun rays
a linear gradient shown overtop a radial gradient
a conic gradient on top of another conic gradient
gradient.style has finally
- come out of beta
- offers multiple background editing
- is open source
π nerdy.dev/gradient.sty...
Woah
βοΈOxlint with type-aware linting is here βοΈ
β 40 type-aware rules supported, including the famous `no-floating-promises` rule
β Built on top of `tsgolint` and `ts-go`
β Brings speed improvement & correctness
Read more in the latest announcement
voidzero.dev/posts/announ...