Amir Amazigh BOUBEKKI

Results 108 comments of Amir Amazigh BOUBEKKI

Spoiler: I am new to the project. I will try to be accurate. > Accessing user recorded sessions can be very dangerous and I would love to have the auditing...

Thanks for the ping, I missed the previous comment. > collect logs and store them wherever I want. After that I can set some alerts on top of the collected...

> If it's going to be Guile-only, then I suppose we could have a descriptor type that stores information about function signatures (e.g. in a format akin to what Guile's...

Who wants / must submit the report ?

I got working something similar, I can send you a stub privately.

For reproducible builds required by nix-family of OS, that is relatable to @attila-lendvai use case: adding a parameter to set the random seed of `unique_id` so that the binaries produced...

I am using: ```scheme (define-syntax call/errno (syntax-rules () [(_ thunk proc) (with-interrupts-disabled (let ([out (thunk)]) (let ((errno (#%$errno))) (proc out errno))))])) ``` It works so far.

> We can have a `saved-errno` procedure as Racket did. Quickly looking at Racket's code, I do not see how this can work without continuation marks / attachements. Using liburing,...

> a Promise-based executor @tex0l why did you choose the promise-based executor?

With Chez and Gambit callback-based code is ten times faster, than colored `async` code.