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
// hjh: cache repeated math ops | |
// todo: `isPure` is incomplete (many deterministic ops are not currently labeled as pure) | |
UGenCache { | |
classvar <>cache; | |
classvar <>optimize = false; // default: use normal SC behavior | |
*clear { | |
cache = MultiLevelIdentityDictionary.new; | |
} |
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
// H. James Harkins | |
// A demonstration of the effect of convolving | |
// Dirac impulses against a convolution kernel. | |
// It turns out to be granular synthesis! | |
// (Except, every grain is the full kernel, | |
// no control over rate, duration etc.) | |
s.boot; | |
s.record; |
This file has been truncated, but you can view the full file.
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
0 info it worked if it ends with ok | |
1 verbose cli [ '/usr/local/bin/node', | |
1 verbose cli '/usr/local/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '--save-dev', | |
1 verbose cli 'wintersmith' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose install initial load of /home/dlm/Documents/web/package.json | |
5 verbose installManyTop reading scoped package data from /home/dlm/Documents/web/node_modules/handlebars/package.json |