├── .gitignore ├── README.md ├── fcserver.json ├── gulpfile.js ├── korg_nanoPAD2.sh ├── korg_padKONTROL.sh ├── nodemon.json ├── package.json ├── public ├── asset │ ├── css │ │ └── NERDDISCO.css │ ├── img │ │ ├── Logo-NerdDisko-500-dark.png │ │ ├── Logo-NerdDisko-small-dark.png │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ └── mstile-70x70.png │ ├── js │ │ └── NERDDISCO.js │ └── media │ │ └── Jesse_and_The_Wolf-Midnight.mp3 └── index.html ├── server.js └── src ├── js ├── NERDDISCO │ ├── UI │ │ └── ndUI_ │ ├── VisualizationElements │ │ ├── ndBar.js │ │ ├── ndCircle.js │ │ ├── ndGiphyElement.js │ │ ├── ndGiphyElementKnob.js │ │ ├── ndGiphyElementRestart.js │ │ ├── ndGiphyElementSwitcher.js │ │ ├── ndGlobalAlpha.js │ │ ├── ndGroup.js │ │ ├── ndStar.js │ │ ├── ndStrobeLight.js │ │ ├── ndStrokeCircle.js │ │ ├── ndUltraSquare.js │ │ └── ndXYPad.js │ ├── ndAudio.js │ ├── ndConnector.js │ ├── ndGiphy.js │ ├── ndHelper.js │ ├── ndMidi.js │ ├── ndSelector.js │ ├── ndSoundcloud.js │ ├── ndSquare.js │ ├── ndVisualization.js │ └── ndVisualizationElement.js ├── main.js └── vendor │ ├── Object.assing.polyfil.js │ ├── interact-1.2.4.js │ ├── socket.io-1.2.0.js │ └── soundcloud_sdk.js └── sass ├── NERDDISCO.scss └── _ndSelector.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/README.md -------------------------------------------------------------------------------- /fcserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/fcserver.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/gulpfile.js -------------------------------------------------------------------------------- /korg_nanoPAD2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/korg_nanoPAD2.sh -------------------------------------------------------------------------------- /korg_padKONTROL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/korg_padKONTROL.sh -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/package.json -------------------------------------------------------------------------------- /public/asset/css/NERDDISCO.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/css/NERDDISCO.css -------------------------------------------------------------------------------- /public/asset/img/Logo-NerdDisko-500-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/Logo-NerdDisko-500-dark.png -------------------------------------------------------------------------------- /public/asset/img/Logo-NerdDisko-small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/Logo-NerdDisko-small-dark.png -------------------------------------------------------------------------------- /public/asset/img/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/asset/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/asset/img/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/android-chrome-36x36.png -------------------------------------------------------------------------------- /public/asset/img/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/android-chrome-48x48.png -------------------------------------------------------------------------------- /public/asset/img/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/android-chrome-72x72.png -------------------------------------------------------------------------------- /public/asset/img/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/android-chrome-96x96.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/asset/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/apple-touch-icon.png -------------------------------------------------------------------------------- /public/asset/img/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/browserconfig.xml -------------------------------------------------------------------------------- /public/asset/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/favicon-16x16.png -------------------------------------------------------------------------------- /public/asset/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/favicon-32x32.png -------------------------------------------------------------------------------- /public/asset/img/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/favicon-96x96.png -------------------------------------------------------------------------------- /public/asset/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/favicon.ico -------------------------------------------------------------------------------- /public/asset/img/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/manifest.json -------------------------------------------------------------------------------- /public/asset/img/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/mstile-144x144.png -------------------------------------------------------------------------------- /public/asset/img/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/mstile-150x150.png -------------------------------------------------------------------------------- /public/asset/img/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/mstile-310x150.png -------------------------------------------------------------------------------- /public/asset/img/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/mstile-310x310.png -------------------------------------------------------------------------------- /public/asset/img/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/img/mstile-70x70.png -------------------------------------------------------------------------------- /public/asset/js/NERDDISCO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/js/NERDDISCO.js -------------------------------------------------------------------------------- /public/asset/media/Jesse_and_The_Wolf-Midnight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/asset/media/Jesse_and_The_Wolf-Midnight.mp3 -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/public/index.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/server.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/UI/ndUI_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndBar.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndCircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndCircle.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndGiphyElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndGiphyElement.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndGiphyElementKnob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndGiphyElementKnob.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndGiphyElementRestart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndGiphyElementRestart.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndGiphyElementSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndGiphyElementSwitcher.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndGlobalAlpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndGlobalAlpha.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndGroup.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndStar.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndStrobeLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndStrobeLight.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndStrokeCircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndStrokeCircle.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndUltraSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndUltraSquare.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/VisualizationElements/ndXYPad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/VisualizationElements/ndXYPad.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndAudio.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndConnector.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndGiphy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndGiphy.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndHelper.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndMidi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndMidi.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndSelector.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndSoundcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndSoundcloud.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndSquare.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndVisualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndVisualization.js -------------------------------------------------------------------------------- /src/js/NERDDISCO/ndVisualizationElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/NERDDISCO/ndVisualizationElement.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/vendor/Object.assing.polyfil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/vendor/Object.assing.polyfil.js -------------------------------------------------------------------------------- /src/js/vendor/interact-1.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/vendor/interact-1.2.4.js -------------------------------------------------------------------------------- /src/js/vendor/socket.io-1.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/vendor/socket.io-1.2.0.js -------------------------------------------------------------------------------- /src/js/vendor/soundcloud_sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/js/vendor/soundcloud_sdk.js -------------------------------------------------------------------------------- /src/sass/NERDDISCO.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/sass/NERDDISCO.scss -------------------------------------------------------------------------------- /src/sass/_ndSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDDISCO/NERD.DISCO-Studio/HEAD/src/sass/_ndSelector.scss --------------------------------------------------------------------------------