lisp-gui-examples icon indicating copy to clipboard operation
lisp-gui-examples copied to clipboard

GUI for generating a tone in various Lisp dialects

Results 2 lisp-gui-examples issues
Sort by recently updated
recently updated
newest added

thanks for the example. 1) eql5 -qgui does not work; everything work except this, strange 2) got some sound but also: ALSA lib pcm.c:8526:(snd_pcm_recover) underrun occurred ALSA lib pcm.c:8526:(snd_pcm_recover) underrun...

https://github.com/goober99/lisp-gui-examples/blob/90a76681ed27c378abc6a47ad563c72c114bed88/examples/racket/bleep.rkt#L41-L43 Taking the relevant portion from the racket example: ``` (/ (- (log freq) min-freq) (+ frequency-scale *min-position*)) ``` should instead be: ``` (+ *min-position* (/ (- (log freq) min-freq)...