gitextract_k9q7365g/ ├── .gitattributes ├── .github/ │ ├── scripts/ │ │ ├── build.sh │ │ └── build_guide.sh │ └── workflows/ │ └── uberjar.yml ├── .gitignore ├── .htmltest.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── doc/ │ ├── README.md │ ├── antora.yml │ ├── ds.yml │ ├── embedded.yml │ ├── github-actions.yml │ ├── modules/ │ │ └── ROOT/ │ │ ├── assets/ │ │ │ └── source/ │ │ │ ├── Afterglow logo.ai │ │ │ ├── Blade.psd │ │ │ ├── Clojure Beam.psd │ │ │ ├── ColorPalette.psd │ │ │ ├── ColorPalette2.psd │ │ │ ├── F3.psd │ │ │ ├── Launchpad Mini.psd │ │ │ ├── Novation.psd │ │ │ ├── OLA Logo.ai │ │ │ ├── Push-2-Stopped.psd │ │ │ ├── Push2NoEffects.psd │ │ │ ├── PushNoEffects.psd │ │ │ ├── Show Space.psd │ │ │ └── WeatherSystem.psd │ │ ├── nav.adoc │ │ └── pages/ │ │ ├── README.adoc │ │ ├── color.adoc │ │ ├── cues.adoc │ │ ├── effects.adoc │ │ ├── fixture_definitions.adoc │ │ ├── launchpad.adoc │ │ ├── mapping_sync.adoc │ │ ├── metronomes.adoc │ │ ├── oscillators.adoc │ │ ├── parameters.adoc │ │ ├── push.adoc │ │ ├── push2.adoc │ │ ├── rendering_loop.adoc │ │ ├── show_space.adoc │ │ └── videos.adoc │ └── primes.md ├── logs/ │ └── README.txt ├── package.json ├── project.clj ├── resources/ │ ├── afterglow/ │ │ └── readme.txt │ ├── docs/ │ │ └── docs.md │ ├── public/ │ │ ├── css/ │ │ │ ├── bootstrap-cyborg.css │ │ │ ├── bootstrap-slider.css │ │ │ ├── bootstrap-switch.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ ├── jquery.minicolors.css │ │ │ ├── screen.css │ │ │ ├── show.css │ │ │ └── web-repl.css │ │ ├── epl-v10.html │ │ ├── font-awesome-4.5.0/ │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── less/ │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss/ │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fonts/ │ │ │ ├── Lekton/ │ │ │ │ └── SIL Open Font License.txt │ │ │ ├── Open_Sans_Condensed/ │ │ │ │ └── LICENSE.txt │ │ │ └── Roboto/ │ │ │ └── LICENSE.txt │ │ ├── js/ │ │ │ ├── BootstrapMenu.js │ │ │ ├── bootstrap.js │ │ │ ├── jquery-2.1.4.js │ │ │ ├── jquery.console.js │ │ │ ├── jquery.websocket-0.0.1.js │ │ │ ├── npm.js │ │ │ ├── show_updates.js │ │ │ └── web-repl.js │ │ └── shaders/ │ │ └── vertex.glsl │ └── templates/ │ ├── about.html │ ├── base.html │ ├── console.html │ ├── cue_grid.html │ ├── current-scene-fragment.js │ ├── current-scene.json │ ├── error.html │ ├── fixture-definition.clj.template │ ├── fragment.glsl │ ├── home.html │ ├── link_menu.html │ ├── show.html │ ├── sync_menu.html │ └── visualizer.html ├── src/ │ └── afterglow/ │ ├── beyond.clj │ ├── carabiner.clj │ ├── channels.clj │ ├── controllers/ │ │ ├── ableton_push.clj │ │ ├── ableton_push_2.clj │ │ ├── color.clj │ │ ├── launchpad_mini.clj │ │ ├── launchpad_mk2.clj │ │ ├── launchpad_pro.clj │ │ └── tempo.clj │ ├── controllers.clj │ ├── core.clj │ ├── coremidi4j.clj │ ├── dj_link.clj │ ├── effects/ │ │ ├── channel.clj │ │ ├── color.clj │ │ ├── cues.clj │ │ ├── dimmer.clj │ │ ├── fun.clj │ │ ├── movement.clj │ │ ├── oscillators.clj │ │ ├── params.clj │ │ └── show_variable.clj │ ├── effects.clj │ ├── examples.clj │ ├── fixtures/ │ │ ├── american_dj.clj │ │ ├── blizzard.clj │ │ ├── chauvet.clj │ │ └── qxf.clj │ ├── fixtures.clj │ ├── init.clj │ ├── midi.clj │ ├── rhythm.clj │ ├── show.clj │ ├── show_context.clj │ ├── shows/ │ │ ├── chris.clj │ │ ├── sallie.clj │ │ └── wedding.clj │ ├── transform.clj │ ├── util.clj │ ├── version.clj │ └── web/ │ ├── handler.clj │ ├── layout.clj │ ├── middleware.clj │ ├── routes/ │ │ ├── home.clj │ │ ├── show_control.clj │ │ ├── visualizer.clj │ │ └── web_repl.clj │ └── session.clj └── test/ └── afterglow/ ├── core_test.clj ├── effects/ │ └── color_test.clj └── effects_test.clj