Jakob Rødal Skaar

Results 8 comments of Jakob Rødal Skaar

While the link does show up properly in the search and subreddit pages, the link gets `href=""`.

Here's one with a link that uses `http` instead of `https`: And one without any url scheme:

You can find real-world examples by pressing the "View discussion in 325 other communities" link.

This prevents using `cargo-equip` with e.g. `ndarray`, because `src/extension.rs` includes `pub(crate) mod nonnull;`, and `cargo-equip` looks for the `nonnull` module in `src/nonnull.rs` instead of `src/extension/nonnull.rs`. (I tried to fix the...

Want to figure out how to get this to work with `lldb`, which closes all fds except `0`, `1`, and `2` by default.

Regarding > * [ ] Executables can store its list of linked library paths using relative paths, but because we hook dlopen(), the caller is not the executable anymore but...

Why doesn't tokio just epoll stdin directly in this case? stdin is a pipe and can therefore be used with `epoll(7)`. Mio already supports this with `mio::SourceFd`, and tokio with...