├── .gitignore ├── Alchemist ├── Alchemist Getting Started.pdf ├── Alchemist_Getting_Started.md └── README.md ├── BioSignals └── README.md ├── CNAME ├── CPlusPlus └── README.md ├── DaisySP └── README.md ├── Faust ├── 00Bypass.dsp ├── 01Message.dsp ├── 02Input.dsp ├── 03Harmonics.dsp ├── 04Output.dsp ├── 05MIDI.dsp ├── 06VoctIn.dsp ├── 07VoctOut.dsp ├── README.md ├── Tutorial │ ├── 01_GettingStarted │ │ ├── FilteredStereoNoise.dsp │ │ └── README.md │ └── 02_DualVCA │ │ ├── DualVCA.dsp │ │ └── README.md └── upload.py ├── Genius ├── Genius Getting Started.pdf ├── Genius_Getting_Started.md └── README.md ├── LICENSE ├── Lich └── README.md ├── Magus ├── Magus Desktop Getting Started.pdf ├── Magus Eurorack Getting Started.pdf ├── Magus_Desktop_Getting_Started.md ├── Magus_Eurorack_Getting_Started.md └── README.md ├── MaxGen └── README.md ├── Maximilian └── README.md ├── OWL_Digital └── Legacy │ ├── OWLDigitalBoardRev05.jpg │ ├── OWL_DFU_BOOT.png │ ├── Owl-digital-pinout.pdf │ ├── Owl-digital-rev04-bom.pdf │ ├── Owl-digital-rev04-schematic.pdf │ ├── Owl-digital-rev04-schematic.png │ ├── Owl-pin-mappings.pdf │ └── index.html ├── OWL_Modular ├── Legacy │ ├── OWL-modular-rev02-bom.pdf │ ├── OWL-modular-rev02-schematic.pdf │ └── index.html ├── OWL Modular Getting Started v12.pdf ├── OWL_Modular_Getting_Started.md └── README.md ├── OWL_Patches ├── Creating_Patches.md ├── MIDI_Mappings.md └── README.md ├── OWL_Pedal ├── Legacy │ ├── Owl-analog-rev04-bom.pdf │ ├── Owl-analog-rev04-schematic.pdf │ ├── Owl-analog-rev04-schematic.png │ ├── OwlRev04InsideDFU.jpg │ ├── OwlRev05Inside.jpg │ ├── OwlRev05InsideDFU.jpg │ ├── Stomp-rev04-schematic.pdf │ ├── Stomp-rev04-schematic.png │ └── index.html ├── OWL Pedal Getting Started v12.pdf ├── OWL Pedal mkII Getting Started.pdf ├── OWL_Pedal_Getting_Started.md ├── OWL_Pedal_mkII_Getting_Started.md └── README.md ├── PureData ├── README.md └── SupportedObjects.md ├── README.md ├── Soul └── README.md ├── Tools ├── OpenWareMidiControl.js ├── README.md ├── calibration.html ├── calibration.js ├── firmware.html ├── firmware.js ├── jquery.min.js ├── midiclient.js └── owlcmd.js ├── Witch └── README.md ├── Wizard ├── README.md ├── Wizard Getting Started.pdf └── Wizard_Getting_Started.md ├── XibecaDevKit ├── Noctua_proto_Xibeca_PORTS.pdf ├── README.md ├── Xibeca Alternate Pin Functions.pdf ├── Xibeca Overview.pdf └── ibom_Xibeca_Proto.html ├── _config.yml └── assets └── images ├── Genius-Side.png ├── Witch.png ├── Xibeca.png └── xdk.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/.gitignore -------------------------------------------------------------------------------- /Alchemist/Alchemist Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Alchemist/Alchemist Getting Started.pdf -------------------------------------------------------------------------------- /Alchemist/Alchemist_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Alchemist/Alchemist_Getting_Started.md -------------------------------------------------------------------------------- /Alchemist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Alchemist/README.md -------------------------------------------------------------------------------- /BioSignals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/BioSignals/README.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.openwarelab.org -------------------------------------------------------------------------------- /CPlusPlus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/CPlusPlus/README.md -------------------------------------------------------------------------------- /DaisySP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/DaisySP/README.md -------------------------------------------------------------------------------- /Faust/00Bypass.dsp: -------------------------------------------------------------------------------- 1 | process = _; 2 | -------------------------------------------------------------------------------- /Faust/01Message.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/01Message.dsp -------------------------------------------------------------------------------- /Faust/02Input.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/02Input.dsp -------------------------------------------------------------------------------- /Faust/03Harmonics.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/03Harmonics.dsp -------------------------------------------------------------------------------- /Faust/04Output.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/04Output.dsp -------------------------------------------------------------------------------- /Faust/05MIDI.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/05MIDI.dsp -------------------------------------------------------------------------------- /Faust/06VoctIn.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/06VoctIn.dsp -------------------------------------------------------------------------------- /Faust/07VoctOut.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/07VoctOut.dsp -------------------------------------------------------------------------------- /Faust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/README.md -------------------------------------------------------------------------------- /Faust/Tutorial/01_GettingStarted/FilteredStereoNoise.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/Tutorial/01_GettingStarted/FilteredStereoNoise.dsp -------------------------------------------------------------------------------- /Faust/Tutorial/01_GettingStarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/Tutorial/01_GettingStarted/README.md -------------------------------------------------------------------------------- /Faust/Tutorial/02_DualVCA/DualVCA.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/Tutorial/02_DualVCA/DualVCA.dsp -------------------------------------------------------------------------------- /Faust/Tutorial/02_DualVCA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/Tutorial/02_DualVCA/README.md -------------------------------------------------------------------------------- /Faust/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Faust/upload.py -------------------------------------------------------------------------------- /Genius/Genius Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Genius/Genius Getting Started.pdf -------------------------------------------------------------------------------- /Genius/Genius_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Genius/Genius_Getting_Started.md -------------------------------------------------------------------------------- /Genius/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Genius/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/LICENSE -------------------------------------------------------------------------------- /Lich/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Lich/README.md -------------------------------------------------------------------------------- /Magus/Magus Desktop Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Magus/Magus Desktop Getting Started.pdf -------------------------------------------------------------------------------- /Magus/Magus Eurorack Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Magus/Magus Eurorack Getting Started.pdf -------------------------------------------------------------------------------- /Magus/Magus_Desktop_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Magus/Magus_Desktop_Getting_Started.md -------------------------------------------------------------------------------- /Magus/Magus_Eurorack_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Magus/Magus_Eurorack_Getting_Started.md -------------------------------------------------------------------------------- /Magus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Magus/README.md -------------------------------------------------------------------------------- /MaxGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/MaxGen/README.md -------------------------------------------------------------------------------- /Maximilian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Maximilian/README.md -------------------------------------------------------------------------------- /OWL_Digital/Legacy/OWLDigitalBoardRev05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/OWLDigitalBoardRev05.jpg -------------------------------------------------------------------------------- /OWL_Digital/Legacy/OWL_DFU_BOOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/OWL_DFU_BOOT.png -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-pinout.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-rev04-bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-rev04-bom.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-rev04-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-rev04-schematic.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-rev04-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-rev04-schematic.png -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-pin-mappings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-pin-mappings.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Digital/Legacy/index.html -------------------------------------------------------------------------------- /OWL_Modular/Legacy/OWL-modular-rev02-bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Modular/Legacy/OWL-modular-rev02-bom.pdf -------------------------------------------------------------------------------- /OWL_Modular/Legacy/OWL-modular-rev02-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Modular/Legacy/OWL-modular-rev02-schematic.pdf -------------------------------------------------------------------------------- /OWL_Modular/Legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Modular/Legacy/index.html -------------------------------------------------------------------------------- /OWL_Modular/OWL Modular Getting Started v12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Modular/OWL Modular Getting Started v12.pdf -------------------------------------------------------------------------------- /OWL_Modular/OWL_Modular_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Modular/OWL_Modular_Getting_Started.md -------------------------------------------------------------------------------- /OWL_Modular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Modular/README.md -------------------------------------------------------------------------------- /OWL_Patches/Creating_Patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Patches/Creating_Patches.md -------------------------------------------------------------------------------- /OWL_Patches/MIDI_Mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Patches/MIDI_Mappings.md -------------------------------------------------------------------------------- /OWL_Patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Patches/README.md -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Owl-analog-rev04-bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/Owl-analog-rev04-bom.pdf -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Owl-analog-rev04-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/Owl-analog-rev04-schematic.pdf -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Owl-analog-rev04-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/Owl-analog-rev04-schematic.png -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/OwlRev04InsideDFU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/OwlRev04InsideDFU.jpg -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/OwlRev05Inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/OwlRev05Inside.jpg -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/OwlRev05InsideDFU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/OwlRev05InsideDFU.jpg -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Stomp-rev04-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/Stomp-rev04-schematic.pdf -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Stomp-rev04-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/Stomp-rev04-schematic.png -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/Legacy/index.html -------------------------------------------------------------------------------- /OWL_Pedal/OWL Pedal Getting Started v12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/OWL Pedal Getting Started v12.pdf -------------------------------------------------------------------------------- /OWL_Pedal/OWL Pedal mkII Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/OWL Pedal mkII Getting Started.pdf -------------------------------------------------------------------------------- /OWL_Pedal/OWL_Pedal_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/OWL_Pedal_Getting_Started.md -------------------------------------------------------------------------------- /OWL_Pedal/OWL_Pedal_mkII_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/OWL_Pedal_mkII_Getting_Started.md -------------------------------------------------------------------------------- /OWL_Pedal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/OWL_Pedal/README.md -------------------------------------------------------------------------------- /PureData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/PureData/README.md -------------------------------------------------------------------------------- /PureData/SupportedObjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/PureData/SupportedObjects.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/README.md -------------------------------------------------------------------------------- /Soul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Soul/README.md -------------------------------------------------------------------------------- /Tools/OpenWareMidiControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/OpenWareMidiControl.js -------------------------------------------------------------------------------- /Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/README.md -------------------------------------------------------------------------------- /Tools/calibration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/calibration.html -------------------------------------------------------------------------------- /Tools/calibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/calibration.js -------------------------------------------------------------------------------- /Tools/firmware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/firmware.html -------------------------------------------------------------------------------- /Tools/firmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/firmware.js -------------------------------------------------------------------------------- /Tools/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/jquery.min.js -------------------------------------------------------------------------------- /Tools/midiclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/midiclient.js -------------------------------------------------------------------------------- /Tools/owlcmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Tools/owlcmd.js -------------------------------------------------------------------------------- /Witch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Witch/README.md -------------------------------------------------------------------------------- /Wizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Wizard/README.md -------------------------------------------------------------------------------- /Wizard/Wizard Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Wizard/Wizard Getting Started.pdf -------------------------------------------------------------------------------- /Wizard/Wizard_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/Wizard/Wizard_Getting_Started.md -------------------------------------------------------------------------------- /XibecaDevKit/Noctua_proto_Xibeca_PORTS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/XibecaDevKit/Noctua_proto_Xibeca_PORTS.pdf -------------------------------------------------------------------------------- /XibecaDevKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/XibecaDevKit/README.md -------------------------------------------------------------------------------- /XibecaDevKit/Xibeca Alternate Pin Functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/XibecaDevKit/Xibeca Alternate Pin Functions.pdf -------------------------------------------------------------------------------- /XibecaDevKit/Xibeca Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/XibecaDevKit/Xibeca Overview.pdf -------------------------------------------------------------------------------- /XibecaDevKit/ibom_Xibeca_Proto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/XibecaDevKit/ibom_Xibeca_Proto.html -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/images/Genius-Side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/assets/images/Genius-Side.png -------------------------------------------------------------------------------- /assets/images/Witch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/assets/images/Witch.png -------------------------------------------------------------------------------- /assets/images/Xibeca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/assets/images/Xibeca.png -------------------------------------------------------------------------------- /assets/images/xdk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebelTechnology/OpenWareLab/HEAD/assets/images/xdk.jpg --------------------------------------------------------------------------------