create/update '20250812.md' file

This commit is contained in:
littleisland 2025-08-12 15:49:18 +09:00
parent 0435a093e5
commit 461c0c8697

53
strudel/20250812.md Normal file
View File

@ -0,0 +1,53 @@
```javascript
setcps(60/60/4)
$:stack(
note("<c2 e2>").sound("sine"),
note("<c3 e3>").sound("sine").gain(0.5),
note("<g3 b3>").sound("sine").gain(0.25),
note("<e4 gs4>").sound("sine").gain(0.15),
note("<<c2 e3> <e3 c2>>".late(1)).fast(2).sound("sine").gain(0.0625),
).postgain(0.4).delay(0.75).room(0.3).gain(0.3).fast(2)
.fm(1).fmh(2)
.lpf(sine.range(100,500).seg(4).slow(4))
.lpq(10)
$:stack(
note("<c2 e2>").sound("sine"),
note("<c3 e3>").sound("sine").gain(0.5),
note("<g3 b3>").sound("sine").gain(0.25),
note("<e4 gs4>").sound("sine").gain(0.15),
note("<<c2 e3> <e3 c2>>".late(1)).fast(2).sound("sine").gain(0.0625),
).postgain(0.2).delay(0.75).room(0.3).gain(0.3)
.penv(2)
.lpf(sine.range(60,200).seg(14).fast(4))
.lpq(15)
$:stack(
note("<c2 e2>").sound("sine"),
note("<c3 e3>").sound("sine").gain(0.5),
note("<g3 b3>").sound("sine").gain(0.25),
note("<e4 gs4>").sound("sine").gain(0.15),
note("<<c2 e3> <e3 c2>>".late(1)).fast(2).sound("sine").gain(0.0625),
).postgain(0.6).delay(0.75).room(0.3).gain(0.3)
.lpenv(4)
.lpf(sine.range(200,300).seg(10).fast(2))
.lpq(15)
$:sound("pink").decay(0.1).hpf(800)
```