ottomated

Results 86 comments of ottomated

As-is, this adds too much stress to the user. Please reconfigure this so the voice server can optionally send a TURN server over websocket, to make the entire process automatic.

There are people working on this already – the issue is that CPU usage becomes even more of an issue when you need 10 copies of the node combined with...

This is probably due to network IDs changing when someone leaves.

I'm not in love with the monospace or the fact that the hexagons don't tessellate, but overall it looks great! Only other issue is that audio device with long names...

How would this perform with a TURN server?

@dummdidumm > In the given example, you would want to rerun this on every page change I don't want to rerun it on every page change, I want it to...

> Could you give a code example of what you expect this to look like? Simplified example: `+layout.server.ts` ```ts export const load = ({ locals, depends }) =>.{ locals.map =...

In my example, I assume that the parent function is always called first. In my actual code, both contain `if (!locals.map) locals.map = new Map();` – and it works fine,...

> You can implement this in user land: > > ```js > function explicitEffect(fn, depsFn) { > $effect(() => { > depsFn(); > untrack(fn); > }); > } > >...