├── .gitignore ├── 1- Introduction ├── 1.1- What This Repo Is │ └── 1.1- What This Repo Is.md ├── 1.2- Why I Live Code │ └── 1.2- Why I Live Code.md ├── 1.3- Why SuperCollider │ └── 1.3- Why SuperCollider.md └── 1.4- How To Use This Repo │ └── 1.4- How To Use This Repo.md ├── 2- Basics ├── 2.1- Recommended Addons │ └── 2.1- Recommended Addons.md ├── 2.2- ProxySpace - My Foundation For Live Coding In SuperCollider │ ├── 2.2- ProxySpace Basics.scd │ ├── 2.2- ProxySpace Patterns.scd │ └── 2.2- Why ProxySpace.md ├── 2.3- Setup Code - Making Performance Easier │ └── 2.3- Setup Code - Making Performance Easier.md └── 2.4- Pbinds and Patterns - The Basics │ ├── 2.4- Pbinds and Patterns - Examples.scd │ └── 2.4- Pbinds and Patterns.md ├── 3- Rhythm ├── 3.1- Rhythmic Construction │ └── 3.1- Rhythmic Construction For Algorave Sets.md ├── 3.2- Basic Rhythms │ ├── 3.2- Basic Rhythms.md │ └── 3.2- Basic Rhythms.scd ├── 3.3- Techniques For Modifying Rhythm │ ├── 3.3- Techniques For Modifying Rhythm.md │ └── 3.3- Techniques for Modifying Rhythm - Examples.scd ├── 3.4- Euclidean Rhythms │ ├── 3.4- Euclidean Rhythms - Examples.scd │ └── 3.4- Euclidean Rhythms.md ├── 3.5- StageLimiter Abuse │ ├── 3.5- StageLimiter Abuse - Examples.scd │ └── 3.5- StageLimiter Abuse.md ├── 3.6- L-Systems For Rhythm │ ├── 3.6- L-Systems For Rhythm - Examples.scd │ └── 3.6- L-Systems For Rhythm.md └── 3.7- Looping │ ├── 3.7- Looping.md │ └── 3.7- Looping.scd ├── 4- Melody and Pitch ├── 4.1- Pitch And Patterns │ ├── 4.1- Pitch And Patterns - Examples.scd │ └── 4.1- Pitch And Patterns.md ├── 4.2- Types of Pitch Arrangement │ ├── 4.2- Types of Pitch Arrangement - Examples.scd │ └── 4.2- Types of Pitch Arrangement.md ├── 4.3- Riffs │ ├── 4.3- Riffs - Examples.scd │ └── 4.3- Riffs.md ├── 4.4- Pitch and Static Synths │ ├── 4.4- Pitch and Static Synths - Examples.scd │ └── 4.4- Pitch and Static Synths.md ├── 4.5- Between Pitch And Noise │ ├── 4.5- Between Pitch And Noise - Examples.scd │ └── 4.5- Between Pitch And Noise.md ├── 4.6- Good SynthDef Writing for co34pt_LiveCode │ └── 4.6- Good SynthDef Writing for co34pt_LiveCode.md └── 4.7- MIDI │ ├── 4.7- MIDI.md │ ├── 4.7- MIDI.scd │ └── qjackctl_connect.png ├── 5- Non-pattern Techniques ├── 5.1- Drones │ ├── 5.1- Drones - Examples.scd │ └── 5.1- Drones.md ├── 5.2- SuperCollider as a Modular Synth │ ├── 5.2- SuperCollider as a Modular Synth.md │ └── 5.2- SuperCollider as a Modular Synth.scd └── 5.3- Adding Effects │ ├── 5.3- Adding Effects.md │ └── 5.3- Adding Effects.scd ├── 6- Visuals and Data ├── 6.1- FreqScope and Visuals │ ├── 6.1- FreqScope and Visuals - Example.scd │ └── 6.1- FreqScope and Visuals.md ├── 6.2- OSC and Data Streams │ ├── 6.2- OSC and Data Streams - Example Files │ │ ├── 6.2- OSC and Data Streams - Example.scd │ │ └── python_randomNumber.py │ └── 6.2- OSC and Data Streams.md └── 6.3- Using Datasets │ ├── 6.3- Using Datasets - Example.md │ ├── 6.3- Using Datasets - Example.scd │ ├── 6.3- Using Datasets.md │ └── Datasets │ └── ArmstrongFoyer_Data.csv ├── Documents └── FirstEdition │ ├── README.md │ ├── howtolivecode.pdf │ ├── howtolivecode_epub.zip │ └── howtolivecode_pages.zip ├── README.md ├── Setup ├── Setup.scd ├── Setup_MIDI.scd ├── Snippets.scd ├── SynthDefs.scd └── noDeps │ ├── Setup.scd │ ├── Snippets.scd │ ├── SynthDefs.scd │ └── readme.md ├── docsList.md ├── gh_pages_site ├── HowToRenameDocs.md ├── docs │ ├── 1-1-What-This-Repo-Is.md │ ├── 1-2-Why-I-Live-Code.md │ ├── 1-3-Why-SuperCollider.md │ ├── 1-4-How-To-Use-This-Repo.md │ ├── 2-1-Recommended-Addons.md │ ├── 2-2-Why-ProxySpace.md │ ├── 2-3-Setup-Code---Making-Performance-Easier.md │ ├── 2-4-Pbinds-and-Patterns.md │ ├── 3-1-Rhythmic-Construction-For-Algorave-Sets.md │ ├── 3-2-Basic-Rhythms.md │ ├── 3-3-Techniques-For-Modifying-Rhythm.md │ ├── 3-4-Euclidean-Rhythms.md │ ├── 3-5-StageLimiter-Abuse.md │ ├── 3-6-L-Systems-For-Rhythm.md │ ├── 3-7-Looping.md │ ├── 4-1-Pitch-And-Patterns.md │ ├── 4-2-Types-of-Pitch-Arrangement.md │ ├── 4-3-Riffs.md │ ├── 4-4-Pitch-and-Static-Synths.md │ ├── 4-5-Between-Pitch-And-Noise.md │ ├── 4-6-Good-SynthDef-Writing-for-co34pt_LiveCode.md │ ├── 4-7-MIDI.md │ ├── 5-1-Drones.md │ ├── 5-2-SuperCollider-as-a-Modular-Synth.md │ ├── 6-1-FreqScope-and-Visuals.md │ ├── 6-2-OSC-and-Data-Streams.md │ ├── 6-3-Using-Datasets.md │ ├── backup.md │ │ ├── 1-1-What-This-Repo-Is.md │ │ ├── 1-2-Why-I-Live-Code.md │ │ ├── 1-3-Why-SuperCollider.md │ │ ├── 1-4-how-to-use-this-repo.md │ │ ├── 2-1-Recommended-Addons.md │ │ ├── 2-2-1-Why-ProxySpace.md │ │ ├── 2-3-Setup-Code---Making-Performance-Easier.md │ │ ├── 2-4-Pbinds-and-Patterns.md │ │ ├── 3-1-Rhythmic-Construction-For-Algorave-Sets.md │ │ ├── 3-2-Basic-Rhythms.md │ │ ├── 3-3-Techniques-For-Modifying-Rhythm.md │ │ ├── 3-4-Euclidean-Rhythms.md │ │ ├── 3-5-StageLimiter-Abuse.md │ │ ├── 3-6-L-Systems-For-Rhythm.md │ │ ├── 4-1-Pitch-And-Patterns.md │ │ ├── 4-2-Types-of-Pitch-Arrangement.md │ │ ├── 4-3-Riffs.md │ │ ├── 4-4-Pitch-and-Static-Synths.md │ │ ├── 4-5-Between-Pitch-And-Noise.md │ │ ├── 4-6-Good-SynthDef-Writing-for-co34pt-LiveCode.md │ │ ├── 5-1-Drones.md │ │ ├── 5-2-SuperCollider-as-a-Modular-Synth.md │ │ ├── 6-1-FreqScope-and-Visuals.md │ │ ├── index.md │ │ ├── legalcode.md │ │ ├── sampleList.md │ │ └── todo.md │ ├── index.md │ ├── legalcode.md │ ├── sampleList.md │ └── todo.md ├── mkdocs.yml └── site │ ├── 1-1-What-This-Repo-Is │ └── index.html │ ├── 1-2-Why-I-Live-Code │ └── index.html │ ├── 1-3-Why-SuperCollider │ └── index.html │ ├── 1-4-How-To-Use-This-Repo │ └── index.html │ ├── 2-1-Recommended-Addons │ └── index.html │ ├── 2-2-Why-ProxySpace │ └── index.html │ ├── 2-3-Setup-Code---Making-Performance-Easier │ └── index.html │ ├── 2-4-Pbinds-and-Patterns │ └── index.html │ ├── 3-1-Rhythmic-Construction-For-Algorave-Sets │ └── index.html │ ├── 3-2-Basic-Rhythms │ └── index.html │ ├── 3-3-Techniques-For-Modifying-Rhythm │ └── index.html │ ├── 3-4-Euclidean-Rhythms │ └── index.html │ ├── 3-5-StageLimiter-Abuse │ └── index.html │ ├── 3-6-L-Systems-For-Rhythm │ └── index.html │ ├── 3-7-Looping │ └── index.html │ ├── 4-1-Pitch-And-Patterns │ └── index.html │ ├── 4-2-Types-of-Pitch-Arrangement │ └── index.html │ ├── 4-3-Riffs │ └── index.html │ ├── 4-4-Pitch-and-Static-Synths │ └── index.html │ ├── 4-5-Between-Pitch-And-Noise │ └── index.html │ ├── 4-6-Good-SynthDef-Writing-for-co34pt_LiveCode │ └── index.html │ ├── 4-7-MIDI │ └── index.html │ ├── 5-1-Drones │ └── index.html │ ├── 5-2-SuperCollider-as-a-Modular-Synth │ └── index.html │ ├── 6-1-FreqScope-and-Visuals │ └── index.html │ ├── 6-2-OSC-and-Data-Streams │ └── index.html │ ├── 6-3-Using-Datasets │ └── index.html │ ├── css │ ├── base.css │ ├── bootstrap-custom.css │ ├── bootstrap-custom.min.css │ ├── cinder.css │ ├── font-awesome-4.0.3.css │ └── highlight.css │ ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── img │ ├── favicon.ico │ ├── grid1.png │ ├── grid10.png │ ├── grid11.png │ ├── grid12.png │ ├── grid13.png │ ├── grid14.png │ ├── grid15.png │ ├── grid16.png │ ├── grid17.png │ ├── grid18.png │ ├── grid19.png │ ├── grid2.png │ ├── grid20.png │ ├── grid3.png │ ├── grid4.png │ ├── grid5.png │ ├── grid6.png │ ├── grid7.png │ ├── grid8.png │ └── grid9.png │ ├── index.html │ ├── js │ ├── base.js │ ├── bootstrap-3.0.3.min.js │ ├── highlight.pack.js │ └── jquery-1.10.2.min.js │ ├── legalcode │ └── index.html │ ├── search │ ├── lunr.min.js │ ├── mustache.min.js │ ├── require.js │ ├── search-results-template.mustache │ ├── search.js │ ├── search_index.json │ └── text.js │ ├── sitemap.xml │ └── todo │ └── index.html ├── legalcode.txt ├── samples └── set1 │ ├── breaks175 │ ├── 112458__deller24__complete-loop.wav │ ├── 123292__dirtyjewbs__drumstep-loop-175bpm.wav │ ├── 151350__freestylednb__175-loop.aiff │ ├── 250093__amfe__175bpm-amen-punchy-loop.wav │ ├── 270313__dee-vigga__dv-amen-break-175bpm.wav │ └── 65780__dahovv__dnb-distorted-atmosphere-rhythm-175.wav │ ├── c │ └── 24786__young-daddy__clap-mix.wav │ ├── ch │ ├── Crsnred_scr_ht_2.wav │ ├── Crsnred_scr_ht_3.wav │ ├── Crsnred_scr_ht_8.wav │ └── Crsnred_scr_prc_24.wav │ ├── ding │ └── Crsnred_scr_prc_20.wav │ ├── fx │ ├── Crsnred_scr_fx_11.wav │ ├── Crsnred_scr_fx_24.wav │ ├── Crsnred_scr_fx_3.wav │ ├── Crsnred_scr_fx_31.wav │ ├── Crsnred_scr_fx_43.wav │ └── Crsnred_scr_fx_9.wav │ ├── gab │ └── Crsnred_scr_fx_52.wav │ ├── ht │ └── Crsnred_scr_prc_3.wav │ ├── k │ ├── 1-by-asparagus.wav │ ├── 2-by-adamskitek.wav │ └── Crsnred_scr_prc_25.wav │ ├── lfx │ ├── Crsnred_scr_fx_36.wav │ └── Crsnred_scr_fx_51.wav │ ├── mt │ └── Crsnred_scr_prc_2.wav │ ├── oh │ ├── Crsnred_scr_ht_14.wav │ └── Crsnred_scr_ht_9.wav │ ├── pk │ ├── 1.wav │ └── Crsnred_scr_prc_22.wav │ ├── q │ └── Crsnred_scr_fx_28.wav │ ├── s │ ├── Crsnred_scr_snr_1.wav │ ├── Crsnred_scr_snr_2.wav │ ├── Crsnred_scr_snr_3.wav │ ├── Crsnred_scr_snr_6.wav │ └── Crsnred_scr_snr_9.wav │ ├── sampleList.md │ ├── sfx │ ├── Crsnred_scr_fx_10.wav │ ├── Crsnred_scr_fx_14.wav │ ├── Crsnred_scr_fx_20.wav │ ├── Crsnred_scr_fx_29.wav │ ├── Crsnred_scr_fx_30.wav │ ├── Crsnred_scr_fx_40.wav │ ├── Crsnred_scr_fx_46.wav │ ├── Crsnred_scr_fx_53.wav │ ├── Crsnred_scr_fx_54.wav │ ├── Crsnred_scr_fx_7.wav │ └── Crsnred_scr_fx_8.wav │ ├── shout │ ├── 2.wav │ ├── 1.wav │ ├── 3.wav │ ├── 4.wav │ ├── 5.wav │ └── 6.wav │ ├── sk │ ├── 1.wav │ └── 2.wav │ ├── stab │ ├── 01_adamskitek_rave-2_stab.wav │ ├── 02_adamskitek_recco-2_stab.wav │ └── 3.wav │ ├── strings │ └── 62359__fons__space-string.wav │ └── t │ ├── Crsnred_scr_prc_16.wav │ ├── Crsnred_scr_prc_26.wav │ └── Crsnred_scr_prc_27.wav ├── scripts └── install_supercollider_linux.sh ├── startingExampleDocument.scd ├── styleguide.md └── todo.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | *.bak 4 | *looperman* 5 | -------------------------------------------------------------------------------- /1- Introduction/1.1- What This Repo Is/1.1- What This Repo Is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/1- Introduction/1.1- What This Repo Is/1.1- What This Repo Is.md -------------------------------------------------------------------------------- /1- Introduction/1.2- Why I Live Code/1.2- Why I Live Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/1- Introduction/1.2- Why I Live Code/1.2- Why I Live Code.md -------------------------------------------------------------------------------- /1- Introduction/1.3- Why SuperCollider/1.3- Why SuperCollider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/1- Introduction/1.3- Why SuperCollider/1.3- Why SuperCollider.md -------------------------------------------------------------------------------- /1- Introduction/1.4- How To Use This Repo/1.4- How To Use This Repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/1- Introduction/1.4- How To Use This Repo/1.4- How To Use This Repo.md -------------------------------------------------------------------------------- /2- Basics/2.1- Recommended Addons/2.1- Recommended Addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.1- Recommended Addons/2.1- Recommended Addons.md -------------------------------------------------------------------------------- /2- Basics/2.2- ProxySpace - My Foundation For Live Coding In SuperCollider/2.2- ProxySpace Basics.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.2- ProxySpace - My Foundation For Live Coding In SuperCollider/2.2- ProxySpace Basics.scd -------------------------------------------------------------------------------- /2- Basics/2.2- ProxySpace - My Foundation For Live Coding In SuperCollider/2.2- ProxySpace Patterns.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.2- ProxySpace - My Foundation For Live Coding In SuperCollider/2.2- ProxySpace Patterns.scd -------------------------------------------------------------------------------- /2- Basics/2.2- ProxySpace - My Foundation For Live Coding In SuperCollider/2.2- Why ProxySpace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.2- ProxySpace - My Foundation For Live Coding In SuperCollider/2.2- Why ProxySpace.md -------------------------------------------------------------------------------- /2- Basics/2.3- Setup Code - Making Performance Easier/2.3- Setup Code - Making Performance Easier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.3- Setup Code - Making Performance Easier/2.3- Setup Code - Making Performance Easier.md -------------------------------------------------------------------------------- /2- Basics/2.4- Pbinds and Patterns - The Basics/2.4- Pbinds and Patterns - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.4- Pbinds and Patterns - The Basics/2.4- Pbinds and Patterns - Examples.scd -------------------------------------------------------------------------------- /2- Basics/2.4- Pbinds and Patterns - The Basics/2.4- Pbinds and Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/2- Basics/2.4- Pbinds and Patterns - The Basics/2.4- Pbinds and Patterns.md -------------------------------------------------------------------------------- /3- Rhythm/3.1- Rhythmic Construction/3.1- Rhythmic Construction For Algorave Sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.1- Rhythmic Construction/3.1- Rhythmic Construction For Algorave Sets.md -------------------------------------------------------------------------------- /3- Rhythm/3.2- Basic Rhythms/3.2- Basic Rhythms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.2- Basic Rhythms/3.2- Basic Rhythms.md -------------------------------------------------------------------------------- /3- Rhythm/3.2- Basic Rhythms/3.2- Basic Rhythms.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.2- Basic Rhythms/3.2- Basic Rhythms.scd -------------------------------------------------------------------------------- /3- Rhythm/3.3- Techniques For Modifying Rhythm/3.3- Techniques For Modifying Rhythm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.3- Techniques For Modifying Rhythm/3.3- Techniques For Modifying Rhythm.md -------------------------------------------------------------------------------- /3- Rhythm/3.3- Techniques For Modifying Rhythm/3.3- Techniques for Modifying Rhythm - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.3- Techniques For Modifying Rhythm/3.3- Techniques for Modifying Rhythm - Examples.scd -------------------------------------------------------------------------------- /3- Rhythm/3.4- Euclidean Rhythms/3.4- Euclidean Rhythms - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.4- Euclidean Rhythms/3.4- Euclidean Rhythms - Examples.scd -------------------------------------------------------------------------------- /3- Rhythm/3.4- Euclidean Rhythms/3.4- Euclidean Rhythms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.4- Euclidean Rhythms/3.4- Euclidean Rhythms.md -------------------------------------------------------------------------------- /3- Rhythm/3.5- StageLimiter Abuse/3.5- StageLimiter Abuse - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.5- StageLimiter Abuse/3.5- StageLimiter Abuse - Examples.scd -------------------------------------------------------------------------------- /3- Rhythm/3.5- StageLimiter Abuse/3.5- StageLimiter Abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.5- StageLimiter Abuse/3.5- StageLimiter Abuse.md -------------------------------------------------------------------------------- /3- Rhythm/3.6- L-Systems For Rhythm/3.6- L-Systems For Rhythm - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.6- L-Systems For Rhythm/3.6- L-Systems For Rhythm - Examples.scd -------------------------------------------------------------------------------- /3- Rhythm/3.6- L-Systems For Rhythm/3.6- L-Systems For Rhythm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.6- L-Systems For Rhythm/3.6- L-Systems For Rhythm.md -------------------------------------------------------------------------------- /3- Rhythm/3.7- Looping/3.7- Looping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.7- Looping/3.7- Looping.md -------------------------------------------------------------------------------- /3- Rhythm/3.7- Looping/3.7- Looping.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/3- Rhythm/3.7- Looping/3.7- Looping.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.1- Pitch And Patterns/4.1- Pitch And Patterns - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.1- Pitch And Patterns/4.1- Pitch And Patterns - Examples.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.1- Pitch And Patterns/4.1- Pitch And Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.1- Pitch And Patterns/4.1- Pitch And Patterns.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.2- Types of Pitch Arrangement/4.2- Types of Pitch Arrangement - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.2- Types of Pitch Arrangement/4.2- Types of Pitch Arrangement - Examples.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.2- Types of Pitch Arrangement/4.2- Types of Pitch Arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.2- Types of Pitch Arrangement/4.2- Types of Pitch Arrangement.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.3- Riffs/4.3- Riffs - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.3- Riffs/4.3- Riffs - Examples.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.3- Riffs/4.3- Riffs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.3- Riffs/4.3- Riffs.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.4- Pitch and Static Synths/4.4- Pitch and Static Synths - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.4- Pitch and Static Synths/4.4- Pitch and Static Synths - Examples.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.4- Pitch and Static Synths/4.4- Pitch and Static Synths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.4- Pitch and Static Synths/4.4- Pitch and Static Synths.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.5- Between Pitch And Noise/4.5- Between Pitch And Noise - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.5- Between Pitch And Noise/4.5- Between Pitch And Noise - Examples.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.5- Between Pitch And Noise/4.5- Between Pitch And Noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.5- Between Pitch And Noise/4.5- Between Pitch And Noise.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.6- Good SynthDef Writing for co34pt_LiveCode/4.6- Good SynthDef Writing for co34pt_LiveCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.6- Good SynthDef Writing for co34pt_LiveCode/4.6- Good SynthDef Writing for co34pt_LiveCode.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.7- MIDI/4.7- MIDI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.7- MIDI/4.7- MIDI.md -------------------------------------------------------------------------------- /4- Melody and Pitch/4.7- MIDI/4.7- MIDI.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.7- MIDI/4.7- MIDI.scd -------------------------------------------------------------------------------- /4- Melody and Pitch/4.7- MIDI/qjackctl_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/4- Melody and Pitch/4.7- MIDI/qjackctl_connect.png -------------------------------------------------------------------------------- /5- Non-pattern Techniques/5.1- Drones/5.1- Drones - Examples.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/5- Non-pattern Techniques/5.1- Drones/5.1- Drones - Examples.scd -------------------------------------------------------------------------------- /5- Non-pattern Techniques/5.1- Drones/5.1- Drones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/5- Non-pattern Techniques/5.1- Drones/5.1- Drones.md -------------------------------------------------------------------------------- /5- Non-pattern Techniques/5.2- SuperCollider as a Modular Synth/5.2- SuperCollider as a Modular Synth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/5- Non-pattern Techniques/5.2- SuperCollider as a Modular Synth/5.2- SuperCollider as a Modular Synth.md -------------------------------------------------------------------------------- /5- Non-pattern Techniques/5.2- SuperCollider as a Modular Synth/5.2- SuperCollider as a Modular Synth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/5- Non-pattern Techniques/5.2- SuperCollider as a Modular Synth/5.2- SuperCollider as a Modular Synth.scd -------------------------------------------------------------------------------- /5- Non-pattern Techniques/5.3- Adding Effects/5.3- Adding Effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/5- Non-pattern Techniques/5.3- Adding Effects/5.3- Adding Effects.md -------------------------------------------------------------------------------- /5- Non-pattern Techniques/5.3- Adding Effects/5.3- Adding Effects.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/5- Non-pattern Techniques/5.3- Adding Effects/5.3- Adding Effects.scd -------------------------------------------------------------------------------- /6- Visuals and Data/6.1- FreqScope and Visuals/6.1- FreqScope and Visuals - Example.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.1- FreqScope and Visuals/6.1- FreqScope and Visuals - Example.scd -------------------------------------------------------------------------------- /6- Visuals and Data/6.1- FreqScope and Visuals/6.1- FreqScope and Visuals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.1- FreqScope and Visuals/6.1- FreqScope and Visuals.md -------------------------------------------------------------------------------- /6- Visuals and Data/6.2- OSC and Data Streams/6.2- OSC and Data Streams - Example Files/6.2- OSC and Data Streams - Example.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.2- OSC and Data Streams/6.2- OSC and Data Streams - Example Files/6.2- OSC and Data Streams - Example.scd -------------------------------------------------------------------------------- /6- Visuals and Data/6.2- OSC and Data Streams/6.2- OSC and Data Streams - Example Files/python_randomNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.2- OSC and Data Streams/6.2- OSC and Data Streams - Example Files/python_randomNumber.py -------------------------------------------------------------------------------- /6- Visuals and Data/6.2- OSC and Data Streams/6.2- OSC and Data Streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.2- OSC and Data Streams/6.2- OSC and Data Streams.md -------------------------------------------------------------------------------- /6- Visuals and Data/6.3- Using Datasets/6.3- Using Datasets - Example.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6- Visuals and Data/6.3- Using Datasets/6.3- Using Datasets - Example.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.3- Using Datasets/6.3- Using Datasets - Example.scd -------------------------------------------------------------------------------- /6- Visuals and Data/6.3- Using Datasets/6.3- Using Datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.3- Using Datasets/6.3- Using Datasets.md -------------------------------------------------------------------------------- /6- Visuals and Data/6.3- Using Datasets/Datasets/ArmstrongFoyer_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/6- Visuals and Data/6.3- Using Datasets/Datasets/ArmstrongFoyer_Data.csv -------------------------------------------------------------------------------- /Documents/FirstEdition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Documents/FirstEdition/README.md -------------------------------------------------------------------------------- /Documents/FirstEdition/howtolivecode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Documents/FirstEdition/howtolivecode.pdf -------------------------------------------------------------------------------- /Documents/FirstEdition/howtolivecode_epub.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Documents/FirstEdition/howtolivecode_epub.zip -------------------------------------------------------------------------------- /Documents/FirstEdition/howtolivecode_pages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Documents/FirstEdition/howtolivecode_pages.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Setup.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/Setup.scd -------------------------------------------------------------------------------- /Setup/Setup_MIDI.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/Setup_MIDI.scd -------------------------------------------------------------------------------- /Setup/Snippets.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/Snippets.scd -------------------------------------------------------------------------------- /Setup/SynthDefs.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/SynthDefs.scd -------------------------------------------------------------------------------- /Setup/noDeps/Setup.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/noDeps/Setup.scd -------------------------------------------------------------------------------- /Setup/noDeps/Snippets.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/noDeps/Snippets.scd -------------------------------------------------------------------------------- /Setup/noDeps/SynthDefs.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/noDeps/SynthDefs.scd -------------------------------------------------------------------------------- /Setup/noDeps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/Setup/noDeps/readme.md -------------------------------------------------------------------------------- /docsList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/docsList.md -------------------------------------------------------------------------------- /gh_pages_site/HowToRenameDocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/HowToRenameDocs.md -------------------------------------------------------------------------------- /gh_pages_site/docs/1-1-What-This-Repo-Is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/1-1-What-This-Repo-Is.md -------------------------------------------------------------------------------- /gh_pages_site/docs/1-2-Why-I-Live-Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/1-2-Why-I-Live-Code.md -------------------------------------------------------------------------------- /gh_pages_site/docs/1-3-Why-SuperCollider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/1-3-Why-SuperCollider.md -------------------------------------------------------------------------------- /gh_pages_site/docs/1-4-How-To-Use-This-Repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/1-4-How-To-Use-This-Repo.md -------------------------------------------------------------------------------- /gh_pages_site/docs/2-1-Recommended-Addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/2-1-Recommended-Addons.md -------------------------------------------------------------------------------- /gh_pages_site/docs/2-2-Why-ProxySpace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/2-2-Why-ProxySpace.md -------------------------------------------------------------------------------- /gh_pages_site/docs/2-3-Setup-Code---Making-Performance-Easier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/2-3-Setup-Code---Making-Performance-Easier.md -------------------------------------------------------------------------------- /gh_pages_site/docs/2-4-Pbinds-and-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/2-4-Pbinds-and-Patterns.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-1-Rhythmic-Construction-For-Algorave-Sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/3-1-Rhythmic-Construction-For-Algorave-Sets.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-2-Basic-Rhythms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/3-2-Basic-Rhythms.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-3-Techniques-For-Modifying-Rhythm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/3-3-Techniques-For-Modifying-Rhythm.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-4-Euclidean-Rhythms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/3-4-Euclidean-Rhythms.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-5-StageLimiter-Abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/3-5-StageLimiter-Abuse.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-6-L-Systems-For-Rhythm.md: -------------------------------------------------------------------------------- 1 | ../../3- Rhythm/3.6- L-Systems For Rhythm/3.6- L-Systems For Rhythm.md -------------------------------------------------------------------------------- /gh_pages_site/docs/3-7-Looping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/3-7-Looping.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-1-Pitch-And-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-1-Pitch-And-Patterns.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-2-Types-of-Pitch-Arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-2-Types-of-Pitch-Arrangement.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-3-Riffs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-3-Riffs.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-4-Pitch-and-Static-Synths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-4-Pitch-and-Static-Synths.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-5-Between-Pitch-And-Noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-5-Between-Pitch-And-Noise.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-6-Good-SynthDef-Writing-for-co34pt_LiveCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-6-Good-SynthDef-Writing-for-co34pt_LiveCode.md -------------------------------------------------------------------------------- /gh_pages_site/docs/4-7-MIDI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/4-7-MIDI.md -------------------------------------------------------------------------------- /gh_pages_site/docs/5-1-Drones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/5-1-Drones.md -------------------------------------------------------------------------------- /gh_pages_site/docs/5-2-SuperCollider-as-a-Modular-Synth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/5-2-SuperCollider-as-a-Modular-Synth.md -------------------------------------------------------------------------------- /gh_pages_site/docs/6-1-FreqScope-and-Visuals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/6-1-FreqScope-and-Visuals.md -------------------------------------------------------------------------------- /gh_pages_site/docs/6-2-OSC-and-Data-Streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/6-2-OSC-and-Data-Streams.md -------------------------------------------------------------------------------- /gh_pages_site/docs/6-3-Using-Datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/6-3-Using-Datasets.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/1-1-What-This-Repo-Is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/1-1-What-This-Repo-Is.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/1-2-Why-I-Live-Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/1-2-Why-I-Live-Code.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/1-3-Why-SuperCollider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/1-3-Why-SuperCollider.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/1-4-how-to-use-this-repo.md: -------------------------------------------------------------------------------- 1 | ../../1: Introduction/1.4: How To Use This Repo/1.4: How To Use This Repo.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/2-1-Recommended-Addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/2-1-Recommended-Addons.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/2-2-1-Why-ProxySpace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/2-2-1-Why-ProxySpace.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/2-3-Setup-Code---Making-Performance-Easier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/2-3-Setup-Code---Making-Performance-Easier.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/2-4-Pbinds-and-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/2-4-Pbinds-and-Patterns.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/3-1-Rhythmic-Construction-For-Algorave-Sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/3-1-Rhythmic-Construction-For-Algorave-Sets.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/3-2-Basic-Rhythms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/3-2-Basic-Rhythms.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/3-3-Techniques-For-Modifying-Rhythm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/3-3-Techniques-For-Modifying-Rhythm.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/3-4-Euclidean-Rhythms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/3-4-Euclidean-Rhythms.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/3-5-StageLimiter-Abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/3-5-StageLimiter-Abuse.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/3-6-L-Systems-For-Rhythm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/3-6-L-Systems-For-Rhythm.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/4-1-Pitch-And-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/4-1-Pitch-And-Patterns.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/4-2-Types-of-Pitch-Arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/4-2-Types-of-Pitch-Arrangement.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/4-3-Riffs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/4-3-Riffs.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/4-4-Pitch-and-Static-Synths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/4-4-Pitch-and-Static-Synths.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/4-5-Between-Pitch-And-Noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/4-5-Between-Pitch-And-Noise.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/4-6-Good-SynthDef-Writing-for-co34pt-LiveCode.md: -------------------------------------------------------------------------------- 1 | ../../4: Melody and Pitch/4.6: Good SynthDef Writing for co34pt_LiveCode/4.6: Good SynthDef Writing for co34pt_LiveCode.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/5-1-Drones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/5-1-Drones.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/5-2-SuperCollider-as-a-Modular-Synth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/5-2-SuperCollider-as-a-Modular-Synth.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/6-1-FreqScope-and-Visuals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/6-1-FreqScope-and-Visuals.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/index.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/legalcode.md: -------------------------------------------------------------------------------- 1 | ../../legalcode.txt -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/sampleList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/docs/backup.md/sampleList.md -------------------------------------------------------------------------------- /gh_pages_site/docs/backup.md/todo.md: -------------------------------------------------------------------------------- 1 | ../../todo.md -------------------------------------------------------------------------------- /gh_pages_site/docs/index.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /gh_pages_site/docs/legalcode.md: -------------------------------------------------------------------------------- 1 | ../../legalcode.txt -------------------------------------------------------------------------------- /gh_pages_site/docs/sampleList.md: -------------------------------------------------------------------------------- 1 | ../../samples/set1/sampleList.md -------------------------------------------------------------------------------- /gh_pages_site/docs/todo.md: -------------------------------------------------------------------------------- 1 | ../../todo.md -------------------------------------------------------------------------------- /gh_pages_site/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/mkdocs.yml -------------------------------------------------------------------------------- /gh_pages_site/site/1-1-What-This-Repo-Is/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/1-1-What-This-Repo-Is/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/1-2-Why-I-Live-Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/1-2-Why-I-Live-Code/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/1-3-Why-SuperCollider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/1-3-Why-SuperCollider/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/1-4-How-To-Use-This-Repo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/1-4-How-To-Use-This-Repo/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/2-1-Recommended-Addons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/2-1-Recommended-Addons/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/2-2-Why-ProxySpace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/2-2-Why-ProxySpace/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/2-3-Setup-Code---Making-Performance-Easier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/2-3-Setup-Code---Making-Performance-Easier/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/2-4-Pbinds-and-Patterns/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/2-4-Pbinds-and-Patterns/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-1-Rhythmic-Construction-For-Algorave-Sets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-1-Rhythmic-Construction-For-Algorave-Sets/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-2-Basic-Rhythms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-2-Basic-Rhythms/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-3-Techniques-For-Modifying-Rhythm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-3-Techniques-For-Modifying-Rhythm/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-4-Euclidean-Rhythms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-4-Euclidean-Rhythms/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-5-StageLimiter-Abuse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-5-StageLimiter-Abuse/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-6-L-Systems-For-Rhythm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-6-L-Systems-For-Rhythm/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/3-7-Looping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/3-7-Looping/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-1-Pitch-And-Patterns/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-1-Pitch-And-Patterns/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-2-Types-of-Pitch-Arrangement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-2-Types-of-Pitch-Arrangement/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-3-Riffs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-3-Riffs/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-4-Pitch-and-Static-Synths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-4-Pitch-and-Static-Synths/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-5-Between-Pitch-And-Noise/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-5-Between-Pitch-And-Noise/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-6-Good-SynthDef-Writing-for-co34pt_LiveCode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-6-Good-SynthDef-Writing-for-co34pt_LiveCode/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/4-7-MIDI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/4-7-MIDI/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/5-1-Drones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/5-1-Drones/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/5-2-SuperCollider-as-a-Modular-Synth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/5-2-SuperCollider-as-a-Modular-Synth/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/6-1-FreqScope-and-Visuals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/6-1-FreqScope-and-Visuals/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/6-2-OSC-and-Data-Streams/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/6-2-OSC-and-Data-Streams/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/6-3-Using-Datasets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/6-3-Using-Datasets/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/css/base.css -------------------------------------------------------------------------------- /gh_pages_site/site/css/bootstrap-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/css/bootstrap-custom.css -------------------------------------------------------------------------------- /gh_pages_site/site/css/bootstrap-custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/css/bootstrap-custom.min.css -------------------------------------------------------------------------------- /gh_pages_site/site/css/cinder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/css/cinder.css -------------------------------------------------------------------------------- /gh_pages_site/site/css/font-awesome-4.0.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/css/font-awesome-4.0.3.css -------------------------------------------------------------------------------- /gh_pages_site/site/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/css/highlight.css -------------------------------------------------------------------------------- /gh_pages_site/site/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gh_pages_site/site/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /gh_pages_site/site/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gh_pages_site/site/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gh_pages_site/site/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/favicon.ico -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid1.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid10.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid11.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid12.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid13.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid14.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid15.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid16.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid17.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid18.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid19.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid2.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid20.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid3.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid4.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid5.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid6.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid7.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid8.png -------------------------------------------------------------------------------- /gh_pages_site/site/img/grid9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/img/grid9.png -------------------------------------------------------------------------------- /gh_pages_site/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/js/base.js -------------------------------------------------------------------------------- /gh_pages_site/site/js/bootstrap-3.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/js/bootstrap-3.0.3.min.js -------------------------------------------------------------------------------- /gh_pages_site/site/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/js/highlight.pack.js -------------------------------------------------------------------------------- /gh_pages_site/site/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /gh_pages_site/site/legalcode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/legalcode/index.html -------------------------------------------------------------------------------- /gh_pages_site/site/search/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/lunr.min.js -------------------------------------------------------------------------------- /gh_pages_site/site/search/mustache.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/mustache.min.js -------------------------------------------------------------------------------- /gh_pages_site/site/search/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/require.js -------------------------------------------------------------------------------- /gh_pages_site/site/search/search-results-template.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/search-results-template.mustache -------------------------------------------------------------------------------- /gh_pages_site/site/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/search.js -------------------------------------------------------------------------------- /gh_pages_site/site/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/search_index.json -------------------------------------------------------------------------------- /gh_pages_site/site/search/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/search/text.js -------------------------------------------------------------------------------- /gh_pages_site/site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/sitemap.xml -------------------------------------------------------------------------------- /gh_pages_site/site/todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/gh_pages_site/site/todo/index.html -------------------------------------------------------------------------------- /legalcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/legalcode.txt -------------------------------------------------------------------------------- /samples/set1/breaks175/112458__deller24__complete-loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/breaks175/112458__deller24__complete-loop.wav -------------------------------------------------------------------------------- /samples/set1/breaks175/123292__dirtyjewbs__drumstep-loop-175bpm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/breaks175/123292__dirtyjewbs__drumstep-loop-175bpm.wav -------------------------------------------------------------------------------- /samples/set1/breaks175/151350__freestylednb__175-loop.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/breaks175/151350__freestylednb__175-loop.aiff -------------------------------------------------------------------------------- /samples/set1/breaks175/250093__amfe__175bpm-amen-punchy-loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/breaks175/250093__amfe__175bpm-amen-punchy-loop.wav -------------------------------------------------------------------------------- /samples/set1/breaks175/270313__dee-vigga__dv-amen-break-175bpm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/breaks175/270313__dee-vigga__dv-amen-break-175bpm.wav -------------------------------------------------------------------------------- /samples/set1/breaks175/65780__dahovv__dnb-distorted-atmosphere-rhythm-175.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/breaks175/65780__dahovv__dnb-distorted-atmosphere-rhythm-175.wav -------------------------------------------------------------------------------- /samples/set1/c/24786__young-daddy__clap-mix.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/c/24786__young-daddy__clap-mix.wav -------------------------------------------------------------------------------- /samples/set1/ch/Crsnred_scr_ht_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/ch/Crsnred_scr_ht_2.wav -------------------------------------------------------------------------------- /samples/set1/ch/Crsnred_scr_ht_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/ch/Crsnred_scr_ht_3.wav -------------------------------------------------------------------------------- /samples/set1/ch/Crsnred_scr_ht_8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/ch/Crsnred_scr_ht_8.wav -------------------------------------------------------------------------------- /samples/set1/ch/Crsnred_scr_prc_24.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/ch/Crsnred_scr_prc_24.wav -------------------------------------------------------------------------------- /samples/set1/ding/Crsnred_scr_prc_20.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/ding/Crsnred_scr_prc_20.wav -------------------------------------------------------------------------------- /samples/set1/fx/Crsnred_scr_fx_11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/fx/Crsnred_scr_fx_11.wav -------------------------------------------------------------------------------- /samples/set1/fx/Crsnred_scr_fx_24.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/fx/Crsnred_scr_fx_24.wav -------------------------------------------------------------------------------- /samples/set1/fx/Crsnred_scr_fx_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/fx/Crsnred_scr_fx_3.wav -------------------------------------------------------------------------------- /samples/set1/fx/Crsnred_scr_fx_31.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/fx/Crsnred_scr_fx_31.wav -------------------------------------------------------------------------------- /samples/set1/fx/Crsnred_scr_fx_43.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/fx/Crsnred_scr_fx_43.wav -------------------------------------------------------------------------------- /samples/set1/fx/Crsnred_scr_fx_9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/fx/Crsnred_scr_fx_9.wav -------------------------------------------------------------------------------- /samples/set1/gab/Crsnred_scr_fx_52.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/gab/Crsnred_scr_fx_52.wav -------------------------------------------------------------------------------- /samples/set1/ht/Crsnred_scr_prc_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/ht/Crsnred_scr_prc_3.wav -------------------------------------------------------------------------------- /samples/set1/k/1-by-asparagus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/k/1-by-asparagus.wav -------------------------------------------------------------------------------- /samples/set1/k/2-by-adamskitek.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/k/2-by-adamskitek.wav -------------------------------------------------------------------------------- /samples/set1/k/Crsnred_scr_prc_25.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/k/Crsnred_scr_prc_25.wav -------------------------------------------------------------------------------- /samples/set1/lfx/Crsnred_scr_fx_36.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/lfx/Crsnred_scr_fx_36.wav -------------------------------------------------------------------------------- /samples/set1/lfx/Crsnred_scr_fx_51.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/lfx/Crsnred_scr_fx_51.wav -------------------------------------------------------------------------------- /samples/set1/mt/Crsnred_scr_prc_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/mt/Crsnred_scr_prc_2.wav -------------------------------------------------------------------------------- /samples/set1/oh/Crsnred_scr_ht_14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/oh/Crsnred_scr_ht_14.wav -------------------------------------------------------------------------------- /samples/set1/oh/Crsnred_scr_ht_9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/oh/Crsnred_scr_ht_9.wav -------------------------------------------------------------------------------- /samples/set1/pk/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/pk/1.wav -------------------------------------------------------------------------------- /samples/set1/pk/Crsnred_scr_prc_22.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/pk/Crsnred_scr_prc_22.wav -------------------------------------------------------------------------------- /samples/set1/q/Crsnred_scr_fx_28.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/q/Crsnred_scr_fx_28.wav -------------------------------------------------------------------------------- /samples/set1/s/Crsnred_scr_snr_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/s/Crsnred_scr_snr_1.wav -------------------------------------------------------------------------------- /samples/set1/s/Crsnred_scr_snr_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/s/Crsnred_scr_snr_2.wav -------------------------------------------------------------------------------- /samples/set1/s/Crsnred_scr_snr_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/s/Crsnred_scr_snr_3.wav -------------------------------------------------------------------------------- /samples/set1/s/Crsnred_scr_snr_6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/s/Crsnred_scr_snr_6.wav -------------------------------------------------------------------------------- /samples/set1/s/Crsnred_scr_snr_9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/s/Crsnred_scr_snr_9.wav -------------------------------------------------------------------------------- /samples/set1/sampleList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sampleList.md -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_10.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_14.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_20.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_20.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_29.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_29.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_30.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_30.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_40.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_40.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_46.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_46.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_53.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_53.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_54.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_54.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_7.wav -------------------------------------------------------------------------------- /samples/set1/sfx/Crsnred_scr_fx_8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sfx/Crsnred_scr_fx_8.wav -------------------------------------------------------------------------------- /samples/set1/shout/ 2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/shout/ 2.wav -------------------------------------------------------------------------------- /samples/set1/shout/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/shout/1.wav -------------------------------------------------------------------------------- /samples/set1/shout/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/shout/3.wav -------------------------------------------------------------------------------- /samples/set1/shout/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/shout/4.wav -------------------------------------------------------------------------------- /samples/set1/shout/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/shout/5.wav -------------------------------------------------------------------------------- /samples/set1/shout/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/shout/6.wav -------------------------------------------------------------------------------- /samples/set1/sk/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sk/1.wav -------------------------------------------------------------------------------- /samples/set1/sk/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/sk/2.wav -------------------------------------------------------------------------------- /samples/set1/stab/01_adamskitek_rave-2_stab.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/stab/01_adamskitek_rave-2_stab.wav -------------------------------------------------------------------------------- /samples/set1/stab/02_adamskitek_recco-2_stab.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/stab/02_adamskitek_recco-2_stab.wav -------------------------------------------------------------------------------- /samples/set1/stab/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/stab/3.wav -------------------------------------------------------------------------------- /samples/set1/strings/62359__fons__space-string.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/strings/62359__fons__space-string.wav -------------------------------------------------------------------------------- /samples/set1/t/Crsnred_scr_prc_16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/t/Crsnred_scr_prc_16.wav -------------------------------------------------------------------------------- /samples/set1/t/Crsnred_scr_prc_26.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/t/Crsnred_scr_prc_26.wav -------------------------------------------------------------------------------- /samples/set1/t/Crsnred_scr_prc_27.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/samples/set1/t/Crsnred_scr_prc_27.wav -------------------------------------------------------------------------------- /scripts/install_supercollider_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/scripts/install_supercollider_linux.sh -------------------------------------------------------------------------------- /startingExampleDocument.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/startingExampleDocument.scd -------------------------------------------------------------------------------- /styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/styleguide.md -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theseanco/howto_co34pt_liveCode/HEAD/todo.md --------------------------------------------------------------------------------