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
sudo yum install alsa-lib-devel jack-audio-connection-kit-devel ladspa-devel libcurl-devel freetype-devel libX11-devel libXcomposite-devel libXcursor-devel libXext-devel libXinerama-devel libXrandr-devel libXrender-devel webkit2gtk3-devel mesa-libGLU-devel mesa-libGL-devel |
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
# | |
# Xcode custom build rule (protobuf .proto source file) | |
# | |
# add custom build rule to process "Protobuf source files" | |
# set to this script | |
# add to Output Files: $(DERIVED_FILE_DIR)/protobuf/$(INPUT_FILE_BASE).pb.cc | |
# | |
set -eu |
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
// ChucK implementation of Pirkle's Korg35 filter digitization | |
// see https://www.willpirkle.com/app-notes/virtual-analog-korg35-lpf/ | |
// Virtual Analog one-pole filter | |
class VAOnePole extends Chugen | |
{ | |
1 => float a; | |
1 => float b; | |
0 => float z1; | |
1 => int isLPF; |
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
/** Ease in/out function with settable power and midpoint. | |
Use p parameter to adjust speed at endpoints (cubic: p=3, quartic: p=4) | |
Midpoint is point at which speed is fastest and uneased. | |
@param t time or independent variable in range [0,1]. Input should be scaled to this range from whatever source range is expected. | |
@param p power, e.g. quadratic=2, cubic=3. Non-integral powers can be used to fine-tune the curve. | |
@param mid midpoint of curve, where it is "most linear". | |
@return output value in range [0,1]. Can be multiplied to scale to desired range. |
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
164 => float bpm; | |
(60/bpm)::second => dur quarter; | |
quarter/2 => dur eighth; | |
[0.0, 2, 4, 7] @=> float maj[]; | |
[0.0, 3, 8, 10] @=> float majInv[]; | |
[0.0, 2, 3, 7] @=> float min[]; | |
[0.0, 4, 7, 11] @=> float mod[]; |
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
See https://wiki.archlinux.org/index.php/WPA_supplicant | |
http://www.cs.upc.edu/lclsi/Manuales/wireless/files/wpa_supplicant.conf | |
https://wiki.debian.org/WiFi/HowToUse#Command_Line | |
edit these files: | |
avahi-daemon.conf | |
/etc/default/avahi-daemon (set thing to 0) | |
/etc/network/interfaces | |
/etc/wpa_supplicant/wpa_supplicant.conf |
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
--- My Stuff --- | |
@inproceedings{wang2009smule, | |
title={{S}mule= Sonic Media: {A}n Intersection of the Mobile, Musical, and Social}, | |
author={Wang, Ge and Essl, Georg and Smith, Jeff and Salazar, Spencer and Cook, P and Hamilton, Rob and Fiebrink, Rebecca and Berger, Jonathan and Zhu, David and Ljungstrom, Mattias and others}, | |
booktitle={Proceedings of the International Computer Music Conference}, | |
pages={16--21}, | |
year={2009} | |
} |