You may be tempted to roll your eyes and say that this was obvious, but there is a substantive difference between pointing out there is a slippery slope and having solid evidence that Ring's CEO is planning to expand Search Party beyond lost pets. Kudos to 404 Media.
18.02.2026 17:41
π 269
π 114
π¬ 3
π 1
18.02.2026 20:41
π 4
π 2
π¬ 1
π 0
Made by the great @luigihann.bsky.social
18.02.2026 20:15
π 6
π 1
π¬ 0
π 0
Thereβs a lawsuit against WhatsApp making the rounds today, claiming that Meta has access to plaintext. I see nothing in there thatβs compelling; the whole thing sounds like a fishing expedition.
27.01.2026 20:24
π 42
π 7
π¬ 5
π 1
I know youβre right, and yet it feels crazy to think about the person/people working on it and how many times they refreshed and saw all those flashes without getting annoyed enough to fix it π
10.01.2026 03:52
π 3
π 0
π¬ 0
π 0
Setting Chrome to mimic a 3G network it's even worse! 8 distinct layouts.
09.01.2026 16:40
π 3
π 0
π¬ 0
π 0
When I saw it in real time I thought it was some kind of crazy attempt to animate the player in
09.01.2026 16:23
π 3
π 0
π¬ 1
π 0
What the heck is going on with Spotify's embedded player that it flashes through no fewer than six different layouts as it loads?
09.01.2026 16:18
π 2
π 0
π¬ 1
π 1
From the confession community on Reddit
Explore this post and more from the confession community
I reached out to the author of this viral Reddit post thinking there might be a story in it. He sent me an employee badge that Gemini flagged as being AI-generated and supporting documents that I suspect were also generated by AI. Be careful out there folks!
www.reddit.com/r/confession...
03.01.2026 19:55
π 1728
π 454
π¬ 20
π 71
- β
Transcendent melodic perfection
- β
Ultimate expressive culmination
- β
Masterful use of appoggiaturas and grace notes
- β
Perfect voice leading throughout
- β
Publication-quality sophistication
And its grades for the final version:
* Voice Leading Evolution: Bach-level sophistication
* Harmonic Sophistication: Transcendent melodic expression
* Hierarchy of Priorities: Transcendent artistryd
03.01.2026 07:00
π 1
π 0
π¬ 0
π 0
A simple Bach chorale
Bach choral with many ordainments and flourishes
Remembering the time a few months ago where I asked Claude to write a Bach chorale using LilyPond and then do 10 iterations of critical feedback and improvements. It ended up with this hilarious monstrosity.
The reviews it gave the final draft were quite impressive...
03.01.2026 07:00
π 4
π 0
π¬ 1
π 0
Happy New Year π
New year, new resolutions: fewer null checks, clearer error handling, and getting nullability right in GraphQL.
Let's see how far we get this year.
01.01.2026 17:00
π 7
π 1
π¬ 1
π 1
In particular, the stuff in this file that calls platform APIs: github.com/captbaritone...
20.12.2025 16:52
π 3
π 0
π¬ 1
π 0
Running the codebase locally might be a pain in the butt. But if you can get a working example of calling the tumbler api with exactly the stuff weβll need, and instructions to get the right keys, I can probably do the rest.
20.12.2025 16:45
π 1
π 0
π¬ 1
π 0
Bluesky bot Β· captbaritone/webamp@e5ed88c
Sounds great. Could probably use this as a guide: github.com/captbaritone...
Want to stop by our Discord?
20.12.2025 16:23
π 1
π 0
π¬ 1
π 0
Yay personal websites!
17.12.2025 07:01
π 1
π 0
π¬ 0
π 0
screenshot
deployed big update to rsc-playground.pages.dev
lots of bugfixes and a few new examples.
this basically works now! i'll open source a bit later
15.12.2025 20:07
π 47
π 4
π¬ 2
π 1
Spike Jones Presents a Xmas Spectacular / Jordan Eldredge
My favorite Christmas album
Tis the season for me to remind you that the Spike Jones Xmas Spectacular is the best Christmas album: jordaneldredge.com/spike-jones-...
14.12.2025 17:30
π 1
π 0
π¬ 0
π 0
I updated grats.capt.dev internal snapshot tests to serialize using markdown and the result is so nice! Snapshot output now has syntax highlighting and nice readable headings showing what each bit of the output means.
10.12.2025 19:14
π 3
π 0
π¬ 0
π 0
Without the blue bar
a github clone with NextJS 16 and cache components
x.com/panchito built a _really_ slick looking Github file viewer clone that fully uses RSCs and new React features, as well as making smart use of modern CSS. Great writeup on the implementation:
wtbb.vercel.app
I tried browsing the React repo example and it's _fast_! Really impressive!
04.12.2025 20:39
π 59
π 11
π¬ 0
π 4
Server Components is not really related to SSR.
I like to think of Server Components as componentized BFF ("backend for frontend") layer. Each piece of UI has some associated "API" with it (whether REST endpoints, GraphQL, RPC, or what have you). Server Components let you express the dependency between the "backend piece" and the "frontend piece" as an import, instead of as a `fetch` (client calling server) or a <script> (server calling client). You can still have an API layer of course, but this gives you a syntactical way to express that there's a piece of backend that prepares data for this piece of frontend.
This resolves tensions between evolving both sides: the each piece of backend always prepares the exact data the corresponding piece of frontend needs because they're literally bound by a function call (or rather JSX). This also lets you load data as granularly as you want without blocking (very nice when you have a low-latency data layer).
Of course you can still have a traditional REST API if you want. But you can also have UI-specific server computation in the middle. There's inherent tension between the data needed to display the UI (a view model) and the way the data is stored (database model); RSC gives you a place to put UI-specific logic that should execute on the backend but keeps composability benefits of components.
maybe not the best moment for it but i finally condensed my βwhy react server componentsβ into a short blurb that does well on HN
04.12.2025 09:08
π 116
π 11
π¬ 5
π 3
I've been working on a userland implementation to see how far we can get there (pretty far, but not to something perfect). I've been using that to try to get some early feedback on the viability of the API shape with some community members. github.com/thejustinwal...
02.12.2025 17:14
π 1
π 0
π¬ 2
π 0
Local Data Consistency With GraphQL - Sabrina Wasserman, Meta
Have you ever wondered how GraphQL clients like Relay keep local data consistent across surfaces, ensuring that changes made within a session are seamlessly ...
Ever wonder how GraphQL clients like Relay keep your appβs data perfectly in sync without extra network calls? π€―
Metaβs Sabrina Wasserman breaks down the core engine behind modern GraphQL clients.
Watch here π
www.youtube.com/watch?v=hz0...
27.11.2025 11:00
π 4
π 1
π¬ 0
π 0