create/update '20250915.md' file

This commit is contained in:
littleisland 2025-09-15 12:56:16 +09:00
parent 2fe8d3f13d
commit 3fd58b4d4f

24
strudel/20250915.md Normal file
View File

@ -0,0 +1,24 @@
```javascript
samples({
loop0: 'loop/0_Life-Beat136bpm.wav',
loop1: 'loop/2_Life136bpm.wav',
}, 'https://raw.githubusercontent.com/HarakaraSite/samples/master/');
$:sound("sbd*4").gain(0.6).decay(0.5)
$_:sound("hh*8").gain(0.7).sometimesBy(0.1, x=>x.ply("2"))
$_:note("c2 c2 cs2 c2 e2 cs2 c2 c2").n(1).sound("supersaw")
.decay(sine.range(0.3,0.6).slow(2))
$:sound("loop0")
.sometimesBy(0.2,x=>x.speed("-1|0.8|1.1")).pan("<0.7 -0.7>")
.scrub(rand.seg(8).rib("1|5|3|7",2)).sometimesBy(0.2,x=>x.ply(2))
.gain(0.8)
.lpf(sine.range(1200,1800).slow(2))
//.loopAt(2)
$_:sound("loop1").scrub(rand.seg(16).rib(irand(8),1))
.speed("<0.8 1 1.1 0.9>")
.degradeBy(0.6)
.gain(0.8)
//.loopAt(2)
.lpf(1800)
```