Blank array of documents from Firestore - createEffect(), createSignal()
createSignal([{round_nr: 0}]) and this is working, because for the firt time when the function is running the array has this dummy object and is not more undefined and I can read the round_nr attribute which is 0 for the first time and immediately is switched with proper value when the function runs for the second time.
...Custom auth solidstart by prisma
Derived data in a store vs reconcile
Best practices for reactively updating a store
Suggestions for refactoring an async image component?
weird behavior: a button declared in TSX with onClick does not have onClick in the final html?

Should event: APIevent have client cookies on SSR?
Uncaught ReferenceError: React is not defined
Solid-Icons with Webpack and Module Federation?
Is there any secure alternative to createEffect?
"Effects are meant primarily for side effects that read but don't write to the reactive system: it's best to avoid setting signals in effects, which without care can cause additional rendering or even infinite effect loops. Instead, prefer using createMemo to compute new values that depend on other reactive values, so the reactive system knows what depends on what, and can optimize accordingly."I get the point on the "best to avoid setting signals" inside a createEffect, but that's precisely what I need to do. Is there any other solid primitive to run my effect securely to avoid infinite loops. Your suggestion on createMemo does not fit my use case....
example authorization on the outside server
no luck with context providers
solidstart authorized example
[SOLVED] Textfield patterns (input masks)
How to better handle `from`'s possible `undefined` state?
from to observe a value from an external source. Because that's an observed value, it will be undefined at start.
Further in my code I am using the value, for instance on a <Match>:
```...renderToString without hydration markers?
Async SSR Magic?
presets: [["solid", { generate: "ssr", hydratable: true, async: true }]]
...TRPC. The module system cannot find the file
How do I use Solid.js with clear data model <-> UI primitive distinction?
Map object like following:
```tsx
const initialFiles = new Map([
["a.txt", "foo"],...Routes import issue
