gitextract_k13q67tj/ ├── .gitignore ├── .travis.yml ├── API.md ├── Gopkg.toml ├── LICENSE ├── README.md ├── appveyor.yml ├── audio/ │ ├── audio.go │ └── midi.go ├── cmd/ │ └── glitch/ │ ├── app.go │ ├── assets.go │ ├── gen.go │ ├── loader.go │ ├── main.go │ └── ui.go ├── core/ │ ├── CMakeLists.txt │ ├── expr.h │ ├── glitch.c │ ├── glitch.go │ ├── glitch.h │ ├── glitch_test.c │ ├── glitch_test.go │ ├── libglitch.h │ └── tr808.h ├── dist/ │ ├── glitch.exe.manifest │ ├── glitch.rc │ ├── icons/ │ │ └── glitch.icns │ ├── release-linux.sh │ ├── release-macos.sh │ ├── release-web.sh │ └── release-windows.bat ├── examples/ │ ├── bytebeat/ │ │ ├── 42.glitch │ │ ├── arp.glitch │ │ ├── dreamy.glitch │ │ ├── drum.glitch │ │ ├── nervous.glitch │ │ ├── poly.glitch │ │ ├── right.glitch │ │ ├── saw.glitch │ │ ├── sqr.glitch │ │ └── white.glitch │ ├── das_model.glitch │ ├── drums.glitch │ ├── get_yucky.glitch │ └── sur_la_planche.glitch ├── ui/ │ ├── app.js │ ├── index.html │ ├── styles.css │ └── vendor/ │ ├── codemirror/ │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── matchbrackets.js │ │ ├── material.css │ │ └── simplescrollbars.js │ ├── material-icons/ │ │ ├── MaterialIcons-Regular.ijmap │ │ ├── README.md │ │ ├── codepoints │ │ └── material-icons.css │ ├── picodom/ │ │ └── picodom.js │ └── roboto-mono/ │ └── roboto-mono.css └── vendor/ └── github.com/ ├── jteeuwen/ │ └── go-bindata/ │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── asset.go │ ├── bytewriter.go │ ├── config.go │ ├── convert.go │ ├── debug.go │ ├── doc.go │ ├── go-bindata/ │ │ ├── AppendSliceValue.go │ │ ├── main.go │ │ └── version.go │ ├── release.go │ ├── stringwriter.go │ ├── testdata/ │ │ ├── in/ │ │ │ ├── a/ │ │ │ │ └── test.asset │ │ │ ├── b/ │ │ │ │ └── test.asset │ │ │ ├── c/ │ │ │ │ └── test.asset │ │ │ └── test.asset │ │ └── out/ │ │ ├── compress-memcopy.go │ │ ├── compress-nomemcopy.go │ │ ├── debug.go │ │ ├── nocompress-memcopy.go │ │ └── nocompress-nomemcopy.go │ └── toc.go ├── thestk/ │ ├── rtaudio/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── RtAudio.cpp │ │ ├── RtAudio.h │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── contrib/ │ │ │ ├── go/ │ │ │ │ └── rtaudio/ │ │ │ │ ├── rtaudio.go │ │ │ │ ├── rtaudio_stub.cpp │ │ │ │ ├── rtaudio_stub.h │ │ │ │ └── rtaudio_test.go │ │ │ └── python/ │ │ │ └── pyrtaudio/ │ │ │ ├── PyRtAudioTest.py │ │ │ ├── readme │ │ │ ├── rtaudiomodule.cpp │ │ │ └── setup.py │ │ ├── doc/ │ │ │ ├── Makefile.am │ │ │ ├── doxygen/ │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── acknowledge.txt │ │ │ │ ├── apinotes.txt │ │ │ │ ├── compiling.txt │ │ │ │ ├── duplex.txt │ │ │ │ ├── error.txt │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── license.txt │ │ │ │ ├── multi.txt │ │ │ │ ├── playback.txt │ │ │ │ ├── probe.txt │ │ │ │ ├── recording.txt │ │ │ │ ├── settings.txt │ │ │ │ └── tutorial.txt │ │ │ └── release.txt │ │ ├── include/ │ │ │ ├── asio.cpp │ │ │ ├── asio.h │ │ │ ├── asiodrivers.cpp │ │ │ ├── asiodrivers.h │ │ │ ├── asiodrvr.h │ │ │ ├── asiolist.cpp │ │ │ ├── asiolist.h │ │ │ ├── asiosys.h │ │ │ ├── dsound.h │ │ │ ├── functiondiscoverykeys_devpkey.h │ │ │ ├── ginclude.h │ │ │ ├── iasiodrv.h │ │ │ ├── iasiothiscallresolver.cpp │ │ │ ├── iasiothiscallresolver.h │ │ │ └── soundcard.h │ │ ├── install.txt │ │ ├── rtaudio.pc.in │ │ ├── rtaudio_c.cpp │ │ ├── rtaudio_c.h │ │ └── tests/ │ │ ├── CMakeLists.txt │ │ ├── Debug/ │ │ │ └── .placeholder │ │ ├── Makefile.am │ │ ├── Release/ │ │ │ └── .placeholder │ │ ├── Windows/ │ │ │ ├── Debug/ │ │ │ │ └── .placeholder │ │ │ ├── Release/ │ │ │ │ └── .placeholder │ │ │ ├── audioprobe.dsp │ │ │ ├── duplex.dsp │ │ │ ├── playraw.dsp │ │ │ ├── playsaw.dsp │ │ │ ├── record.dsp │ │ │ ├── rtaudio.dsw │ │ │ ├── testall.dsp │ │ │ └── teststops.dsp │ │ ├── audioprobe.cpp │ │ ├── duplex.cpp │ │ ├── playraw.cpp │ │ ├── playsaw.cpp │ │ ├── record.cpp │ │ ├── testall.cpp │ │ └── teststops.cpp │ └── rtmidi/ │ ├── .gitattributes │ ├── .github/ │ │ └── issue_template.md │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile.am │ ├── README.md │ ├── RtMidi.cpp │ ├── RtMidi.h │ ├── autogen.sh │ ├── configure.ac │ ├── contrib/ │ │ └── go/ │ │ └── rtmidi/ │ │ ├── rtmidi.go │ │ ├── rtmidi_stub.cpp │ │ ├── rtmidi_stub.h │ │ └── rtmidi_test.go │ ├── doc/ │ │ ├── Makefile.am │ │ ├── doxygen/ │ │ │ ├── Doxyfile.in │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── tutorial.txt │ │ └── release.txt │ ├── msw/ │ │ ├── readme │ │ ├── rtmidilib.sln │ │ └── rtmidilib.vcproj │ ├── rtmidi-config.in │ ├── rtmidi.pc.in │ ├── rtmidi_c.cpp │ ├── rtmidi_c.h │ └── tests/ │ ├── Debug/ │ │ └── .placeholder │ ├── Makefile.am │ ├── Release/ │ │ └── .placeholder │ ├── RtMidi.dsw │ ├── cmidiin.cpp │ ├── cmidiin.dsp │ ├── midiclock.cpp │ ├── midiout.cpp │ ├── midiout.dsp │ ├── midiprobe.cpp │ ├── midiprobe.dsp │ ├── qmidiin.cpp │ ├── qmidiin.dsp │ ├── sysextest.cpp │ └── sysextest.dsp └── zserge/ └── webview/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── examples/ │ ├── canvas-go/ │ │ └── main.go │ ├── counter-go/ │ │ ├── assets.go │ │ ├── js/ │ │ │ ├── picodom/ │ │ │ │ └── app.js │ │ │ ├── react/ │ │ │ │ └── app.jsx │ │ │ ├── styles.css │ │ │ └── vue/ │ │ │ └── app.js │ │ ├── main.go │ │ ├── picodom.go │ │ ├── react.go │ │ └── vue.go │ ├── minimal/ │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── main.c │ ├── minimal-go/ │ │ └── main.go │ ├── page-load-go/ │ │ └── main.go │ ├── timer-cxx/ │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── todo-go/ │ │ ├── assets/ │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ ├── picodom.js │ │ │ └── styles.css │ │ ├── assets.go │ │ └── main.go │ └── window-go/ │ └── main.go ├── webview.go ├── webview.h └── webview_test.go