Skip to content

Instantly share code, notes, and snippets.

View josiah-wolf-oberholtzer's full-sized avatar
㊙️
info goblin

J. Wolf Oberholtzer josiah-wolf-oberholtzer

㊙️
info goblin
View GitHub Profile
@josiah-wolf-oberholtzer
josiah-wolf-oberholtzer / Makefile
Created January 9, 2016 04:36
Using private keys in a Makefile
all: private-plugin-one private-plugin-two
private-plugin-one:
. ./private-keys.conf && \
echo "Installing plugin one with private key \"$$PLUGIN_ONE_KEY\""
private-plugin-two:
. ./private-keys.conf && \
echo "Installing plugin two with private key \"$$PLUGIN_TWO_KEY\""
# -*- encoding: utf-8 -*-
from abjad import *
def make_string_trio():
#rhythm_maker = rhythmmakertools.TaleaRhythmMaker(
# talea=rhythmmakertools.Talea([1, 2, 3, -1], 8),
# )
#durations = [Duration(4, 4)] * 4
score = make_empty_score()
from abjad import *
def compute_prime_form(pitch_class_set):
rotations = pitch_class_set_to_rotations(pitch_class_set)
intervals, pitch_class_set = sorted(rotations.items())[0]
inverted_pitch_class_set = [12 - _ for _ in pitch_class_set]
inverted_rotations = pitch_class_set_to_rotations(inverted_pitch_class_set)
inverted_intervals, inverted_pitch_class_set = sorted(
inverted_rotations.items())[0]
# -*- encoding: utf-8 -*-
import subprocess
import time
from supriya import Server, SynthDefBuilder, Synth
from supriya import patterntools
from supriya import synthdefs
from supriya import synthdeftools
from supriya import ugentools
channel_count = 2
import abjad
import abjadext.rmakers
import itertools
note_rmaker = abjadext.rmakers.NoteRhythmMaker(
tie_specifier=abjadext.rmakers.TieSpecifier(
tie_across_divisions=True,
tie_consecutive_notes=True,
),
[submodule "pack/vendor/start/ctrlp.vim"]
path = pack/vendor/start/ctrlp.vim
url = https://github.com/ctrlpvim/ctrlp.vim
[submodule "pack/vendor/start/nerdtree-git-plugin"]
path = pack/vendor/start/nerdtree-git-plugin
url = https://github.com/Xuyuanp/nerdtree-git-plugin
[submodule "pack/vendor/start/nerdtree"]
path = pack/vendor/start/nerdtree
url = https://github.com/scrooloose/nerdtree
[submodule "pack/vendor/start/syntastic"]