Daniel Nagy
Daniel Nagy
> Is there an easy way to install this on debian? I assume you mean `raylib` itself. It does look like it involves a manual calling of `make` after the...
> I don't think that will be enough to make this library support Deno. I rely on a lot of OS functionality of Node which will be different with Deno....
I am fairly sure you can listen on abstract sockets with something like this: ```js let listener = Deno.listen({path: "\0mysocket", transport: "unix"}); ``` because abstract sockets are normal unix sockets...
I have started with this implementation in this branch https://github.com/nagy/node-dbus-next/tree/esm . My plan would be ( as it seems that this is the only way possible ) to convert from...
Does this go in the right direction for you?
I want to take this on. I have used `emacs-guix` in the past and know how it works. I have published the first part of this at #134 which addresses...
I have found a very similar issue to this one. Dollar-sign after inherit: ```nix rec { first.${"hello"} = 123; second = { inherit (first) ${"hello"}; }; } ``` ``` $...
Why not use `save-excursion` ? I think this is exactly its purpose. ```elisp (save-excursion (tabulated-list-revert)) ```
I consider my contributions in this project to be minuscule enough that I wont be holding anybody back, so consider my acceptance to be given. But I also want to...
> I'm not sure that every dbus object should implement or support this interface. I agree with that. > Maybe it would make more sense to be able to pass...