Thread
Stories related to "Generating audio with literate Futhark" across the full archive.
Abstract: "This paper describes live coding musical sound in a domain-specific language called Sporth. Sporth is a stack based language ideally suited for articulating complicated modular synthesis patches using a terse syntax. Motivations for building a live coding interface will be explained, alon...
#!/bin/sh
read -p "CW ===> " TEXT
echo ${TEXT} | morse | awk '{
if(length($0) == 0)
printf("P4\n");
else {
gsub(" dit", "P32L32E", $0);
gsub(" di", "P32L32E", $0);
gsub(" dah", "P32L8E", $0);
p...
Audio of court proceedings in which the EFF argue the unconstitutionality of National Security Letters.
Context: https://www.eff.org/press/releases/media-alert-oral-arguments-effs-national-security-letter-case
Relax or focus; explore dynamic soundscapes that merge nature and music using stochastic proccesses.
(mindscapes.co)
I, myself, like light, ambient, non-percussive music/noise softly playing in the background while I work and in the evenings as I drift off to sleep. Maybe some of you do too. Just found it today.
Author talks about switching through several languages before going with the boring (but effective!) option.
"Futhark is a small programming language designed to be compiled to highly performant GPU code. It is a statically typed, data-parallel, and purely functional array language, and comes with a heavily optimising ahead-of-time compiler that generates GPU code via OpenCL. Futhark is not designed for gr...
Includes transcript.
One of the best ways to learn is to pick a small problem you have already internalized, and to do it again but in a new language or in a new way in a language you already know.