Skip to content

Instantly share code, notes, and snippets.

View GodrichBeaulieu's full-sized avatar
🌴
On vacation

GodrichBeaulieu

🌴
On vacation
View GitHub Profile
# John Cage's 4'33" in Sonic Pi
# First movement
sleep 133
# Second movement
sleep 134
# Third movement
sleep 86
@GodrichBeaulieu
GodrichBeaulieu / gist:b55bcef289fbc39393a7bbbbd53344bf
Created August 10, 2023 12:50
ADSR sine sonic pi surprises
# Sonic Pi Script
use_synth :sine
# Function for the slow oscillation
define :play_slow do |note|
play note, attack: 0.5, decay: 1, sustain_level: 0.5, sustain: 2, release: 2, amp: 0.5
sleep 4
end