Tobias Pankrath
Tobias Pankrath
I am using mir as a submodule in a meson project and build it with ninja. This happens to me every time I run ninja: ``` ninja -d explain ninja...
I am trying to improve dub2nix and make Nix work better with D. To this end I want to build all dependencies of a package without building that package itself....
I want to connect a ROUTER to another ROUTER and immediately start sending messages. Thus I need something similar to libzmq's ZMQ_CONNECT_ROUTING_ID. How do I achieve the same thing in...
```tobias@balu:~$ nix-env -q hello-2.10 tobias@balu:~$ nix-store -q --references $(which hello) error: path '/home/tobias/.nix-profile/bin/hello' is not in the Nix store tobias@balu:~$ nix-store -q --references `which hello` error: path '/home/tobias/.nix-profile/bin/hello' is not...
@DontTest is not part of unit-threaded anymore.
``` import vibe.vibe; struct Message { } void main() { runTask( { auto tid = Task.getThis().tid; auto t1 = runTask( { while (true) { sleep(1.seconds); send(tid, Message.init); } }); auto...
Hi, clap-rs switched from `atty` to `is-terminal` and I am on an old version still using `atty`, which I cannot build with crate2nix. ``` ➜ crate2nix-clap-atty git:(master) nix build -f...
`stdx.data.json.parser.readObject` issues a callback for each key in an object. The type for the callback is `scope void delegate(string key) @safe del)`. For my use case it would be sufficient...
This is a proof of concept on how to integrate io_uring into the epoll event loop. It currently supports files, timers could be easily added (but prolly require a fork...
I am investigating the usage of io_uring as a backend for eventcore. Let's gather all discussion surrounding it in this issue. To the best of my understanding there are two...