vyzo

Results 651 comments of vyzo

Opened a couple of issues to discuss api and canonical package metadata: - https://github.com/vyzo/gxpkg-daemon/issues/1 - https://github.com/vyzo/gxpkg-daemon/issues/2

yes please! I was thinking about ptrace myself just the other day.

that's pretty interesting, it shouldn't be too hard to add support!

- `lib1.ssi` is the compiled module interface and load driver; used by the expander when importing a compiled module. - `lib1.ssxi.ss` is the optimizer interface, generated when compiling with `-O`;...

There is experimental support for M:N threading in Gambit v4.8.9 (enabled with `--enable-smp --enable-multiple-threaded-vms`), and Gerbil supports it out of the box in v0.12. Feel free to experiment with it,...

> What does out of the box mean? Out of the box means that the Gerbil runtime and compiler recognize the Gambit SMP runtime and enable smp-specific code to support...

The requests library doesn't request a certificate check from the tls socket; this is possible by providing a certificate chain when creating a tls-context. I will add support as this...

cc @wsxiaoys So an update on this issue. I have always assumed that with the right tls-context options I would be able to enforce certificate validation. But when I went...

Some experiments using `untrusted-root.badssl.com`, it seems that the gambit runtime rejects the connection when doing direct socket i/o with these options: ``` > (def ctx (make-tls-context)) > (def c (open-tcp-client...

And yet again in a second try there is no failure, just silently swallows the certificate. The previous error must have been a fluke. So the issue is in the...