>https://strudel.cc/
// HAVA NAGILA TECHNO - ACID CRUNCH & STEREO PING-PONG (145 BPM)
setCpm(145 / 4)
// 1. Punchy 909 Drums
$drums: stack(
s("bd:4*4").gain(1.35),
s("~ [oh:1,oh:2] ~ [oh:1,oh:2]").gain(0.85),
s("hh:3*16").gain(0.35).pan(sine.range(0.25, 0.75)),
s("~ ~ ~ cp:1").gain(0.95).delay(0.2)
)
// 2. Distorted & Bitcrushed 303 Acid Bass
$acid: note("e1 [e1 e1] e1 [e1 e1] f1 [f1 f1] g#1 [g#1 g#1]")
.s("sawtooth")
.cutoff(sine.range(400, 3200).slow(4))
.resonance(20)
.decay(0.18)
.sustain(0)
.distort(1.4)
.crush(8)
.gain(0.75)
// 3. Rave Lead w/ Ping-Pong .jux(rev) Delay
$lead: note(`<
[e4 f4 g#4 f4] [e4 ~ e4 ~] [e4 f4 g#4 f4] [e4 ~ ~ ~]
[g#4 a4 b4 a4] [g#4 a4 b4 a4] [g#4 ~ f4 ~] [e4 ~ ~ ~]
[b4 b4 b4 b4] [c5 b4 a4 g#4] [b4 b4 b4 b4] [c5 b4 a4 g#4]
[a4 a4 a4 a4] [b4 a4 g#4 f4] [e4 ~ e4 ~] [e4 ~ ~ ~]
>`)
.jux(rev)
.s("supersaw")
.decay(0.25)
.sustain(0.1)
.delay(0.4)
.delaytime(0.25)
.delayfeedback(0.55)
.gain(0.7)
.orbit(1)