Zero King

Results 114 comments of Zero King

> but we still need to fix for users that already have this empty page in their db That is the point of this issue.

If I copy `.env.local.example` into `.env.local`, it still complains about `error: project not found`.

Why did you add the `invalid` label? @Xiangrui2019

The ability to delete messages from the server is a must for privacy reasons. But propagating the updates (message removal or edits) to other participants is another topic to discuss.

The domain has been squatted, please remove references to avoid confusion.

> Emmet has no knowledge of these new languages, and so there might be Emmet suggestions showing up in non HTML/CSS contexts. Is it possible to improve the experience? Emmet...

> I'm not sure if we can improve this from rescript side. Are you aware of other language plugins doing this? Yes, [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) plugin supports Emmet through [vscode-emmet-helper](https://www.npmjs.com/package/vscode-emmet-helper).

Cgo does not support calling variadic C functions, so we could only implement a wrapper for `flb_error("%s", x);`, etc. https://golang.org/cmd/cgo/

Should we add the RWMutex mentioned in https://github.com/fluent/fluent-bit-go/commit/b191f58f228c29d1df67ee75ecbee7eb413854ef to protect the contexts map?

I think "lock-free" means that there is no lock on the C side, so `contexts` in Go must be protected with a mutex or sync.Map.