Philip McGrath
Philip McGrath
It seems like it might be possible to remove the dependency on `libuuid` entirely. As long as you have a good source of randomness like `/dev/urandom`, generating Type 4 UUIDs...
Yes, but Chez Scheme already uses `UuidCreate` on Windows, and Windows also offers an interface to cryptographic-quality randomness, [`RtlGenRandom`](http://blogs.msdn.com/b/michael_howard/archive/2005/01/14/353379.aspx).
I believe this is fixed by #58, which was merged recently, but there isn't a new version on https://package.elm-lang.org yet.
I've vendored this package in as a Git submodule to get the fix from #58, and I can report that it's working great for us.
The Tiny CLOS variant of the Xerox license also applies to part of Larceny, apparently via Swindle: https://github.com/larcenists/larceny/blob/fef550c7d3923deb7a5a1ccd5a628e54cf231c75/COPYRIGHT#L105
Hi, I just wanted to follow up about this. If it would be better, I'd be happy to open a new license request for a `Xerox-TinyCLOS-variant` or something, instead. I...
Hi, On Wed, Jul 13, 2022, at 7:55 AM, Bost wrote: > > > Hi Leif, > > FYI I just created a patch [1] enabling #lang video on the...
Apparently markdown doesn't work when replying by email, so here's the code: ```scheme (define-public racket-with-video (let* ((commit "3c69669063c56ff8d269768589cb9506a33315e5") (revision "1") (video-version (git-version "0.2.3" revision commit))) (package (inherit racket) (version (string-append...
I haven't had a chance to test https://github.com/racket/gui/commit/1c4e78efc43036aabf77a7a1a313f19e23131b7e yet, but IIUC making the change at the level of `text:basic-mixin` wouldn't affect, for example, `text-field%`. I haven't personally wanted to configure...
It looks like the first step is to add support to `openssl` for setting the [`SSL_OP_CIPHER_SERVER_PREFERENCE`](https://www.openssl.org/docs/man1.1.1/man3/SSL_set_options.html) option. While investigating this further, most sources I'm finding about SSL/TLS configuration for servers,...