Sean Cross

Results 367 comments of Sean Cross

It looks like it will crash if a device only has an ipv6 address. Which might also be why you can't reproduce it. I'm running Fedora F42, and if I...

I think `nameToAddr` is correct here in that it's dutifully resolving the hostname to both ipv4 and ipv6 addresses. There's a lot of code that tries to only work with...

Interestingly, restarting the client (i.e. the Mac in my case) does not fix things. The _server_ (i.e. the copy running on Wayland) needs to be restarted, otherwise it'll constantly think...

I've only seen it happen with the Alt key. I see this: ``` [2025-09-11T21:23:05] DEBUG1: try to leave "Ondo" on left [2025-09-11T21:23:05] INFO: switch from "Ondo" to "Bestways.local" at 1283,302...

relink.ps1 ```powershell param ( [string]$rootDirectory ) if (-not (Test-Path $rootDirectory -PathType Container)) { Write-Host "Invalid directory: $rootDirectory" exit 1 } Get-ChildItem -Path $rootDirectory -Recurse | ForEach-Object { $target_path = $_...

Note that the `--sysroot` argument appears to be ignored on Linux -- it doesn't matter whether it's present or not. I believe what's going on is zig is incorrectly treating...

I've opened https://github.com/ziglang/zig/issues/23179 but the interim solutions are likely to either use relative paths across the board or to remove the `--sysroot` flag.