tomberek

Results 245 comments of tomberek

TODO: - [ ] fix the ugly hack at https://github.com/tomberek/gst/blob/master/gst.c#L70 in some way. Perhaps just have two separate calls for different arities? SetCallback_2, SetCallback_3..... hrm.... - [ ] ensure go...

Yes, I was going to implement the same thing just with a different string, but I cannot access the callbackStore or private fields like Element.callbackID. btw: i'm also taking a...

Arbitrary callbacks signals and sending go functions through for gstreamer to call is proving challenging. Was trying to use this as a reference: https://eli.thegreenplace.net/2019/passing-callbacks-and-pointers-to-cgo/

Another approach that is similar to how [git does it](https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases). Provide a CLI extension mechanism: ``` apps..nix-ABCD = ...; #`nix-` prefix is special? or devTools..ABCD = ...; or cliTools..ABCD =...

@Ericson2314 : You added this portion back in 2020: https://github.com/NixOS/nix/commit/2de201254e8669a6768bb739ff27fd94a87a71b9 The 6227 PR removed that fix. But the equivalent fix from that commit near (https://github.com/NixOS/nix/pull/6227/files#diff-5784d1ad7c22601c75b86872534049bea5173377de5d61b7446452beabc16d3fR412) was not removed. So it...

I tried up to a 20GB derivation without triggering the error. It seems this is coming up in CI a lot. Is there a single-user/multi-user distinction here?

Suggestions from NixUX: - '--show-trace` can become overwhelming, even more than today. Perhaps respect `-v` verbosity flags? - New messages can be a less severe level in order to limit...

From NixUX: Thanks @pennae for the perf review. This still requires a way to control and limit the severity of the trace.

Another issue that has come up as I'm writing the docs (stealing most of it from nix-shell), is that we don't run the setup or shell hooks to modify PYTHONPATH...

The proposed approach is variadic and can be put all on one line. Sometimes these lines end up very long and having them split up can be helpful. As to...