Guile Potluck 2021 was an event where hackers got to advertise their exciting new projects. It wrapped up a few weeks ago, and at that time I was my intention to blog my way through the entrants right away. Well, I have not been expedient on that front.
I'm so very sorry it has taken me so long to get back to Guile Potluck 2021. Somewhere between family, kids, the day job, actually working on Guile, and the vague depression that quarantine seems to instill in me, it all got away from me.
But hey, let's see what we've got. I'll start from the end, and work my way back to the beginning.
https://git.sr.ht/~wklew/genshou
Here, wklew implements an extensible effects system, that allows stateful computations without any mutation. Thought provoking stuff, especially if you like pondering monads, denotational semantics and other such things.
Honestly, it is projects like this that activate my impostor syndrome with regards to Scheme. Many Scheme hackers approach it from a deep interest in Computer Science, and mostly I look at their work in awe whilst carrying on with my second-hand understanding of programming that somehow I've built a career on.
https://gitlab.com/rutger.van.beusekom/anguish
rutger.van.beusekom has written as parser for the POSIX sh language
using PEG grammar, which he hopes to convert into a full fledged shell
in future. At the moment, it converts shell statements into an SXML-like representation.
I am excited to see someone exercise Guile's PEG parser, which is both powerful and under-utilized.