Felicitas Pojtinger
Felicitas Pojtinger
Thanks for the feedback :) You can absolutely run it as a system service, I only used a user service in the instructions because user services work without root privileges....
Oh I see! The reason I'd like to use it this way is so I could use a custom `SchemaSource` to load GSettings schemas from a custom directory - if...
Hi! Sorry for taking so long to respond. Could you post the debugging output by increasing the verbosity level (`--verbose=7`)? :)
If I interpret this correctly, the extension is no longer available: https://open-vsx.org/?search=apollo&category=&sortBy=relevance&sortOrder=desc Because this repo doesn't publish a `vsix` to GitHub releases etc. and the VSCode marketplace prohibits use by...
For those which struggle to get cross-compilation working, I've found the following to work: ```toml self_update = { version = "0.27.0", features = ["rustls"], default-features = false } ```
I just ran into this as well (using Next.js). The solution seems to be to manually `require` `ar.js` and wait till it is loaded (see the [wrapper component](https://github.com/pojntfx/webnetesctl/blob/main/components/ar-graph.tsx)): ```typescript const...
I also tried to use this, minimized it down to this: ```typescript const graphRef = useCallback((node) => { if (node) { node.zoomToFit(100, 20); } }, []); ``` `node.zoomToFit` has no...
@vadimcn Just tried this. Fails with the following: ```bash /tmp/vscode-unpacked/vadimcn.vscode-lldb.vsix/extension/adapter/codelldb: error while loading shared libraries: libgcc_s.so.1: cannot open shared object file: No such file or directory Error: The debugger exited...
Hmm, I had multiple reports of this issue now. I can't reproduce it locally. Have you tried pinging over IPv6?
@EvansJahja That's an interesting observation! We can't "just use" the IP here since its possible to assign multiple IPs in `vpn ip` mode, and this API only supports one -...