lassik
lassik
I was looking for a command like `M-x number-base-at-point-cycle`. If I'm in `c-mode` and I have `0123` (octal) at point, it would convert it to `83` (decimal). If I then...
AFAICT Chez Scheme's `fluid-let` is compatible with [SRFI 15](https://srfi.schemers.org/srfi-15/srfi-15.html). In that case, this would be a compliant implementation of the latter: ```Scheme (library (srfi :15) (export fluid-let) (import (only (chezscheme)...
``` $ docker run --rm -it silex/emacs:24.5 Unable to find image 'silex/emacs:24.5' locally 24.5: Pulling from silex/emacs e756f3fdd6a3: Pull complete 65b984538131: Pull complete c33245f416b6: Pull complete Digest: sha256:696df85f4e3fcf6c5eb443adf82590e3f4b81fe24e6c06a9390f20fc54c21961 Status: Downloaded...
These now compile without producing any warnings on a 64-bit system: ``` clang -Wall -Wextra -pedantic -std=c99 -o lisp lisp.c clang -Wall -Wextra -pedantic -std=c99 -o lisp-nontail lisp-nontail.c clang -Wall...
I started a maintenance fork of Femtolisp at [lambdaconservatory/femtolisp](https://github.com/lambdaconservatory/femtolisp). PRs merged so far: * #31 by @larsbrinkhoff * #57 by @krytarowski * #59 by me Anyone interested in maintaining Femtolisp,...
Here are a few things to make the package adhere more closely to Emacs Lisp conventions. Tools used: * M-x package-lint (from MELPA) * M-x checkdoc Most significantly, added autoload...
Just came across https://www.reddit.com/r/sml/wiki/index which serves a lot of the same purpose as this list. We should copy most of the links from there. I think the Awesome list still...
[From the R7RS-large mailing list](https://groups.google.com/g/scheme-reports-wg2/c/sC1a-WdxC8M/m/GJHF23ZaAwAJ): >> Who will add R6RS support to Chibi? (Another rhetorical question.) > > I'm happy to accept patches which improve R6RS operability without significant increases...
Can be replaced with memcpy() or snprintf().
Finally got the chance to try Cyclone on a real program. I'm liking how easy it is to use and how much of a speedup it gives to complex code...