├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MrReason.cabal ├── README.md ├── asset └── images │ ├── Editor.png │ ├── MrReasonSetup.drawio │ └── MrReasonSetup.drawio.svg ├── docs ├── applying-western-music-theory.md ├── custom-conditional-functions.md ├── infrastructure-overview.md ├── live-coding-with-parts-and-segments.md ├── tidal-midi.md └── tips-and-hints-for-live-coding-with-longer-sets.md ├── src └── Sound │ ├── MrReason │ ├── ConfigParser.hs │ └── Setup.hs │ └── Tidal │ └── MIDI.hs ├── stack.yaml ├── stack.yaml.lock └── test ├── Sound ├── MrReason │ ├── ChordsSpec.hs │ └── SetupSpec.hs ├── TestUtils.hs └── Tidal │ └── MIDISpec.hs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/LICENSE -------------------------------------------------------------------------------- /MrReason.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/MrReason.cabal -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/README.md -------------------------------------------------------------------------------- /asset/images/Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/asset/images/Editor.png -------------------------------------------------------------------------------- /asset/images/MrReasonSetup.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/asset/images/MrReasonSetup.drawio -------------------------------------------------------------------------------- /asset/images/MrReasonSetup.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/asset/images/MrReasonSetup.drawio.svg -------------------------------------------------------------------------------- /docs/applying-western-music-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/docs/applying-western-music-theory.md -------------------------------------------------------------------------------- /docs/custom-conditional-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/docs/custom-conditional-functions.md -------------------------------------------------------------------------------- /docs/infrastructure-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/docs/infrastructure-overview.md -------------------------------------------------------------------------------- /docs/live-coding-with-parts-and-segments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/docs/live-coding-with-parts-and-segments.md -------------------------------------------------------------------------------- /docs/tidal-midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/docs/tidal-midi.md -------------------------------------------------------------------------------- /docs/tips-and-hints-for-live-coding-with-longer-sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/docs/tips-and-hints-for-live-coding-with-longer-sets.md -------------------------------------------------------------------------------- /src/Sound/MrReason/ConfigParser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/src/Sound/MrReason/ConfigParser.hs -------------------------------------------------------------------------------- /src/Sound/MrReason/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/src/Sound/MrReason/Setup.hs -------------------------------------------------------------------------------- /src/Sound/Tidal/MIDI.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/src/Sound/Tidal/MIDI.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/Sound/MrReason/ChordsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/test/Sound/MrReason/ChordsSpec.hs -------------------------------------------------------------------------------- /test/Sound/MrReason/SetupSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/test/Sound/MrReason/SetupSpec.hs -------------------------------------------------------------------------------- /test/Sound/TestUtils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/test/Sound/TestUtils.hs -------------------------------------------------------------------------------- /test/Sound/Tidal/MIDISpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thgrund/mrreason-setup/HEAD/test/Sound/Tidal/MIDISpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | --------------------------------------------------------------------------------