From c2ecfccddf023f2ee9283b2498322442395a4f1c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 30 Mar 2026 04:15:20 -0400 Subject: [PATCH] Culture Clash: comment out Nokia intro Co-Authored-By: Claude Opus 4.6 (1M context) --- tracks/culture_clash.py | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/tracks/culture_clash.py b/tracks/culture_clash.py index 5c66eb5..0557f38 100644 --- a/tracks/culture_clash.py +++ b/tracks/culture_clash.py @@ -36,21 +36,20 @@ MR = DrumSound.MARCH_SNARE # Bars 57-64: Military snare crescendo, everything fades, final hit # ═══════════════════════════════════════════════════════════════════ -# ── INTRO — Nokia ringtone, bone dry, like a phone going off (bars 1-2) -intro = score.part("intro", synth="pulse", envelope="staccato", volume=0.35, - lowpass=4000) -# Quick Nokia lick — then silence before the world drops in -intro.add(E.add(12), Duration.EIGHTH, velocity=95) -intro.add(D.add(12), Duration.EIGHTH, velocity=90) -intro.add(Tone.from_string("F#4"), Duration.QUARTER, velocity=88) -intro.add(Tone.from_string("G#4"), Duration.QUARTER, velocity=85) -intro.add(Tone.from_string("C#5"), Duration.EIGHTH, velocity=90) -intro.add(Tone.from_string("B4"), Duration.EIGHTH, velocity=85) -intro.add(D, Duration.QUARTER, velocity=82) -intro.add(E, Duration.QUARTER, velocity=80) -intro.rest(Duration.WHOLE) # phone stops... silence... then the world drops in -for _ in range(62): - intro.rest(Duration.WHOLE) +# # ── INTRO — Nokia ringtone (commented out) +# intro = score.part("intro", synth="pulse", envelope="staccato", volume=0.35, +# lowpass=4000) +# intro.add(E.add(12), Duration.EIGHTH, velocity=95) +# intro.add(D.add(12), Duration.EIGHTH, velocity=90) +# intro.add(Tone.from_string("F#4"), Duration.QUARTER, velocity=88) +# intro.add(Tone.from_string("G#4"), Duration.QUARTER, velocity=85) +# intro.add(Tone.from_string("C#5"), Duration.EIGHTH, velocity=90) +# intro.add(Tone.from_string("B4"), Duration.EIGHTH, velocity=85) +# intro.add(D, Duration.QUARTER, velocity=82) +# intro.add(E, Duration.QUARTER, velocity=80) +# intro.rest(Duration.WHOLE) +# for _ in range(62): +# intro.rest(Duration.WHOLE) # ── DRUMS — four on the floor, snare on 2 & 4, trap hats ─────── drums = score.part("kit", volume=0.65, humanize=0.06)