halfnelson
halfnelson
I had the need for something like this in Svelte Native. The nativescript ListView control takes a "template" as a slot and instantiates it. I went with something based on...
So a template is just like an each block, except all instances don't have to be in the one spot
I like the concept of `svelte:fragment` being a collection of reactive dom nodes. Introducing `svelte:fragment` could solve one of the problems with slots: you need a dom node to put...
I hit the same problem and I made some changes to my copy of the the core coro-wrapper and coro-channel libraries to provide support for optional read timeouts. They would...
Managed to get mobdebug working okay with luvi by adding a cmake option to compile in luasocket 3.0 see last two commits https://github.com/halfnelson/luvi/tree/feature/luasocket
I looked at the luasocket source and couldn't see anything that would interfere with the uv event loop. Apart from the fact it would hold it up on request/response due...
Fwiw mobdebug works okay with libuv, I managed to set breakpoints in a createserver call and before and after the read operations with no problems.
Listening to your Svelte Summit (spring 2021) post talk discussion about the "enhance" form support and its integration with SvelteKit. Maybe that same integration is what can provide the CSRF...
Looking at the Svelte JS output of the same code in the repl (https://svelte.dev/repl/a64f21f99f3d48de992a731a76818c32?version=3.37.0) gives us a clue ```js c() { window_1 = document.createElementNS("https://svelte.dev/docs#svelte_options", "window"); view2 = svg_element("view"); view0 =...
Also good for navigation within the same file, I can right click on a function call and "Goto Definition", then read the definition of the function, then hit the back...