├── .gitignore ├── README.md ├── license └── CC-BY-SA-4.0 ├── src ├── beginner │ ├── book.toml │ └── src │ │ ├── SUMMARY.md │ │ ├── advanced-patterns-dump.md │ │ ├── ch00-introduction.md │ │ ├── ch01-00-getting-started.md │ │ ├── ch01-01-installation.md │ │ ├── ch01-02-ide.md │ │ ├── ch01-03-make-sound.md │ │ ├── ch01-04-calc.md │ │ ├── ch02-00-simple-tunes.md │ │ ├── ch02-01-melody.md │ │ ├── ch02-02-artic.md │ │ ├── ch02-03-chords.md │ │ ├── ch03-00-simple-synth.md │ │ ├── ch03-01-subtract-synth.md │ │ ├── ch03-02-lfo-synth.md │ │ ├── ch03-03-additive.md │ │ ├── ch03-04-am-synth.md │ │ ├── ch03-05-fm-synth.md │ │ ├── ch03-06-control-parameters.md │ │ ├── ch03-07-poly-synths.md │ │ ├── ch03-08-mono-synths.md │ │ ├── ch03-09-stereo.md │ │ ├── ch04-00-basic-effects.md │ │ ├── ch04-01-compression.md │ │ ├── ch04-02-delay.md │ │ ├── ch04-03-comb.md │ │ ├── ch04-04-reverb.md │ │ ├── ch04-05-sample-hold.md │ │ ├── ch04-06-modulation.md │ │ ├── chX-YZ-arpeggiation.md │ │ ├── chX-YZ-sub-patterns.md │ │ ├── chapter_1.md │ │ ├── interlude-01-simple-song.md │ │ ├── interlude-02-303.md │ │ ├── interlude-03-drum.md │ │ └── interlude-04-dance.md ├── cookbook │ ├── book.toml │ └── src │ │ ├── SUMMARY.md │ │ └── chapter_1.md ├── intermediate │ ├── book.toml │ └── src │ │ ├── SUMMARY.md │ │ ├── composing-in-supercollider.md │ │ ├── introduction.md │ │ ├── sclang-quick-reference.md │ │ └── supercollider-architecture.md └── synthesis │ ├── book.toml │ └── src │ ├── SUMMARY.md │ └── chapter_1.md └── supercollider-style-guidelines.md /.gitignore: -------------------------------------------------------------------------------- 1 | books 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/README.md -------------------------------------------------------------------------------- /license/CC-BY-SA-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/license/CC-BY-SA-4.0 -------------------------------------------------------------------------------- /src/beginner/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/book.toml -------------------------------------------------------------------------------- /src/beginner/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/SUMMARY.md -------------------------------------------------------------------------------- /src/beginner/src/advanced-patterns-dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/advanced-patterns-dump.md -------------------------------------------------------------------------------- /src/beginner/src/ch00-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/ch00-introduction.md -------------------------------------------------------------------------------- /src/beginner/src/ch01-00-getting-started.md: -------------------------------------------------------------------------------- 1 | # Chapter 1 2 | -------------------------------------------------------------------------------- /src/beginner/src/ch01-01-installation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch01-02-ide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch01-03-make-sound.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch01-04-calc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/ch01-04-calc.md -------------------------------------------------------------------------------- /src/beginner/src/ch02-00-simple-tunes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch02-01-melody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/ch02-01-melody.md -------------------------------------------------------------------------------- /src/beginner/src/ch02-02-artic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/ch02-02-artic.md -------------------------------------------------------------------------------- /src/beginner/src/ch02-03-chords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/ch02-03-chords.md -------------------------------------------------------------------------------- /src/beginner/src/ch03-00-simple-synth.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-01-subtract-synth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/ch03-01-subtract-synth.md -------------------------------------------------------------------------------- /src/beginner/src/ch03-02-lfo-synth.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-03-additive.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-04-am-synth.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-05-fm-synth.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-06-control-parameters.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-07-poly-synths.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-08-mono-synths.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch03-09-stereo.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-00-basic-effects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-01-compression.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-02-delay.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-03-comb.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-04-reverb.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-05-sample-hold.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/ch04-06-modulation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/chX-YZ-arpeggiation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/chX-YZ-arpeggiation.md -------------------------------------------------------------------------------- /src/beginner/src/chX-YZ-sub-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/chX-YZ-sub-patterns.md -------------------------------------------------------------------------------- /src/beginner/src/chapter_1.md: -------------------------------------------------------------------------------- 1 | # Chapter 1 2 | 3 | -------------------------------------------------------------------------------- /src/beginner/src/interlude-01-simple-song.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/beginner/src/interlude-01-simple-song.md -------------------------------------------------------------------------------- /src/beginner/src/interlude-02-303.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/interlude-03-drum.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/beginner/src/interlude-04-dance.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cookbook/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/cookbook/book.toml -------------------------------------------------------------------------------- /src/cookbook/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/cookbook/src/SUMMARY.md -------------------------------------------------------------------------------- /src/cookbook/src/chapter_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/cookbook/src/chapter_1.md -------------------------------------------------------------------------------- /src/intermediate/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/intermediate/book.toml -------------------------------------------------------------------------------- /src/intermediate/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/intermediate/src/SUMMARY.md -------------------------------------------------------------------------------- /src/intermediate/src/composing-in-supercollider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/intermediate/src/composing-in-supercollider.md -------------------------------------------------------------------------------- /src/intermediate/src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/intermediate/src/introduction.md -------------------------------------------------------------------------------- /src/intermediate/src/sclang-quick-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/intermediate/src/sclang-quick-reference.md -------------------------------------------------------------------------------- /src/intermediate/src/supercollider-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/intermediate/src/supercollider-architecture.md -------------------------------------------------------------------------------- /src/synthesis/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/synthesis/book.toml -------------------------------------------------------------------------------- /src/synthesis/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/src/synthesis/src/SUMMARY.md -------------------------------------------------------------------------------- /src/synthesis/src/chapter_1.md: -------------------------------------------------------------------------------- 1 | # Chapter 1 2 | -------------------------------------------------------------------------------- /supercollider-style-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercollider/learn/HEAD/supercollider-style-guidelines.md --------------------------------------------------------------------------------