create/update '20250915.md' file

This commit is contained in:
littleisland 2025-09-16 14:11:34 +09:00
parent 3fd58b4d4f
commit f0e6b43398

View File

@ -21,4 +21,27 @@ $_:sound("loop1").scrub(rand.seg(16).rib(irand(8),1))
//.loopAt(2)
.lpf(1800)
```
```javascript
setcps(170/60/4)
$_:sound("sbd").struct(irand(3)
.pick(["1 0 1 0","1? 1? 1 0","1? 0 1 1?"]).fast(2))
.sometimesBy(0.1,x=>x.ply(2)).lpf(300).lpq(5)
.decay(1.2)._pianoroll()
$:sound("sd").struct(irand(4)
.pick(["0 1 0 1",
"1? 1 0 1?",
"0 1? 1 1",
"1? 1 1 1?"]).fast(2))
.sometimesBy(0.15,x=>x.ply("2|4"))
.delay(1/16).delayfb(1/32).decay(0.5)
$_:sound("cr").degradeBy(0.25).decay(0.7)
$:sound("hh*8").degradeBy(0.15).sometimesBy(0.2,x=>x.ply("2|4"))
$_:note("<[0 1]@2 [[1|2]@2 1] [0 [2|1]] [1 0]>"
.inhabit(["c2 cs2 c2 c2", "cs2 cs2 f2 cs2","f2 f2 e2 f2"]))
.sometimes(x=>x.rev())
.sound("supersaw").detune(1.2).decay(0.3)
```