Results 8 issues of Hectarea

It is available from here: https://github.com/Hectarea1996/more-cffi It has some macros to make easier the wrapping and documenting of C bindings.

[Clith](https://github.com/Hectarea1996/clith) defines a general with macro. I know that similar projects exist, like [cl-with](https://github.com/stacksmith/cl-with) or [trivial-with](https://github.com/stacksmith/trivial-with). I hope this is not a problem. Although they are different enough, in my...

cantbuild

Recently, I modified the project [adp](https://github.com/Hectarea1996/adp). Now it extends ASDF to support [scribble](https://docs.racket-lang.org/scribble/index.html)-like files. It just defines the core functionality, and it needs exporters that will define useful functions and...

canbuild

Here is the definition of WITH-CONTEXT: ``` (defmacro with-context (window &body body) `(let* ((*window* ,window)) ,@body)) ``` The special variable `*window*` is changed but not the current context of the...

Allioli is a tiny project for make easier the creation of short lambdas. For example: `(lambda (x y) (list x 3 y))` can be rewritten as `#¿(list ? 3 ?)`....

A few months ago I changed my GitHub profile name, so the source paths of my projects will be invalid in half a year, IIRC. The affected projects with their...

Expanders tries to define the concept of expander and expansion (like [setf expansions](https://www.lispworks.com/documentation/HyperSpec/Body/05_aab.htm)). This way, defining macros that can be extensible by the user is a lot easier. Source code:...