I moved to Bluesky for higher quality content that I’m more aligned with which is true to some extent. However I realized what I really like about it is *less* content and that I like zero even better. So I think I’m getting off of Bluesky as well. I didn’t need better social media but none.
24.04.2025 05:56 — 👍 87 🔁 2 💬 6 📌 0
Like I spent a ton of work getting RSC and owner stack traces to be easy to implement in any framework. Testing it out in Next.js, only to get comments like this:
bsky.app/profile/afuz...
I wish I had just kept it all in Next.js instead.
10.04.2025 21:18 — 👍 14 🔁 0 💬 5 📌 0
It can't have been more right. Both App Router and RSC are both coming from my vision for both. You may not like the outcome but there's no such thing as React taking it back.
This is why I don't want to contribute to new features to React anymore because anti-Next.js sentiment is souring it.
10.04.2025 21:04 — 👍 14 🔁 0 💬 1 📌 0
Tbh, I like the AI DJ voice on Spotify trained on Xavier Jernigan. It adds value over just randomly playing tracks.
02.04.2025 23:29 — 👍 7 🔁 0 💬 2 📌 0
The bug in development you ran into has been fixed.
We also added a warning for duplicate view transition names which is also in your demo.
You can try it out with latest Next.js canary.
01.04.2025 18:49 — 👍 15 🔁 0 💬 0 📌 0
React 19.1 enables Server Components in Parcel with React Stable (not only canary)! Just released Parcel v2.14.3 with the corresponding update. 🥳
29.03.2025 04:22 — 👍 131 🔁 12 💬 4 📌 0
Well, with one exception. It doesn't have a pending status. We went with `.status = "pending"` for that.
21.03.2025 14:31 — 👍 4 🔁 0 💬 0 📌 0
And the shape of the information exposed is already spec:ed in allSettled!
21.03.2025 14:30 — 👍 3 🔁 0 💬 1 📌 0
Promise.allSettled() - JavaScript | MDN
The Promise.allSettled() static method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises settle (including when an em...
React looks for the same names of the fields as allSettled.
developer.mozilla.org/en-US/docs/W...
They can also be updated after it resolves. This is used by RSC when it provides data to React to allow streaming to be free when it's already loaded. Other libraries can use the same optimization.
21.03.2025 02:49 — 👍 10 🔁 0 💬 0 📌 0
class RejectedPromise extends Promise {
constructor(reason) {
super((resolve, reject) => reject(reason));
this.status = 'rejected';
this.reason = reason;
}
}
21.03.2025 02:49 — 👍 5 🔁 0 💬 1 📌 0
class ResolvedPromise extends Promise {
constructor(value) {
super(resolve => resolve(value));
this.status = 'fulfilled';
this.value = value;
}
}
21.03.2025 02:49 — 👍 6 🔁 0 💬 1 📌 0
You can pass sub-classed Promises to React such as in use() with the fields status and value or reason.
This allows React synchronously read the value without waiting on a microtask. This is much faster but it also ensures compat when someone needs flushSync().
Microtasks are bad, mkay.
21.03.2025 02:49 — 👍 63 🔁 7 💬 3 📌 1
You're not from New York unless you were born in the five boroughs, definitely not New Jersey, but with the right attitude you can be a True New Yorker.
14.03.2025 15:39 — 👍 3 🔁 0 💬 0 📌 0
Long Island City is in Queens which is on Long Island but not out on Long Island.
14.03.2025 15:33 — 👍 2 🔁 0 💬 1 📌 0
Western New York is basically Canada.
14.03.2025 15:19 — 👍 2 🔁 0 💬 1 📌 0
Long Island excludes Queens which on Long Island.
Westchester is upstate from New York but not in Upstate New York.
Upstate New York includes Connecticut and Vermont.
14.03.2025 15:13 — 👍 3 🔁 0 💬 1 📌 0
New York, New York, New York so good they named it thrice+.
New York County is Manhattan.
New York City is larger than the county and includes the five boroughs.
New York State includes all of them.
The city is Manhattan, i.e. New York County.
The Tri-State area is the New York metropolitan area.
14.03.2025 14:54 — 👍 6 🔁 0 💬 1 📌 1
I learned from scuba and snorkeling not to trust sunscreen in water. I just reapply after dry and not expecting to get back in the water.
13.03.2025 03:42 — 👍 0 🔁 0 💬 1 📌 0
As a fellow ghost, long sleeve rash guard is the way.
13.03.2025 03:24 — 👍 1 🔁 0 💬 1 📌 0
It would be something you register with RN and then refer to by the generated "class" but it can also be built-ins.
The "className" prop name is expected to change though so in React it won't actually have the word "class" in it anyway. You often use the enter/exit/update/share ones instead.
12.03.2025 15:23 — 👍 2 🔁 0 💬 0 📌 0
The idea is that ideally you would actually have a CSS library specifying a bunch of different view-transition-classes and you'd just pick among those.
The React API makes more sense from that perspective because otherwise you might expect more low level helpers for filling in the values.
12.03.2025 15:02 — 👍 2 🔁 0 💬 1 📌 0
developer.chrome.com/blog/view-tr...
github.com/facebook/rea...
github.com/facebook/rea...
12.03.2025 14:59 — 👍 0 🔁 0 💬 1 📌 0
The recommended approach is to use view-transition-classes specified and not style using names.
<ViewTransition className="...">*
You can also specify different ones for enter/exit/update.
* Note this prop name is likely getting renamed.
12.03.2025 14:43 — 👍 4 🔁 0 💬 2 📌 0
Note that there was a period where the framework detection code relied on an HTML attribute which was removed in 18. Therefore adoption of 18 was lost for a period before the detection mechanism updated. Not sure but it might explain temporary gap in growth. It's a data collection bug.
11.03.2025 16:26 — 👍 7 🔁 0 💬 1 📌 0
Man, I love mainstream health science so much. It’s just so simple when you ignore all the made up stuff from influencers.
08.03.2025 03:05 — 👍 21 🔁 0 💬 0 📌 0
I've been working through a lot of browser bugs lately but tbh I wouldn't trade it for less ambitious work from browser vendors.
I can do a lot more with a buggy API than no API at all.
07.03.2025 02:55 — 👍 35 🔁 0 💬 0 📌 0
For example, in Next.js you'd call cookies.set() in a Server Action and then use that cookie to render the toast from a different Server Component. Then trigger an Action that resets it once shown.
We have some ideas for more built-in features around this pattern.
06.03.2025 15:19 — 👍 5 🔁 0 💬 1 📌 0
I think toasts in general should be a server-side side-effect that ends up getting stored in a more permanent storage. E.g. user database of notifications, or even just cookies.
The side-effect can then be observed by a toast system on the client.
06.03.2025 15:19 — 👍 1 🔁 0 💬 1 📌 0
Wouldn't you want MPA forms (not yet enhanced) to be able to show toasts too? At least in theory. It ideally should also be more permanent for example if you navigate away from the form while it's still sending, or if you switch tabs you should still be informed.
06.03.2025 15:19 — 👍 1 🔁 0 💬 1 📌 0
👩🏻🔬 Immunology | 🦠 Microbiology
🧫Cancer Biology | 🧬 Biotechnology
SciComm | Data | Snark
Founder: ImmunoLogic
Director: American Lyme Disease Foundation
w: immunologic.org | ALDF.com
Developer Health @ G2i | Co-organizer of React Miami
WebKit developer, cyclist, steam engine builder @smfr@mastodon.social
WebKit Engineering Manager at Apple. Ex-Google Chrome, ex-NPM. OOCSS, CSSLint. CSSConf founder, speaker. Climber 🧗, knitter, disabled zebra. Probably riding the hobby carousel 🎠. 🏳️🌈 she/her @stubbornella on Twitter
Design Systems at Stripe. Onions are my own.
Servo aims to empower developers with a lightweight, high-performance alternative for embedding web technologies in applications.
https://servo.org
https://github.com/servo/servo
I mostly post on X: x.com/adamwathan
Full time CEO & YouTuber. Also an investor and developer. More info at t3.gg
🔵 Creator of motion.dev
📷 Photographer citizenofnowhe.re
building Bun. formerly: stripe (twice) thielfellowship. high school dropout 🌈
got signals?
@solidjs.com @sentry.io
previously: @netlify.com @markojs.com
Software Engineer at @vercel.com working on @nextjs.org. Previously voxmedia.com, coralproject.net, foundation.mozilla.org. (he/him) proudly 🏳️🌈
https://wyattjoh.ca
i like computers
she/her 🏳️🌈
📍berlin (and warsaw sometimes)
https://twitter.com/lubieowoce
https://github.com/lubieowoce
only raw thoughts here (like very raw, with typos)
you have the ability to understand things
principal engineer, react person, super gay, still masking
Engineering lead working on Google Chrome.
I want you to win :) For more on what I'm up to, I'm at addyosmani.com
my life is derp and i do derp shit