Skip to content

Instantly share code, notes, and snippets.

View hzulla's full-sized avatar

Hanno Zulla hzulla

View GitHub Profile
@hzulla
hzulla / gist:52da82282a9f59d350257ce6b745d635
Created January 8, 2020 09:27
Proton Chuchel Report 2020-01-08
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz
CPU Family: 0x6
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz
CPU Family: 0x6
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz
CPU Family: 0x6
@hzulla
hzulla / sonicpi-noodle.txt
Last active March 12, 2020 21:09
Sonic Pi: Noodling Around
# Noodling around with random melodies on Sonic Pi
# Audio here: https://soundcloud.com/hanno-zulla/sonic-pi-noodling-around
#
# Drum loop via Ethan Hein at https://docs.google.com/spreadsheets/d/19_3BxUMy3uy1Gb0V8Wc-TcG7q16Amfn6e8QVw4-HuD0/edit#gid=0
use_bpm 105
drum_loop = [
# Take Me To The Nerdy Gras
{
@hzulla
hzulla / sonicpi-makepeachthepresident.txt
Created December 11, 2015 23:52
Sonic Pi: Make Peach the President
# make peach the president
#
# drumloop based on
# http://www.ethanhein.com/wp/2013/my-collection-of-transcribed-rhythm-patterns/
use_bpm 95
drumloop = {
:drum_bass_hard => [0,7,8,14],
:drum_snare_hard => [4,12],
@hzulla
hzulla / sonicpi-crash-course.txt
Last active May 9, 2023 09:25
Crash into Sonic Pi: Learn to code music in less than 30 minutes
# -------------------------------------------
# CRASH INTO SONIC PI!
# Learn to code music in less than 30 minutes
# -------------------------------------------
# - download Sonic Pi from sonic-pi.net
# - copy and paste these code snippets
# - change and experiment with the snippets
# - go!
# -------------------------------------------
# These snippets were made for a workshop to
@hzulla
hzulla / sonicpi-chords.txt
Created November 12, 2015 09:59
Sonic Pi: Chord Progression Experiment
m = [
chord(:A3, :minor), 1,
chord(:F3, :major), 1,
chord(:C3, :major), 1,
chord(:G3, :major), 1
].ring
live_loop :chords do
use_synth :beep
c = m.tick
@hzulla
hzulla / sonicpi-rhythm.txt
Last active November 12, 2015 09:57
Sonic Pi: Techno Rhythm Experiment
use_bpm 120
live_loop :bumms do
sync :drums
sample :bd_boom
sleep 4
end
live_loop :drums do
with_fx :wobble do
@hzulla
hzulla / sonicpi-bleepbloop.txt
Last active November 6, 2015 15:07
Sonic Pi: Bleep Bloop
live_loop :bloops do
s = scale(:c4, :major)
with_fx :panslicer do
with_fx :reverb do
n = s.choose
2.times do
play n, release: 0.25
sleep 0.125
end
end