SGF Utils 0.10 available

2021-12-15 Thread Thien-Thi Nguyen
release notes: The source code dir (below) also includes a pair of SGF files you can use to (further) test SGF Utils programs. README excerpt: SGF Utils is a set of programs for manipulating Smart Game Format files, principally for the game of Go. This release includes three programs

Re: why I love scheme

2021-12-15 Thread Zelphir Kaltstahl
Hello Stefan! This translates a recursive tree function into a tail recursive function. However, in this case, I am not sure it is really worth doing, in comparison to the naive (+ first-branch other-branch) solution. The reason is, that instead of a call stack for multiple branches, you are only

Tastiera Dura 1.17 available

2021-12-15 Thread Thien-Thi Nguyen
release notes: Benvenuti a tutti i file .xpm! LEGGIMI excerpt: Benvenuto a Tastiera Dura, un piccolo programma per divertire i bambini con forme, lettere ed immagini varie sul schermo in risposta ai dati della tastiera. Si chiama "dura" perché oltre ai "tasti per uscire", non è possi

Re: why I love scheme

2021-12-15 Thread Zelphir Kaltstahl
I did not know, that lambdas are allocated on the heap. I have a few questions now: How does this affect using fibers? (And how do fibers work better in that case?) The unrolling you mentioned. Would same not be possible for the naive-but-not-tail-recursive version? Is the idea, that the continu

Re: why I love scheme

2021-12-15 Thread Damien Mattei
hello Stefan, i have had two Scheme teacher before graduating and being teaching scheme too. One tell us that basically CPS is the same as recursivity. The other one said students to always give an example of the use of a Scheme function of our own unless it did not read and give a note to our wor