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
[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"] |
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
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, | |
), |
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
# -*- 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 |
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
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] |
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
# -*- 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() |
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
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\"" |