Tor Arne Vestbø
Tor Arne Vestbø
>> I can't reach the router's DNS > > I point my UDM-Pro to use external DNS servers, so I'm not following what this means. The UCG runs dnsmasq, serving...
This seems to work: ``` root@Ruteren:~# cat /run/dnsmasq.conf.d/tailscale.conf interface=tailscale0 root@Ruteren:~# pkill dnsmasq ``` Guess I'll have to set up some system of persisting this for reboots/updates, but that should be...
Thanks @jasonwbarnett! I guess the original question still stands, is there a way to have `DNAT` rules affect the tailscale traffic with `--tun userspace-networking`, or does that require switching over...
I had a similar issue, where calling `Results()` on a `NewRecognizeTextRequest` would crash if there were 0 results, so I added: ``` results := objc.Call[foundation.Array](textRecognizer, objc.Sel("results")) if results.Count() == 0...
@clarkmcc btw, minor nit, but this: ``` handler := vision.NewImageRequestHandler().InitWithDataOptions(image.Bytes, nil) req := vision.NewRecognizeTextRequest().InitWithCompletionHandler(func(request vision.Request, error foundation.Error) ``` is effectively calling `alloc` and then `init` and then `initWithDataOptions/initWithCompletionHandler`. AFAIK, objc...
Just dropping it here that although Apple Silicon Macs can do Rosetta-translation of x86_64 binaries, even for Linux VMs, it doesn't help as long as the `steamcmd` binary is 32-bit...
Thanks @joaop221! Yeah, I figured that eventually, using `qemu-i386`. Unfortunately it fails due to https://gitlab.com/qemu-project/qemu/-/issues/2424. If box86 does not internally use QEMU then perhaps that would be a working alternative....
This is still an issue. Enter for Cmd+O in Finder results in Spotlight not being able to confirm the choice with Enter if Finder is/was the frontmost app.
Thanks for the detailed explanations @hpjansson !
I'm guessing most editors are not color managed, meaning the #ff0000 in a theme will be the most vibrant red the screen can produce. While `zed` most likely tags its...