├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── dist └── .empty ├── docs ├── development │ ├── Build.md │ ├── Increase FPS.md │ └── Updgrade Threejs.md ├── index.md ├── intros │ ├── buffers-sizing.md │ ├── functional-aspects.md │ ├── internals.md │ └── language-intro.md ├── reference.md ├── reference │ ├── colour │ │ ├── background.yaml │ │ ├── fill.yaml │ │ ├── noFill.yaml │ │ ├── noStroke.yaml │ │ ├── simpleGradient.yaml │ │ └── stroke.yaml │ ├── matrix │ │ ├── bigger.yaml │ │ ├── move.yaml │ │ ├── rotate.yaml │ │ ├── scale.yaml │ │ └── smaller.yaml │ └── shape │ │ ├── ball.yaml │ │ ├── box.yaml │ │ ├── line.yaml │ │ ├── peg.yaml │ │ └── rect.yaml └── wiki │ ├── plugins │ └── lcldoc │ │ ├── files │ │ ├── js-yaml.min.js │ │ ├── lcldoc.js │ │ └── tiddlywiki.files │ │ ├── plugin.info │ │ ├── usage.tid │ │ └── wrapper.js │ ├── tiddlers │ ├── $__DefaultTiddlers.tid │ ├── $__SiteSubtitle.tid │ ├── $__SiteTitle.tid │ ├── $__StoryList.tid │ ├── $__config_Navigation_UpdateAddressBar.tid │ ├── $__config_Navigation_UpdateHistory.tid │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_save-wiki.tid │ ├── $__config_Toolbar_ButtonClass.tid │ ├── $__config_WikiParserRules_Inline_wikilink.tid │ ├── $__plugins_bj_plugins_marked.tid │ ├── LiveCodeLab.tid │ ├── development │ │ └── tiddlywiki.files │ └── reference │ │ └── tiddlywiki.files │ └── tiddlywiki.info ├── images └── readme │ ├── LiveCodeLab-BannerForGithub.png │ ├── LiveCodeLab-GithubBanner.png │ └── headerLogoAndTitle.png ├── package.json ├── src ├── app │ ├── autocoder │ │ └── autocoder.coffee │ ├── core │ │ ├── animation-loop.coffee │ │ ├── background-painter.coffee │ │ ├── blend-controls.coffee │ │ ├── colour-functions.coffee │ │ ├── colour-literals.coffee │ │ ├── colour-values.coffee │ │ ├── event-emitter.coffee │ │ ├── global-scope.coffee │ │ ├── graphics-commands.coffee │ │ ├── languages.coffee │ │ ├── lights-commands.coffee │ │ ├── list-functions.coffee │ │ ├── livecodelab-core.coffee │ │ ├── matrix-commands.coffee │ │ ├── other-commands.coffee │ │ ├── threejs-system.coffee │ │ └── time-keeper.coffee │ ├── editor │ │ └── editor.js │ ├── globals │ │ ├── math.coffee │ │ └── numbertimes.coffee │ ├── languages │ │ ├── livelangv1 │ │ │ ├── code-preprocessor.coffee │ │ │ ├── compiler.coffee │ │ │ ├── index.coffee │ │ │ └── runner.coffee │ │ └── livelangv2 │ │ │ ├── ast │ │ │ ├── index.js │ │ │ └── types.js │ │ │ ├── compiler.coffee │ │ │ ├── grammar.pegjs │ │ │ ├── index.coffee │ │ │ ├── interpreter.js │ │ │ └── runner.coffee │ ├── lib │ │ ├── codemirror │ │ │ └── livecodelang.js │ │ ├── coffee-script.js │ │ ├── jquery.easing-sooper.js │ │ ├── jquery.simplemodal.js │ │ ├── jquery.sooperfish.js │ │ ├── pulse.js │ │ └── threejs │ │ │ ├── Detector.js │ │ │ ├── postprocessing │ │ │ ├── EffectComposer.js │ │ │ ├── MaskPass.js │ │ │ ├── RenderPass.js │ │ │ ├── SavePass.js │ │ │ └── ShaderPass.js │ │ │ └── shaders │ │ │ ├── CopyShader.js │ │ │ └── LCLBlendShader.js │ ├── programs │ │ ├── demos │ │ │ ├── acidtown.lcl.yaml │ │ │ ├── aknot.lcl.yaml │ │ │ ├── crazyribbon.lcl.yaml │ │ │ ├── cubesandspikes.lcl.yaml │ │ │ ├── dice.lcl.yaml │ │ │ ├── infoway.lcl.yaml │ │ │ ├── lamp.lcl.yaml │ │ │ ├── lava.lcl.yaml │ │ │ ├── littlespiral.lcl.yaml │ │ │ ├── mobius.lcl.yaml │ │ │ ├── monsterblob.lcl.yaml │ │ │ ├── movingblocks.lcl.yaml │ │ │ ├── redthreads.lcl.yaml │ │ │ ├── ringball.lcl.yaml │ │ │ ├── rose.lcl.yaml │ │ │ ├── seaweeds.lcl.yaml │ │ │ ├── shards.lcl.yaml │ │ │ ├── simplecube.lcl.yaml │ │ │ ├── sounddjcastro.lcl.yaml │ │ │ ├── soundindustrial.lcl.yaml │ │ │ ├── soundoverscratch.lcl.yaml │ │ │ ├── soundtrythemall.lcl.yaml │ │ │ ├── springysquares.lcl.yaml │ │ │ ├── tentacle.lcl.yaml │ │ │ ├── theeye.lcl.yaml │ │ │ ├── thegrid.lcl.yaml │ │ │ ├── trillionfeathers.lcl.yaml │ │ │ ├── tube.lcl.yaml │ │ │ ├── turbine.lcl.yaml │ │ │ ├── twocubes.lcl.yaml │ │ │ ├── zfight.lcl.yaml │ │ │ └── zigzag.lcl.yaml │ │ ├── program-loader.coffee │ │ ├── programs.coffee │ │ └── tutorials │ │ │ ├── animationstyle.lcl.yaml │ │ │ ├── autocode.lcl.yaml │ │ │ ├── background.lcl.yaml │ │ │ ├── ball.lcl.yaml │ │ │ ├── colornames.lcl.yaml │ │ │ ├── conditionals.lcl.yaml │ │ │ ├── doonce.lcl.yaml │ │ │ ├── fill.lcl.yaml │ │ │ ├── frame.lcl.yaml │ │ │ ├── gradient.lcl.yaml │ │ │ ├── helloworld.lcl.yaml │ │ │ ├── intro.lcl.yaml │ │ │ ├── lights.lcl.yaml │ │ │ ├── line.lcl.yaml │ │ │ ├── move.lcl.yaml │ │ │ ├── pushpopMatrix.lcl.yaml │ │ │ ├── rotate.lcl.yaml │ │ │ ├── scale.lcl.yaml │ │ │ ├── somenotes.lcl.yaml │ │ │ ├── stroke.lcl.yaml │ │ │ ├── time.lcl.yaml │ │ │ └── times.lcl.yaml │ ├── sound │ │ ├── audiofiles │ │ │ ├── 100708__steveygos93__bleep_a.mp3 │ │ │ ├── 100708__steveygos93__bleep_a.ogg │ │ │ ├── 100708__steveygos93__bleep_b.mp3 │ │ │ ├── 100708__steveygos93__bleep_b.ogg │ │ │ ├── 100708__steveygos93__bleep_c.mp3 │ │ │ ├── 100708__steveygos93__bleep_c.ogg │ │ │ ├── 100708__steveygos93__bleep_d.mp3 │ │ │ ├── 100708__steveygos93__bleep_d.ogg │ │ │ ├── 132389__blackie666__alienbleep.mp3 │ │ │ ├── 132389__blackie666__alienbleep.ogg │ │ │ ├── 24004__laya__dance-kick3.mp3 │ │ │ ├── 24004__laya__dance-kick3.ogg │ │ │ ├── 33325__laya__trance-kick01.mp3 │ │ │ ├── 33325__laya__trance-kick01.ogg │ │ │ ├── 49255__keinzweiter__bonobob-funk.mp3 │ │ │ ├── 49255__keinzweiter__bonobob-funk.ogg │ │ │ ├── 8938__patchen__piano-hits-hand-03v2.mp3 │ │ │ ├── 8938__patchen__piano-hits-hand-03v2.ogg │ │ │ ├── 9569__thanvannispen__industrial-low-flash04.mp3 │ │ │ ├── 9569__thanvannispen__industrial-low-flash04.ogg │ │ │ ├── 9570__thanvannispen__industrial-low-flash07.mp3 │ │ │ ├── 9570__thanvannispen__industrial-low-flash07.ogg │ │ │ ├── AMB_HHCL.mp3 │ │ │ ├── AMB_HHCL.ogg │ │ │ ├── AMB_HHOP.mp3 │ │ │ ├── AMB_HHOP.ogg │ │ │ ├── AMB_LTM2.mp3 │ │ │ ├── AMB_LTM2.ogg │ │ │ ├── AMB_RIM1.mp3 │ │ │ ├── AMB_RIM1.ogg │ │ │ ├── AMB_SN13.mp3 │ │ │ ├── AMB_SN13.ogg │ │ │ ├── AMB_SN_5.mp3 │ │ │ ├── AMB_SN_5.ogg │ │ │ ├── CRASH_1.mp3 │ │ │ ├── CRASH_1.ogg │ │ │ ├── CRASH_5.mp3 │ │ │ ├── CRASH_5.ogg │ │ │ ├── CRASH_6.mp3 │ │ │ ├── CRASH_6.ogg │ │ │ ├── RIDE_1.mp3 │ │ │ ├── RIDE_1.ogg │ │ │ ├── a-ciack2.mp3 │ │ │ ├── a-ciack2.ogg │ │ │ ├── a-dish2.mp3 │ │ │ ├── a-dish2.ogg │ │ │ ├── a-dish3.mp3 │ │ │ ├── a-dish3.ogg │ │ │ ├── a-hiss1.mp3 │ │ │ ├── a-hiss1.ogg │ │ │ ├── a-hiss2.mp3 │ │ │ ├── a-hiss2.ogg │ │ │ ├── a-hiss3.mp3 │ │ │ ├── a-hiss3.ogg │ │ │ ├── a-mouth1.mp3 │ │ │ ├── a-mouth1.ogg │ │ │ ├── a-mouth2.mp3 │ │ │ ├── a-mouth2.ogg │ │ │ ├── a-mouth3.mp3 │ │ │ ├── a-mouth3.ogg │ │ │ ├── a-mouth4.mp3 │ │ │ ├── a-mouth4.ogg │ │ │ ├── a-mouth5.mp3 │ │ │ ├── a-mouth5.ogg │ │ │ ├── a-snap2.mp3 │ │ │ ├── a-snap2.ogg │ │ │ ├── a-snare2.mp3 │ │ │ ├── a-snare2.ogg │ │ │ ├── a-thump2.mp3 │ │ │ ├── a-thump2.ogg │ │ │ ├── anotherKick.mp3 │ │ │ ├── anotherKick.ogg │ │ │ ├── anotherThump.mp3 │ │ │ ├── anotherThump.ogg │ │ │ ├── castro-sample1.mp3 │ │ │ ├── castro-sample10.mp3 │ │ │ ├── castro-sample11.mp3 │ │ │ ├── castro-sample12.mp3 │ │ │ ├── castro-sample13.mp3 │ │ │ ├── castro-sample14.mp3 │ │ │ ├── castro-sample15.mp3 │ │ │ ├── castro-sample16.mp3 │ │ │ ├── castro-sample17.mp3 │ │ │ ├── castro-sample18.mp3 │ │ │ ├── castro-sample19.mp3 │ │ │ ├── castro-sample2.mp3 │ │ │ ├── castro-sample20.mp3 │ │ │ ├── castro-sample21.mp3 │ │ │ ├── castro-sample22.mp3 │ │ │ ├── castro-sample23.mp3 │ │ │ ├── castro-sample24.mp3 │ │ │ ├── castro-sample25.mp3 │ │ │ ├── castro-sample26.mp3 │ │ │ ├── castro-sample3.mp3 │ │ │ ├── castro-sample4.mp3 │ │ │ ├── castro-sample5.mp3 │ │ │ ├── castro-sample6.mp3 │ │ │ ├── castro-sample7.mp3 │ │ │ ├── castro-sample8.mp3 │ │ │ ├── castro-sample9.mp3 │ │ │ ├── ciack.mp3 │ │ │ ├── ciack.ogg │ │ │ ├── cosmos.mp3 │ │ │ ├── cosmos.ogg │ │ │ ├── detune.mp3 │ │ │ ├── detune.ogg │ │ │ ├── dish.mp3 │ │ │ ├── dish.ogg │ │ │ ├── downstairs.mp3 │ │ │ ├── downstairs.ogg │ │ │ ├── glass.mp3 │ │ │ ├── glass.ogg │ │ │ ├── growl1.mp3 │ │ │ ├── growl1.ogg │ │ │ ├── growl2.mp3 │ │ │ ├── growl2.ogg │ │ │ ├── growl3.mp3 │ │ │ ├── growl3.ogg │ │ │ ├── growl4.mp3 │ │ │ ├── growl4.ogg │ │ │ ├── growl5.mp3 │ │ │ ├── growl5.ogg │ │ │ ├── growl6.mp3 │ │ │ ├── growl6.ogg │ │ │ ├── hoover1.mp3 │ │ │ ├── hoover1.ogg │ │ │ ├── hoover2.mp3 │ │ │ ├── hoover2.ogg │ │ │ ├── nit1.mp3 │ │ │ ├── nit1.ogg │ │ │ ├── nit2.mp3 │ │ │ ├── nit2.ogg │ │ │ ├── nit3.mp3 │ │ │ ├── nit3.ogg │ │ │ ├── nit4.mp3 │ │ │ ├── nit4.ogg │ │ │ ├── nit5.mp3 │ │ │ ├── nit5.ogg │ │ │ ├── pianoLDChordsA.mp3 │ │ │ ├── pianoLDChordsA.ogg │ │ │ ├── pianoLDChordsB.mp3 │ │ │ ├── pianoLDChordsB.ogg │ │ │ ├── pianoLDChordsC.mp3 │ │ │ ├── pianoLDChordsC.ogg │ │ │ ├── pianoLDChordsE.mp3 │ │ │ ├── pianoLDChordsE.ogg │ │ │ ├── pianoLHChordsA.mp3 │ │ │ ├── pianoLHChordsA.ogg │ │ │ ├── pianoLHChordsB.mp3 │ │ │ ├── pianoLHChordsB.ogg │ │ │ ├── pianoLHChordsC.mp3 │ │ │ ├── pianoLHChordsC.ogg │ │ │ ├── pianoLHChordsE.mp3 │ │ │ ├── pianoLHChordsE.ogg │ │ │ ├── pianoRHChordsA.mp3 │ │ │ ├── pianoRHChordsA.ogg │ │ │ ├── pianoRHChordsB.mp3 │ │ │ ├── pianoRHChordsB.ogg │ │ │ ├── pianoRHChordsC.mp3 │ │ │ ├── pianoRHChordsC.ogg │ │ │ ├── pianoRHChordsE.mp3 │ │ │ ├── pianoRHChordsE.ogg │ │ │ ├── rust1.mp3 │ │ │ ├── rust1.ogg │ │ │ ├── rust2.mp3 │ │ │ ├── rust2.ogg │ │ │ ├── rust3.mp3 │ │ │ ├── rust3.ogg │ │ │ ├── scratch1.mp3 │ │ │ ├── scratch1.ogg │ │ │ ├── scratch10.mp3 │ │ │ ├── scratch10.ogg │ │ │ ├── scratch11.mp3 │ │ │ ├── scratch11.ogg │ │ │ ├── scratch12.mp3 │ │ │ ├── scratch12.ogg │ │ │ ├── scratch13.mp3 │ │ │ ├── scratch13.ogg │ │ │ ├── scratch14.mp3 │ │ │ ├── scratch14.ogg │ │ │ ├── scratch15.mp3 │ │ │ ├── scratch15.ogg │ │ │ ├── scratch16.mp3 │ │ │ ├── scratch16.ogg │ │ │ ├── scratch17.mp3 │ │ │ ├── scratch17.ogg │ │ │ ├── scratch18.mp3 │ │ │ ├── scratch18.ogg │ │ │ ├── scratch19.mp3 │ │ │ ├── scratch19.ogg │ │ │ ├── scratch2.mp3 │ │ │ ├── scratch2.ogg │ │ │ ├── scratch20.mp3 │ │ │ ├── scratch20.ogg │ │ │ ├── scratch21.mp3 │ │ │ ├── scratch21.ogg │ │ │ ├── scratch22.mp3 │ │ │ ├── scratch22.ogg │ │ │ ├── scratch23.mp3 │ │ │ ├── scratch23.ogg │ │ │ ├── scratch24.mp3 │ │ │ ├── scratch24.ogg │ │ │ ├── scratch25.mp3 │ │ │ ├── scratch25.ogg │ │ │ ├── scratch26.mp3 │ │ │ ├── scratch26.ogg │ │ │ ├── scratch27.mp3 │ │ │ ├── scratch27.ogg │ │ │ ├── scratch28.mp3 │ │ │ ├── scratch28.ogg │ │ │ ├── scratch3.mp3 │ │ │ ├── scratch3.ogg │ │ │ ├── scratch31.mp3 │ │ │ ├── scratch31.ogg │ │ │ ├── scratch32.mp3 │ │ │ ├── scratch32.ogg │ │ │ ├── scratch33.mp3 │ │ │ ├── scratch33.ogg │ │ │ ├── scratch34.mp3 │ │ │ ├── scratch34.ogg │ │ │ ├── scratch35.mp3 │ │ │ ├── scratch35.ogg │ │ │ ├── scratch4.mp3 │ │ │ ├── scratch4.ogg │ │ │ ├── scratch5.mp3 │ │ │ ├── scratch5.ogg │ │ │ ├── scratch6.mp3 │ │ │ ├── scratch6.ogg │ │ │ ├── scratch7.mp3 │ │ │ ├── scratch7.ogg │ │ │ ├── scratch8.mp3 │ │ │ ├── scratch8.ogg │ │ │ ├── scratch9.mp3 │ │ │ ├── scratch9.ogg │ │ │ ├── siren1.mp3 │ │ │ ├── siren1.ogg │ │ │ ├── siren2.mp3 │ │ │ ├── siren2.ogg │ │ │ ├── siren3.mp3 │ │ │ ├── siren3.ogg │ │ │ ├── siren4.mp3 │ │ │ ├── siren4.ogg │ │ │ ├── snap.mp3 │ │ │ ├── snap.ogg │ │ │ ├── start_bing.mp3 │ │ │ ├── start_bing.ogg │ │ │ ├── tap1.mp3 │ │ │ ├── tap1.ogg │ │ │ ├── tap2.mp3 │ │ │ ├── tap2.ogg │ │ │ ├── tap3.mp3 │ │ │ ├── tap3.ogg │ │ │ ├── tap4.mp3 │ │ │ ├── tap4.ogg │ │ │ ├── tap5.mp3 │ │ │ ├── tap5.ogg │ │ │ ├── tap6.mp3 │ │ │ ├── tap6.ogg │ │ │ ├── tap7.mp3 │ │ │ ├── tap7.ogg │ │ │ ├── tense1.mp3 │ │ │ ├── tense1.ogg │ │ │ ├── tense2.mp3 │ │ │ ├── tense2.ogg │ │ │ ├── tense3.mp3 │ │ │ ├── tense3.ogg │ │ │ ├── tense4.mp3 │ │ │ ├── tense4.ogg │ │ │ ├── tense5.mp3 │ │ │ ├── tense5.ogg │ │ │ ├── tense6.mp3 │ │ │ ├── tense6.ogg │ │ │ ├── thump2.mp3 │ │ │ ├── thump2.ogg │ │ │ ├── toneMatrix-1.mp3 │ │ │ ├── toneMatrix-1.ogg │ │ │ ├── toneMatrix-10.mp3 │ │ │ ├── toneMatrix-10.ogg │ │ │ ├── toneMatrix-11.mp3 │ │ │ ├── toneMatrix-11.ogg │ │ │ ├── toneMatrix-12.mp3 │ │ │ ├── toneMatrix-12.ogg │ │ │ ├── toneMatrix-13.mp3 │ │ │ ├── toneMatrix-13.ogg │ │ │ ├── toneMatrix-14.mp3 │ │ │ ├── toneMatrix-14.ogg │ │ │ ├── toneMatrix-15.mp3 │ │ │ ├── toneMatrix-15.ogg │ │ │ ├── toneMatrix-16.mp3 │ │ │ ├── toneMatrix-16.ogg │ │ │ ├── toneMatrix-2.mp3 │ │ │ ├── toneMatrix-2.ogg │ │ │ ├── toneMatrix-3.mp3 │ │ │ ├── toneMatrix-3.ogg │ │ │ ├── toneMatrix-4.mp3 │ │ │ ├── toneMatrix-4.ogg │ │ │ ├── toneMatrix-5.mp3 │ │ │ ├── toneMatrix-5.ogg │ │ │ ├── toneMatrix-6.mp3 │ │ │ ├── toneMatrix-6.ogg │ │ │ ├── toneMatrix-7.mp3 │ │ │ ├── toneMatrix-7.ogg │ │ │ ├── toneMatrix-8.mp3 │ │ │ ├── toneMatrix-8.ogg │ │ │ ├── toneMatrix-9.mp3 │ │ │ ├── toneMatrix-9.ogg │ │ │ ├── tweet1-shaped.mp3 │ │ │ ├── tweet1-shaped.ogg │ │ │ ├── tweet10-shaped.mp3 │ │ │ ├── tweet10-shaped.ogg │ │ │ ├── tweet11-shaped.mp3 │ │ │ ├── tweet11-shaped.ogg │ │ │ ├── tweet12-shaped.mp3 │ │ │ ├── tweet12-shaped.ogg │ │ │ ├── tweet13-shaped.mp3 │ │ │ ├── tweet13-shaped.ogg │ │ │ ├── tweet2-shaped.mp3 │ │ │ ├── tweet2-shaped.ogg │ │ │ ├── tweet3-shaped.mp3 │ │ │ ├── tweet3-shaped.ogg │ │ │ ├── tweet4-shaped.mp3 │ │ │ ├── tweet4-shaped.ogg │ │ │ ├── tweet5-shaped.mp3 │ │ │ ├── tweet5-shaped.ogg │ │ │ ├── tweet6-shaped.mp3 │ │ │ ├── tweet6-shaped.ogg │ │ │ ├── tweet7-shaped.mp3 │ │ │ ├── tweet7-shaped.ogg │ │ │ ├── tweet8-shaped.mp3 │ │ │ ├── tweet8-shaped.ogg │ │ │ ├── tweet9-shaped.mp3 │ │ │ ├── tweet9-shaped.ogg │ │ │ ├── warm.mp3 │ │ │ └── warm.ogg │ │ ├── buzzAudioApi.coffee │ │ ├── pattern-player.coffee │ │ ├── samplebank.js │ │ ├── sound-system.coffee │ │ └── webAudioApi.coffee │ └── ui │ │ ├── big-cursor.coffee │ │ ├── canvas.coffee │ │ ├── stats.js │ │ ├── text-dimming.coffee │ │ ├── ui.coffee │ │ └── url-router.coffee ├── index.html ├── lcl.js └── style │ ├── codemirror.css │ ├── fonts │ ├── MavenPro-Black.eot │ ├── MavenPro-Black.ttf │ ├── MavenPro-Bold.eot │ ├── MavenPro-Bold.ttf │ ├── MavenPro-Medium.eot │ ├── MavenPro-Medium.ttf │ ├── MavenPro-Regular.eot │ └── MavenPro-Regular.ttf │ ├── images │ ├── arrows-black.png │ ├── arrows-white.png │ ├── simpleModal │ │ └── x.png │ └── tab-triangle-yellow.svg │ ├── main.css │ ├── night.css │ ├── simpleModal.css │ ├── sooperfish-theme-glass.css │ ├── sooperfish.css │ └── stats.css ├── tests ├── livelangv1 │ ├── code-preprocessor-tests.js │ └── compiler-tests.js └── livelangv2 │ ├── do_once_test.js │ ├── interpreter_test.js │ ├── old_language_tests.js │ ├── parser_assignment_test.js │ ├── parser_block_test.js │ ├── parser_comments_test.js │ ├── parser_full_test.js │ ├── parser_function_test.js │ ├── parser_if_test.js │ ├── parser_lazy_lambda_test.js │ ├── parser_list_tests.js │ ├── parser_loop_test.js │ ├── parser_math_test.js │ └── parser_string_test.js ├── webpack.config.js └── webpack └── lcl-program-loader.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | [core] 2 | autocrlf=false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 12.10.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | package.json 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/README.md -------------------------------------------------------------------------------- /dist/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/development/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/development/Build.md -------------------------------------------------------------------------------- /docs/development/Increase FPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/development/Increase FPS.md -------------------------------------------------------------------------------- /docs/development/Updgrade Threejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/development/Updgrade Threejs.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/intros/buffers-sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/intros/buffers-sizing.md -------------------------------------------------------------------------------- /docs/intros/functional-aspects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/intros/functional-aspects.md -------------------------------------------------------------------------------- /docs/intros/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/intros/internals.md -------------------------------------------------------------------------------- /docs/intros/language-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/intros/language-intro.md -------------------------------------------------------------------------------- /docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference.md -------------------------------------------------------------------------------- /docs/reference/colour/background.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/colour/background.yaml -------------------------------------------------------------------------------- /docs/reference/colour/fill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/colour/fill.yaml -------------------------------------------------------------------------------- /docs/reference/colour/noFill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/colour/noFill.yaml -------------------------------------------------------------------------------- /docs/reference/colour/noStroke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/colour/noStroke.yaml -------------------------------------------------------------------------------- /docs/reference/colour/simpleGradient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/colour/simpleGradient.yaml -------------------------------------------------------------------------------- /docs/reference/colour/stroke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/colour/stroke.yaml -------------------------------------------------------------------------------- /docs/reference/matrix/bigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/matrix/bigger.yaml -------------------------------------------------------------------------------- /docs/reference/matrix/move.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/matrix/move.yaml -------------------------------------------------------------------------------- /docs/reference/matrix/rotate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/matrix/rotate.yaml -------------------------------------------------------------------------------- /docs/reference/matrix/scale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/matrix/scale.yaml -------------------------------------------------------------------------------- /docs/reference/matrix/smaller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/matrix/smaller.yaml -------------------------------------------------------------------------------- /docs/reference/shape/ball.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/shape/ball.yaml -------------------------------------------------------------------------------- /docs/reference/shape/box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/shape/box.yaml -------------------------------------------------------------------------------- /docs/reference/shape/line.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/shape/line.yaml -------------------------------------------------------------------------------- /docs/reference/shape/peg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/shape/peg.yaml -------------------------------------------------------------------------------- /docs/reference/shape/rect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/reference/shape/rect.yaml -------------------------------------------------------------------------------- /docs/wiki/plugins/lcldoc/files/js-yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/plugins/lcldoc/files/js-yaml.min.js -------------------------------------------------------------------------------- /docs/wiki/plugins/lcldoc/files/lcldoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/plugins/lcldoc/files/lcldoc.js -------------------------------------------------------------------------------- /docs/wiki/plugins/lcldoc/files/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/plugins/lcldoc/files/tiddlywiki.files -------------------------------------------------------------------------------- /docs/wiki/plugins/lcldoc/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/plugins/lcldoc/plugin.info -------------------------------------------------------------------------------- /docs/wiki/plugins/lcldoc/usage.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/plugins/lcldoc/usage.tid -------------------------------------------------------------------------------- /docs/wiki/plugins/lcldoc/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/plugins/lcldoc/wrapper.js -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__DefaultTiddlers.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__SiteSubtitle.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__SiteTitle.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: LiveCodeLab 2 | title: $:/StoryList 3 | 4 | -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__config_Navigation_UpdateAddressBar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__config_Navigation_UpdateAddressBar.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__config_Navigation_UpdateHistory.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__config_Navigation_UpdateHistory.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_save-wiki.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_save-wiki.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__config_Toolbar_ButtonClass.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__config_Toolbar_ButtonClass.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__config_WikiParserRules_Inline_wikilink.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__config_WikiParserRules_Inline_wikilink.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/$__plugins_bj_plugins_marked.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/$__plugins_bj_plugins_marked.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/LiveCodeLab.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/LiveCodeLab.tid -------------------------------------------------------------------------------- /docs/wiki/tiddlers/development/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/development/tiddlywiki.files -------------------------------------------------------------------------------- /docs/wiki/tiddlers/reference/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlers/reference/tiddlywiki.files -------------------------------------------------------------------------------- /docs/wiki/tiddlywiki.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/docs/wiki/tiddlywiki.info -------------------------------------------------------------------------------- /images/readme/LiveCodeLab-BannerForGithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/images/readme/LiveCodeLab-BannerForGithub.png -------------------------------------------------------------------------------- /images/readme/LiveCodeLab-GithubBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/images/readme/LiveCodeLab-GithubBanner.png -------------------------------------------------------------------------------- /images/readme/headerLogoAndTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/images/readme/headerLogoAndTitle.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/package.json -------------------------------------------------------------------------------- /src/app/autocoder/autocoder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/autocoder/autocoder.coffee -------------------------------------------------------------------------------- /src/app/core/animation-loop.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/animation-loop.coffee -------------------------------------------------------------------------------- /src/app/core/background-painter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/background-painter.coffee -------------------------------------------------------------------------------- /src/app/core/blend-controls.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/blend-controls.coffee -------------------------------------------------------------------------------- /src/app/core/colour-functions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/colour-functions.coffee -------------------------------------------------------------------------------- /src/app/core/colour-literals.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/colour-literals.coffee -------------------------------------------------------------------------------- /src/app/core/colour-values.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/colour-values.coffee -------------------------------------------------------------------------------- /src/app/core/event-emitter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/event-emitter.coffee -------------------------------------------------------------------------------- /src/app/core/global-scope.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/global-scope.coffee -------------------------------------------------------------------------------- /src/app/core/graphics-commands.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/graphics-commands.coffee -------------------------------------------------------------------------------- /src/app/core/languages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/languages.coffee -------------------------------------------------------------------------------- /src/app/core/lights-commands.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/lights-commands.coffee -------------------------------------------------------------------------------- /src/app/core/list-functions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/list-functions.coffee -------------------------------------------------------------------------------- /src/app/core/livecodelab-core.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/livecodelab-core.coffee -------------------------------------------------------------------------------- /src/app/core/matrix-commands.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/matrix-commands.coffee -------------------------------------------------------------------------------- /src/app/core/other-commands.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/other-commands.coffee -------------------------------------------------------------------------------- /src/app/core/threejs-system.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/threejs-system.coffee -------------------------------------------------------------------------------- /src/app/core/time-keeper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/core/time-keeper.coffee -------------------------------------------------------------------------------- /src/app/editor/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/editor/editor.js -------------------------------------------------------------------------------- /src/app/globals/math.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/globals/math.coffee -------------------------------------------------------------------------------- /src/app/globals/numbertimes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/globals/numbertimes.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv1/code-preprocessor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv1/code-preprocessor.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv1/compiler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv1/compiler.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv1/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv1/index.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv1/runner.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv1/runner.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv2/ast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/ast/index.js -------------------------------------------------------------------------------- /src/app/languages/livelangv2/ast/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/ast/types.js -------------------------------------------------------------------------------- /src/app/languages/livelangv2/compiler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/compiler.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv2/grammar.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/grammar.pegjs -------------------------------------------------------------------------------- /src/app/languages/livelangv2/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/index.coffee -------------------------------------------------------------------------------- /src/app/languages/livelangv2/interpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/interpreter.js -------------------------------------------------------------------------------- /src/app/languages/livelangv2/runner.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/languages/livelangv2/runner.coffee -------------------------------------------------------------------------------- /src/app/lib/codemirror/livecodelang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/codemirror/livecodelang.js -------------------------------------------------------------------------------- /src/app/lib/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/coffee-script.js -------------------------------------------------------------------------------- /src/app/lib/jquery.easing-sooper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/jquery.easing-sooper.js -------------------------------------------------------------------------------- /src/app/lib/jquery.simplemodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/jquery.simplemodal.js -------------------------------------------------------------------------------- /src/app/lib/jquery.sooperfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/jquery.sooperfish.js -------------------------------------------------------------------------------- /src/app/lib/pulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/pulse.js -------------------------------------------------------------------------------- /src/app/lib/threejs/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/Detector.js -------------------------------------------------------------------------------- /src/app/lib/threejs/postprocessing/EffectComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/postprocessing/EffectComposer.js -------------------------------------------------------------------------------- /src/app/lib/threejs/postprocessing/MaskPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/postprocessing/MaskPass.js -------------------------------------------------------------------------------- /src/app/lib/threejs/postprocessing/RenderPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/postprocessing/RenderPass.js -------------------------------------------------------------------------------- /src/app/lib/threejs/postprocessing/SavePass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/postprocessing/SavePass.js -------------------------------------------------------------------------------- /src/app/lib/threejs/postprocessing/ShaderPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/postprocessing/ShaderPass.js -------------------------------------------------------------------------------- /src/app/lib/threejs/shaders/CopyShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/shaders/CopyShader.js -------------------------------------------------------------------------------- /src/app/lib/threejs/shaders/LCLBlendShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/lib/threejs/shaders/LCLBlendShader.js -------------------------------------------------------------------------------- /src/app/programs/demos/acidtown.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/acidtown.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/aknot.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/aknot.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/crazyribbon.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/crazyribbon.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/cubesandspikes.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/cubesandspikes.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/dice.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/dice.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/infoway.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/infoway.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/lamp.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/lamp.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/lava.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/lava.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/littlespiral.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/littlespiral.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/mobius.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/mobius.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/monsterblob.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/monsterblob.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/movingblocks.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/movingblocks.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/redthreads.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/redthreads.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/ringball.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/ringball.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/rose.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/rose.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/seaweeds.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/seaweeds.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/shards.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/shards.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/simplecube.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/simplecube.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/sounddjcastro.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/sounddjcastro.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/soundindustrial.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/soundindustrial.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/soundoverscratch.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/soundoverscratch.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/soundtrythemall.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/soundtrythemall.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/springysquares.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/springysquares.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/tentacle.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/tentacle.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/theeye.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/theeye.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/thegrid.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/thegrid.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/trillionfeathers.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/trillionfeathers.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/tube.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/tube.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/turbine.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/turbine.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/twocubes.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/twocubes.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/zfight.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/zfight.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/demos/zigzag.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/demos/zigzag.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/program-loader.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/program-loader.coffee -------------------------------------------------------------------------------- /src/app/programs/programs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/programs.coffee -------------------------------------------------------------------------------- /src/app/programs/tutorials/animationstyle.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/animationstyle.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/autocode.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/autocode.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/background.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/background.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/ball.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/ball.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/colornames.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/colornames.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/conditionals.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/conditionals.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/doonce.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/doonce.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/fill.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/fill.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/frame.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/frame.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/gradient.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/gradient.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/helloworld.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/helloworld.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/intro.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/intro.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/lights.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/lights.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/line.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/line.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/move.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/move.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/pushpopMatrix.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/pushpopMatrix.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/rotate.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/rotate.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/scale.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/scale.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/somenotes.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/somenotes.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/stroke.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/stroke.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/time.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/time.lcl.yaml -------------------------------------------------------------------------------- /src/app/programs/tutorials/times.lcl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/programs/tutorials/times.lcl.yaml -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_a.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_a.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_a.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_b.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_b.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_b.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_b.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_c.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_c.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_c.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_c.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_d.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_d.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/100708__steveygos93__bleep_d.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/100708__steveygos93__bleep_d.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/132389__blackie666__alienbleep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/132389__blackie666__alienbleep.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/132389__blackie666__alienbleep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/132389__blackie666__alienbleep.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/24004__laya__dance-kick3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/24004__laya__dance-kick3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/24004__laya__dance-kick3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/24004__laya__dance-kick3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/33325__laya__trance-kick01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/33325__laya__trance-kick01.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/33325__laya__trance-kick01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/33325__laya__trance-kick01.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/49255__keinzweiter__bonobob-funk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/49255__keinzweiter__bonobob-funk.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/49255__keinzweiter__bonobob-funk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/49255__keinzweiter__bonobob-funk.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/8938__patchen__piano-hits-hand-03v2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/8938__patchen__piano-hits-hand-03v2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/8938__patchen__piano-hits-hand-03v2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/8938__patchen__piano-hits-hand-03v2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/9569__thanvannispen__industrial-low-flash04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/9569__thanvannispen__industrial-low-flash04.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/9569__thanvannispen__industrial-low-flash04.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/9569__thanvannispen__industrial-low-flash04.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/9570__thanvannispen__industrial-low-flash07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/9570__thanvannispen__industrial-low-flash07.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/9570__thanvannispen__industrial-low-flash07.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/9570__thanvannispen__industrial-low-flash07.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_HHCL.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_HHCL.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_HHCL.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_HHCL.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_HHOP.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_HHOP.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_HHOP.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_HHOP.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_LTM2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_LTM2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_LTM2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_LTM2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_RIM1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_RIM1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_RIM1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_RIM1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_SN13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_SN13.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_SN13.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_SN13.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_SN_5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_SN_5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/AMB_SN_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/AMB_SN_5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/CRASH_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/CRASH_1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/CRASH_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/CRASH_1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/CRASH_5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/CRASH_5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/CRASH_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/CRASH_5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/CRASH_6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/CRASH_6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/CRASH_6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/CRASH_6.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/RIDE_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/RIDE_1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/RIDE_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/RIDE_1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-ciack2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-ciack2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-ciack2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-ciack2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-dish2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-dish2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-dish2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-dish2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-dish3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-dish3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-dish3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-dish3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-hiss1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-hiss1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-hiss1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-hiss1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-hiss2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-hiss2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-hiss2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-hiss2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-hiss3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-hiss3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-hiss3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-hiss3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-mouth5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-mouth5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-snap2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-snap2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-snap2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-snap2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-snare2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-snare2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-snare2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-snare2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-thump2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-thump2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/a-thump2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/a-thump2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/anotherKick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/anotherKick.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/anotherKick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/anotherKick.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/anotherThump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/anotherThump.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/anotherThump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/anotherThump.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample10.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample11.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample12.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample13.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample14.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample14.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample15.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample15.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample16.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample16.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample17.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample17.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample18.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample18.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample19.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample19.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample20.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample20.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample21.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample21.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample22.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample22.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample23.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample23.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample24.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample24.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample25.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample25.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample26.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample26.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample7.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample8.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample8.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/castro-sample9.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/castro-sample9.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/ciack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/ciack.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/ciack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/ciack.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/cosmos.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/cosmos.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/cosmos.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/cosmos.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/detune.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/detune.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/detune.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/detune.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/dish.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/dish.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/dish.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/dish.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/downstairs.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/downstairs.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/downstairs.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/downstairs.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/glass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/glass.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/glass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/glass.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/growl6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/growl6.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/hoover1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/hoover1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/hoover1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/hoover1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/hoover2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/hoover2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/hoover2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/hoover2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/nit5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/nit5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsA.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsA.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsA.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsA.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsB.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsB.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsB.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsB.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsC.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsC.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsC.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsC.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsE.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsE.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLDChordsE.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLDChordsE.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsA.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsA.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsA.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsA.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsB.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsB.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsB.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsB.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsC.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsC.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsC.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsC.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsE.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsE.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoLHChordsE.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoLHChordsE.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsA.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsA.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsA.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsA.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsB.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsB.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsB.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsB.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsC.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsC.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsC.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsC.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsE.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsE.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/pianoRHChordsE.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/pianoRHChordsE.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/rust1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/rust1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/rust1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/rust1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/rust2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/rust2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/rust2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/rust2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/rust3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/rust3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/rust3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/rust3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch10.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch10.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch10.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch11.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch11.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch11.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch12.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch12.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch12.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch13.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch13.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch13.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch14.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch14.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch14.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch14.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch15.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch15.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch15.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch15.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch16.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch16.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch16.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch16.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch17.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch17.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch17.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch17.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch18.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch18.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch18.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch18.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch19.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch19.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch19.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch19.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch20.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch20.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch20.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch20.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch21.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch21.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch21.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch21.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch22.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch22.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch22.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch22.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch23.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch23.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch23.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch23.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch24.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch24.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch24.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch24.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch25.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch25.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch25.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch25.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch26.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch26.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch26.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch26.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch27.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch27.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch27.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch27.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch28.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch28.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch28.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch28.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch31.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch31.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch31.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch31.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch32.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch32.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch32.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch32.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch33.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch33.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch33.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch33.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch34.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch34.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch34.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch34.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch35.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch35.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch35.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch35.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch6.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch7.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch7.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch8.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch8.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch8.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch9.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch9.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/scratch9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/scratch9.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/siren4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/siren4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/snap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/snap.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/snap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/snap.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/start_bing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/start_bing.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/start_bing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/start_bing.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap6.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap7.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tap7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tap7.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tense6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tense6.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/thump2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/thump2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/thump2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/thump2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-1.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-1.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-10.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-10.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-10.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-11.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-11.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-11.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-12.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-12.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-12.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-13.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-13.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-13.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-14.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-14.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-14.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-14.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-15.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-15.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-15.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-15.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-16.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-16.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-16.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-16.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-2.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-2.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-3.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-3.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-4.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-4.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-5.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-5.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-6.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-6.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-7.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-7.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-8.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-8.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-8.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-9.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-9.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/toneMatrix-9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/toneMatrix-9.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet1-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet1-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet1-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet1-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet10-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet10-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet10-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet10-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet11-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet11-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet11-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet11-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet12-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet12-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet12-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet12-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet13-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet13-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet13-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet13-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet2-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet2-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet2-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet2-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet3-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet3-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet3-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet3-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet4-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet4-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet4-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet4-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet5-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet5-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet5-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet5-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet6-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet6-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet6-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet6-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet7-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet7-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet7-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet7-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet8-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet8-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet8-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet8-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet9-shaped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet9-shaped.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/tweet9-shaped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/tweet9-shaped.ogg -------------------------------------------------------------------------------- /src/app/sound/audiofiles/warm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/warm.mp3 -------------------------------------------------------------------------------- /src/app/sound/audiofiles/warm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/audiofiles/warm.ogg -------------------------------------------------------------------------------- /src/app/sound/buzzAudioApi.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/buzzAudioApi.coffee -------------------------------------------------------------------------------- /src/app/sound/pattern-player.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/pattern-player.coffee -------------------------------------------------------------------------------- /src/app/sound/samplebank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/samplebank.js -------------------------------------------------------------------------------- /src/app/sound/sound-system.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/sound-system.coffee -------------------------------------------------------------------------------- /src/app/sound/webAudioApi.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/sound/webAudioApi.coffee -------------------------------------------------------------------------------- /src/app/ui/big-cursor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/ui/big-cursor.coffee -------------------------------------------------------------------------------- /src/app/ui/canvas.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/ui/canvas.coffee -------------------------------------------------------------------------------- /src/app/ui/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/ui/stats.js -------------------------------------------------------------------------------- /src/app/ui/text-dimming.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/ui/text-dimming.coffee -------------------------------------------------------------------------------- /src/app/ui/ui.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/ui/ui.coffee -------------------------------------------------------------------------------- /src/app/ui/url-router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/app/ui/url-router.coffee -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/index.html -------------------------------------------------------------------------------- /src/lcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/lcl.js -------------------------------------------------------------------------------- /src/style/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/codemirror.css -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Black.eot -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Black.ttf -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Bold.eot -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Bold.ttf -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Medium.eot -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Medium.ttf -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Regular.eot -------------------------------------------------------------------------------- /src/style/fonts/MavenPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/fonts/MavenPro-Regular.ttf -------------------------------------------------------------------------------- /src/style/images/arrows-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/images/arrows-black.png -------------------------------------------------------------------------------- /src/style/images/arrows-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/images/arrows-white.png -------------------------------------------------------------------------------- /src/style/images/simpleModal/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/images/simpleModal/x.png -------------------------------------------------------------------------------- /src/style/images/tab-triangle-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/images/tab-triangle-yellow.svg -------------------------------------------------------------------------------- /src/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/main.css -------------------------------------------------------------------------------- /src/style/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/night.css -------------------------------------------------------------------------------- /src/style/simpleModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/simpleModal.css -------------------------------------------------------------------------------- /src/style/sooperfish-theme-glass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/sooperfish-theme-glass.css -------------------------------------------------------------------------------- /src/style/sooperfish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/sooperfish.css -------------------------------------------------------------------------------- /src/style/stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/src/style/stats.css -------------------------------------------------------------------------------- /tests/livelangv1/code-preprocessor-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv1/code-preprocessor-tests.js -------------------------------------------------------------------------------- /tests/livelangv1/compiler-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv1/compiler-tests.js -------------------------------------------------------------------------------- /tests/livelangv2/do_once_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/do_once_test.js -------------------------------------------------------------------------------- /tests/livelangv2/interpreter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/interpreter_test.js -------------------------------------------------------------------------------- /tests/livelangv2/old_language_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/old_language_tests.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_assignment_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_assignment_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_block_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_block_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_comments_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_comments_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_full_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_full_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_function_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_function_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_if_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_if_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_lazy_lambda_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_lazy_lambda_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_list_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_list_tests.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_loop_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_loop_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_math_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_math_test.js -------------------------------------------------------------------------------- /tests/livelangv2/parser_string_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/tests/livelangv2/parser_string_test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack/lcl-program-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidedc/livecodelab/HEAD/webpack/lcl-program-loader.js --------------------------------------------------------------------------------