This file contains 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
Brevity may be the soul of wit, but specificity is the death of ambiguity. | |
The last thing this needs is ambiguity... | |
Specifics: | |
The five pieces were recorded from 5/16/2018 - 6/22/2018. | |
The tonal content — rhythms, melodies, harmonies — were all decided in real time by Teletype, a small computer-y device that allows a person to code how and when they want musical events to happen. It uses lists to keep track of notes. It uses voltage to communicate with oscillators (the raw voice of a synthesizer). Teletype is also a platform that’s been heavily developed by the community that uses it, through the addition and expansion of its musical code language. |
This file contains 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
-- cranes | |
-- one buffer, two voices. | |
-- --------------------- | |
-- at start: | |
-- press key 2 to rec. | |
-- then: | |
-- press key 2 to play. | |
-- .. | |
-- listen: it's voice 1. | |
-- |
This file contains 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
-- cranes | |
-- dual looper / delay | |
-- (grid optional) | |
-- v2.12 @dan_derks | |
-- https://llllllll.co/t/21207 | |
-- --------------------- | |
-- to start: | |
-- press key 2 to rec. | |
-- sounds are written to | |
-- two buffers. |
This file contains 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
engine.name = 'R' | |
local R = require 'r/lib/r' | |
local Option = require 'params/option' | |
local Formatters = require 'formatters' | |
local KEY2 = 0 | |
local edit = "cutoff" | |
function init() | |
engine.new("LP", "MMFilter") |
This file contains 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
-- less concepts: | |
-- cellular automata sequencer | |
-- v2.0.3b @dan_derks | |
-- llllllll.co/t/less-concepts/ | |
-- | |
-- hold key 1: switch between | |
-- less concepts + | |
-- ~ r e f r a i n | |
-- | |
-- enc 1: navigate |
This file contains 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
--less concepts for druid | |
-- ONLY RUN, DO NOT UPLOAD. | |
-- UPLOADING WILL FREEZE CROW. | |
-- RUN IS 100% FINE + FUN. | |
seed = 36 | |
rule = 30 | |
next_seed = nil | |
new_seed = seed | |
low = 1 |
This file contains 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
-- construct | |
-- ~ ~ ~ ~ | |
-- four linked lfos | |
-- with variable stages + shapes | |
-- | |
-- E1: change base time | |
-- K2: construct new | |
-- K3: restart current | |
local scope = {0,0,0,0} |
This file contains 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
-- pattern_time study | |
pattern_time = require 'pattern_time' -- use the pattern_time lib in this script | |
function init() | |
grid_pattern = pattern_time.new() -- establish a pattern recorder | |
grid_pattern.process = grid_pattern_execute -- assign the function to be executed when the pattern plays back | |
grid_redraw() | |
end |
This file contains 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
-- physical: clock edition | |
-- norns study 4 | |
-- | |
-- grid controls arpeggio | |
-- midi controls root note | |
-- ENC1 = bpm | |
-- ENC2 = divisor | |
-- ENC3 = scale | |
-- KEY2 = hold | |
-- KEY3 = restart sequence |
This file contains 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
-- | |
-- PATCHWORK (v1.0.1) | |
-- | |
-- Dual sequencer for | |
-- norns, grid + crow | |
-- @olivier | |
-- llllllll.co/t/patchwork/28800 | |
-- | |
-- See full documentation | |
-- in library post on lines |
OlderNewer