Arne Wiese
wiesson.bsky.social
Arne Wiese
@wiesson.bsky.social
Freelance Software Engineer
I like working with Sveltekit, Supabase, Astro, Payload CMS, Nextjs, Vercel, (...)

arnewiese.de
Wo sucht er denn?
November 20, 2025 at 5:59 AM
We create coloring pages with nano banana, but yours is next level
November 7, 2025 at 11:19 PM
I have built various sveltekit apps and might be interested! 👀
October 30, 2025 at 5:04 PM
For form() with enhance, it tries to get the result from the await submit(); but it's actually in myFormAction.results…

Overall it works and the small mistakes are not that critical, but I have like 6 sessions running in parallel and when all are doing the same mistakes very day 🙈
October 24, 2025 at 7:44 AM
Sure! In the GitHub repo? For example, Claude often tries to use .pending (not .loading) and sth like if remoteFunctionCmd().error (it's a command, not query)
October 24, 2025 at 7:43 AM
I'm also still experimenting, but remote functions + svelte mcp + hints how to use it in agents.md / claude.md also have a lot of small mistakes. I will try the skills next time. It's kind sad that LLMs have a knowledge cut off and everything new is not included
October 24, 2025 at 7:08 AM
Having Claude skills for remote functions, runes, and other things would be more helpful than the MCP, in my opinion. There are certain things that are always wrong and annoying to fix repeatedly (like every session) because they aren’t part of the “general knowledge” of the LLM
October 23, 2025 at 5:03 PM
My minimal example is obviously working … once I find it, I will create a demo
October 11, 2025 at 7:40 AM
I‘ll create an example tomorrow
October 10, 2025 at 10:51 PM
*Same remote function

use case is that I have a header that needs the title and I have some content somewhere else that needs other data from that same remote function
October 10, 2025 at 10:31 PM
Is this a bug or feature? 😀
October 10, 2025 at 10:30 PM
You don't happen to work with freelancers? Like, say, 20-40 hours per week?
October 4, 2025 at 11:43 AM
I think I got it 🙈 - wasn't that hard
September 17, 2025 at 9:26 PM
const initial = await getPost(params.id);

let formData = $state({
title: initial.title,
content: initial.content
});

Maybe just like this? But what happens if id changes?
September 17, 2025 at 9:09 PM
let query = $derived(getPost(postId))
let formData = $state(query.current)

looks nice, but doesn't work, because $state doesn't react to the derived changes
params.id
September 17, 2025 at 9:05 PM
like this? If post id changes, the query reruns and $effect picks it up and updates formData. Can I (re)assign the $state without the $effect?
September 17, 2025 at 9:02 PM
Or more in the answer 😃
August 7, 2025 at 5:49 PM
I‘m also interested in this question :)
August 7, 2025 at 5:49 PM
It’s sooo good!

I have refactored like 30 routes to use the remote functions, and it feels great! Now modals can call the same functions as forms in other places without thinking about the exact path where the action might be
August 5, 2025 at 5:50 AM
Sad to read though. I'm a huuuuge fan of Claude Code
July 2, 2025 at 10:23 AM