Morten Piibeleht
Morten Piibeleht
OpenSSH 9 should probably be fine. I assume the `ssh-keygen` CLI is compatible. Should just double check that `genkeys` still produces a reasonable output. The PR is against the wrong...
I think it's probably because your SCSS files are outdated. Basically, it looks like there is some conflict between your SCSS and the Documenter ones it pulls in. I also...
I agree that hard-coded values in the CSS are not ideal. If nothing else, we could make it configurable, so that you can override the values or have a way...
A couple of quick debugging thoughts: * What happens if you try to `capture()` a `_defaultlink()` call? As you say, it seems to try to establish a connection first, so...
`_defaultlink`: https://github.com/JuliaInterop/MathLink.jl/blob/305115610de2d6ea1f4a64e0df458b9282c03b08/src/link.jl#L88-L103 It seems like this gets sometimes called to establish the default connection as you said? https://github.com/JuliaInterop/MathLink.jl/blob/305115610de2d6ea1f4a64e0df458b9282c03b08/src/eval.jl#L52-L59 Although I didn't immediately see how it relates to the `W...` macros...
If you just do `capture()` around a `_defaultlink` call, does that hang too though?
Okay, interesting. Probably not _too_ surprising that directly calling into C would not work properly (IOCapture just uses `redirect_stdour/err` functions). I also see an issue with a short string, where...
Regarding the async stuff -- those should be tasks, not threads. So it's still all single-threaded. But regardless, those tasks should be taking care of keeping the buffer empty. >...
Under the hood, both IOCapture and Suppressor work basically the same way, so I think they're equally amenable. The basic workhorses are the `redirect_stdout` and `redirect_stderr` functions, but I am...
Yep, agreed, I've been thinking along the same lines for a while. Waiting a few weeks before tagging 1.0.0, just in case, also seems prudent.