lassik

Results 379 comments of lassik

But nix could be running some setup under a non-root user?

It runs as root (at least at first). Moving, chmod'ing, editing files and directories works. Getting strace to work in a container (for tracing system calls made by the Emacs...

That would be great! From Debian packages: `apt install docker.io` It may be that the Docker version is just too old. Though the problem is still weird. Does Emacs rummage...

Jeff is probably very busy with the Julia language. FL is still an excellent interpreter. I started a portable Scheme implementation based on it ([Up Scheme](https://github.com/lassik/upscheme)). However it doesn't keep...

My hope is the new R7RS "Foundations" group can come up with a language which recognizes both `define-library` and `library` (Marc has an idea for expanding the former into the...

Oh, the `7` stands for R7RS? I always wondered what it meant.

Would it be possible to use `-r ` for this? That would match at least Gauche and Sagittarius, making life easier for people who use multiple Schemes. I know Chibi...

(For reference, https://github.com/schemedoc/usage)

`strncpy()` doesn't guarantee null termination: https://man.openbsd.org/strncpy#EXAMPLES If you know the length of your strings, you might as well use `memcpy()` directly. If you don't know, or don't want to check,...