ottomated
ottomated
My simple page looks like this: ```xml ``` There are about 10 people in my list currently. If I toggle one of the check boxes, it also toggles another one...
I'm bad at commenting my code. Someone should go through and provide some documentation.
### Describe the problem In Svelte 4, you can use this pattern to trigger side-effects: ```svelte let num = 0; let timesChanged = 0; $: num, timesChanged++; Num: {num} Times...
### Describe the bug When a `+layout.server.ts` load function is re-ran on the server side via `await parent()`, the data it returns is not sent down to the page. This...
### Describe the bug Intuitively, I would expect this to be reactive: ```ts import { Map } from 'svelte/reactivity'; const s = $state(new Map([[0, { nested: 0 }]])); // somewhere:...
This repo still uses the internal `@libsql/hrana-client` library. This PR updates it to use `@libsql/client` for parity.
In [@libsql/client](https://github.com/tursodatabase/libsql-client-ts/blob/b58d509e0bf0a48b28e7bd02ae2708fcb62a1f22/packages/libsql-client/src/sqlite3.ts#L275), column properties on rows are defined with `writable: true`. ```ts Object.defineProperty(row, column, { value, enumerable: true, configurable: true, writable: true }); ``` This was fixed in https://github.com/tursodatabase/libsql-client-ts/pull/166, but...
### Describe the bug To set the `volume` of an audio or video element, you _must_ bind to it. `` works, but `` fails silently. This does match the HTML...
### Describe the bug If you quick fix a lint warning in a script block, it inserts an HTML comment at the bottom instead of a JS comment in the...
I've reverse-engineered Tidal's internal state and refactored the injected script, which makes it possible to directly subscribe to their Redux store instead of updating on an interval and read the...