Reilly
banner
reillyjodonnell.bsky.social
Reilly
@reillyjodonnell.bsky.social
Fun animation ft bun :D
November 14, 2025 at 3:21 AM
There's a lot of complexity in data fetching in frameworks. What if you could just declare the data you're fetching and the compiler:

- streams it in as props
- implements a component level error boundary
- wraps it in suspense boundary
- fetches in parallel on the server via RSC

Anyone have op?
March 25, 2025 at 11:34 PM
Setting up SSR (including hydration) with Bun is insanely easy.

Here's a little bonus:

Want your server to reload when you make a change to the code? All you have to do is run:

bun run --watch server.tsx

Bun is the all in one platform designed to build fast apps fast
March 21, 2025 at 1:20 PM
first merged pr to bun :D
March 11, 2025 at 10:58 PM
v8 isolates are the magic for cloudflare's workers.
At request time:

- typical serverless: boots up full runtime (lambda avg is 200ms) + users code
- cloudflare workers: preboots shared v8 instance so only an isolate (~5ms) + users code is required

read more here: reilly.dev/posts/overvi...
February 15, 2025 at 10:40 PM
It's absurd how quickly you can iterate on GPU rendered apps with Zed's gpui framework. I'm only a few hours in. It's just so damn intuitive.
January 20, 2025 at 3:33 PM
Here's a 30 second overview of e2e typesafety in Partykit! Super excited to wrap this up for everyone to enjoy! <3
November 25, 2024 at 8:17 PM
update on upgrading type safety with
Partykit (s/o to @threepointone.bsky.social)

you now get inferred types on not only your type of message but bc of discriminated unions.
The dx is 10x better with these new types!
Next step is transferring this data to the client.
November 23, 2024 at 9:59 PM
Yes for sure! You start by making a schema like this:

Then you'd pass it to your class that implements Party.Server.
November 15, 2024 at 3:15 PM
step 1 done
November 13, 2024 at 11:24 PM