This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DUBSTEP | |
# Combines ideas from my other gists | |
current_bpm = 140.0 | |
use_bpm current_bpm | |
# WOBBLE BASS | |
define :wob do | |
use_synth :saw | |
lowcut = note(:E1) # ~ 40Hz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use_bpm 120 | |
# You will need Kount Drums Volume 4 sample 😬 | |
# get it here: https://thekount.sellfy.store/p/kount-drums-volume-4/ | |
cymbols = "/Users/nischal/Music/Kount Drums Volume 4/One Shot/Highhats and Cymbals" | |
snares = "/Users/nischal/Music/Kount Drums Volume 4/One Shot/Snares" | |
note_value = 0.5 # eighth notes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
string_code <- | |
" | |
diamonds |> | |
select(carat, cut, color, clarity, price) |> | |
group_by(color) |> | |
summarise(n = n(), price = mean(price)) | |
" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google-cloud-bigquery==1.8.0 | |
pandas==0.25.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Open Eye Signal cover | |
# Drum sample pack: https://thekount.sellfy.store/p/kount-drums-volume-4/ | |
kicks = "/Users/nischal/Music/Kount Drums Volume 4/One Shot/Kicks" | |
hh = "/Users/nischal/Music/Kount Drums Volume 4/One Shot/Hihats_Cymbals" | |
snares = "/Users/nischal/Music/Kount Drums Volume 4/One Shot/Snares" | |
percs = "/Users/nischal/Music/Kount Drums Volume 4/One Shot/Percussion" | |
textures = "/Users/nischal/Music/Kount Drums Volume 4/Textures" | |
# opening distant sounds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Shepard Tone | |
start_amp, end_amp = 0, 1 | |
with_fx :reverb, room: 0.8, mix: 0.8 do | |
with_fx :lpf, cutoff: 100 do | |
live_loop :shephard do | |
high = synth :saw, amp: start_amp, amp_slide: 20, notes: [:c5], | |
note_slide: 30, release: 30 | |
control high, notes: [:c7], amp: end_amp |
OlderNewer