Didier Catz
banner
didiercatz.com
Didier Catz
@didiercatz.com
Engineering design

https://didiercatz.com
You could always clone it and run it locally!
October 12, 2025 at 1:51 PM
Unsolicited tip: you can even do this:

<div style:transform="translate({x}px, {y}px)"> ... </div>
October 10, 2025 at 12:41 PM
I doubt it. It's a SvelteKit feature (not a Svelte feature), but you can always just make remote fucntions call to your 3rd party API.
October 9, 2025 at 10:40 AM
Give me a recipe for a lemon pie
October 2, 2025 at 12:54 PM
You didn’t! Just leaving in case there’s any context missing to other readers (these automatically get cross posted to the Discord)
September 29, 2025 at 8:46 PM
Vercel doesn't own Svelte. They just pay a few folks to work on Svelte full-time. It's independent.

www.reddit.com/r/sveltejs/c...
September 29, 2025 at 8:21 PM
Appreciate you & the team asking for feedback from the community!
September 24, 2025 at 10:15 PM
(This goes for all deriveds)
September 24, 2025 at 8:19 PM
This one I'm not 100% sure on but I believe this should be let, not const:

const noTasks = $derived(tasks.length === 0);
September 24, 2025 at 8:17 PM
Additionally, $state and $derived runes can just have their types normally annotated. No need to pass a generic

`export const store = $state<TaskBoxState>(initialState)`

↓ can be ↓

`export const store: TaskBoxState = $state(initialState)`
September 24, 2025 at 8:14 PM
First thing I saw when clicking around was this;

In Svelte, you can just do this:

<label for="title-{task.id}">
<input id="title-{task.id}">

No need to do string interpolation with brackets and backticks.
September 24, 2025 at 8:12 PM
Good Svelte code on an LLM that can run entirely on-device? That's huge
September 24, 2025 at 7:45 PM
Schrödinger's mouse?
September 17, 2025 at 6:34 PM
Hey is that a Strandberg?
December 26, 2024 at 2:29 PM
“you wouldn’t download an iframe”
December 11, 2024 at 11:43 AM
rubberducking
November 20, 2024 at 8:56 PM
boasts
November 17, 2024 at 5:16 PM
What theme + font is that? Looks like Rose Pine
November 12, 2024 at 6:24 PM
I’ll add: layout animations! Svelte has a built-in animate:flip directive but it only works while looping over keyed elements. It’d be amazing to have shared layout transitions.
November 12, 2024 at 5:57 PM