Tor Arne Vestbø
Tor Arne Vestbø
Same problem here: ``` gerrit --loglevel 10 --verbose --debug ssh git-receive-pack gerrit ERROR UNKNOWN [email protected]: Permission denied (publickey). ```
What exactly is the issue with fullscreen? Please report bugs upstream at https://bugreports.qt-project.org/
The same applies when signing for a forwarded SSH session. Would be awesome to see which machine was requesting the signing as well.
After rebooting this seems to work as expected. Perhaps it's in a state after first install where this launchd is being reported?
Possible workaround: Disable MagicDNS, but leave "Use Tailscale DNS settings" enabled. This seems to still run the DNS server locally, but without messing with any DNS resolving. Then set up...
Seeing the same problem. `vudash` results in: ```` Error: Module vudash-widget-time could not be resolved as an NPM module or a local module at throwNotFound (/Users/torarne/.npm-packages/lib/node_modules/vudash/src/resolver/resolver.js:20:9) at find.method (/Users/torarne/.npm-packages/lib/node_modules/vudash/src/resolver/resolver.js:29:12) at...
Thanks! Should be possible to use a data source for this too I guess? Do data sources refresh even when not connected to a widget? The "refresh" could internally trigger...
Could the webserver you spin up serve out of the `public` folder of the user's project?
Right, that's what I saw. I'll play around with what you suggested! Thanks!
Something like this seems like a possible workaround: ```js constructor(options, emitter) { this.timer = setInterval(function () { emitter.emit('update', { url: options.url }) }.bind(this), 500) } update(data) { clearInterval(this.timer) return data...