├── .gitignore ├── LICENSE ├── README.md ├── physics-strands ├── README.md ├── out │ ├── css │ │ └── main.css │ └── index.html ├── project.clj └── src │ └── physics_strands │ └── core.cljs ├── ws-bln-1 ├── LICENSE ├── day1 │ ├── .gitignore │ ├── out │ │ └── .empty │ ├── project.clj │ └── src │ │ └── day1 │ │ ├── core.clj │ │ └── github.clj ├── day2-reagent │ ├── .gitignore │ ├── project.clj │ ├── resources │ │ └── public │ │ │ ├── css │ │ │ └── site.css │ │ │ └── index.html │ └── src │ │ └── day2 │ │ └── core.cljs ├── day2-webgl │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── project.clj │ ├── resources │ │ └── public │ │ │ ├── css │ │ │ ├── cm-material.css │ │ │ ├── cm-solarized.css │ │ │ ├── codemirror.css │ │ │ └── site.css │ │ │ └── index.html │ └── src │ │ └── day2 │ │ └── webgl.cljs └── day3 │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── project.clj │ ├── resources │ ├── data │ │ ├── global-temp-annual.csv │ │ ├── global-temp-annual.json │ │ └── global-temp-monthly.csv │ └── public │ │ ├── css │ │ ├── cm-material.css │ │ ├── cm-solarized.css │ │ ├── codemirror.css │ │ └── site.css │ │ └── index.html │ └── src │ └── day3 │ ├── core.clj │ └── csv.clj ├── ws-bra-1 ├── LICENSE ├── README.org ├── project.clj └── src │ └── ws_bra_1 │ ├── core.clj │ └── utils.clj ├── ws-ldn-1 ├── .classpath ├── .project ├── LICENSE ├── README.md ├── assets │ ├── airports.svg │ ├── csg-mesh.stl │ ├── heatmap-example.jpg │ ├── mesh.stl │ └── webgl-example.jpg ├── project.clj ├── resources │ ├── airports.csv │ ├── day1 │ │ └── people.edn │ └── public │ │ └── index.html ├── src-cljs-day2 │ └── ws_ldn_1 │ │ └── ui │ │ └── day2 │ │ └── core.cljs ├── src-cljs-day3-1 │ └── ws_ldn_1 │ │ └── ui │ │ └── day3 │ │ └── viz.cljs ├── src-cljs-day3-2 │ └── ws_ldn_1 │ │ └── ui │ │ └── day3 │ │ └── webgl.cljs └── src │ └── ws_ldn_1 │ ├── day1 │ ├── csv.clj │ └── people.clj │ ├── day2 │ ├── mercator.clj │ └── svgmap.clj │ └── day3 │ └── threedee.clj ├── ws-ldn-10 ├── LICENSE ├── README.org ├── assets │ ├── agents.png │ ├── dejong.png │ ├── ex03.png │ ├── ex04.png │ ├── lsys-dragon.png │ ├── lsys-gasket.png │ ├── lsys-penrose.png │ ├── lsys-tree.png │ └── noise-lines.png ├── makevideo ├── project.clj ├── resources │ └── public │ │ ├── css │ │ └── style.css │ │ └── index.html └── src │ ├── clj │ ├── piksel │ │ └── core.clj │ └── ws_ldn_10 │ │ ├── ex01.clj │ │ ├── ex02.clj │ │ ├── ex03.clj │ │ ├── ex04.clj │ │ ├── ex05.clj │ │ └── ex06.clj │ └── cljs │ └── ws_ldn_10 │ └── speech.cljs ├── ws-ldn-11 ├── LICENSE ├── day1 │ ├── ex01 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex01 │ │ │ ├── core.cljs │ │ │ ├── shapes01.cljs │ │ │ ├── shapes02.cljs │ │ │ └── utils.cljs │ ├── ex02 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex02 │ │ │ ├── core.cljs │ │ │ ├── faster.cljs │ │ │ ├── fastest.cljs │ │ │ ├── naive.cljs │ │ │ ├── state.cljs │ │ │ └── utils.cljs │ └── ex03 │ │ ├── project.clj │ │ ├── resources │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── img │ │ │ ├── cubev.png │ │ │ ├── dione.jpg │ │ │ ├── earth.jpg │ │ │ └── moon.jpg │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── stats.js │ │ │ └── suzanne.stl │ │ └── src │ │ └── ex03 │ │ ├── webgl01.cljs │ │ ├── webgl02.cljs │ │ ├── webgl03.cljs │ │ ├── webgl04.cljs │ │ ├── webgl05.cljs │ │ ├── webgl06.cljs │ │ ├── webgl07.cljs │ │ └── webgl08.cljs ├── day2 │ ├── ex04 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ ├── cubev.png │ │ │ │ ├── sjo512.png │ │ │ │ └── sjo512_2.png │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ └── stats.js │ │ └── src │ │ │ └── ex04 │ │ │ ├── cache.cljs │ │ │ ├── camera.cljs │ │ │ ├── config.cljs │ │ │ ├── core.cljs │ │ │ ├── game.cljs │ │ │ ├── mesh.cljs │ │ │ ├── shaders.cljs │ │ │ └── texture.cljs │ ├── ex05 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ ├── app.js │ │ │ │ ├── base.js │ │ │ │ ├── main.js │ │ │ │ └── worker.js │ │ └── src │ │ │ └── ex05 │ │ │ ├── core.cljs │ │ │ └── worker.cljs │ ├── ex05b │ │ ├── README.org │ │ ├── postprocess.js │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── assets │ │ │ │ ├── deadpool.stl │ │ │ │ ├── suzanne.stl │ │ │ │ └── voxel.stl │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── figwheel.html │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex05b │ │ │ ├── core.cljs │ │ │ └── meshworker.cljs │ └── ex06 │ │ ├── project.clj │ │ ├── resources │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ └── index.html │ │ └── src │ │ └── ex06 │ │ ├── core.cljs │ │ ├── main.cljs │ │ └── shaders.cljs └── day3 │ └── ex07 │ ├── compile.sh │ ├── externs.js │ ├── memory.png │ ├── particles.c │ ├── project.clj │ ├── resources │ └── public │ │ ├── css │ │ └── style.css │ │ ├── img │ │ └── tex32.png │ │ ├── index.html │ │ └── js │ │ └── empty │ └── src │ └── ex07 │ └── core.cljs ├── ws-ldn-2 ├── LICENSE ├── README.md ├── assets │ ├── ldn-heatmap-count.jpg │ └── ldn-heatmap.jpg ├── project.clj ├── resources │ ├── data │ │ ├── london-boroughs.nt.gz │ │ ├── london-sales-2013-2014.csv.gz │ │ ├── queries.edn │ │ └── sales-2013.edn.gz │ └── public │ │ ├── css │ │ ├── cm-material.css │ │ ├── cm-solarized.css │ │ ├── codemirror.css │ │ └── site.css │ │ └── index.html ├── src │ ├── clj │ │ └── ws_ldn_2 │ │ │ ├── async.clj │ │ │ ├── core.clj │ │ │ ├── csvconvert.clj │ │ │ └── utils.clj │ └── cljs │ │ └── ws_ldn_2 │ │ ├── components │ │ ├── dropdown.cljs │ │ └── editor.cljs │ │ ├── core.cljs │ │ ├── map_project.cljs │ │ ├── nav.cljs │ │ ├── router.cljs │ │ ├── state.cljs │ │ ├── utils.cljs │ │ └── views │ │ ├── home.cljs │ │ ├── map.cljs │ │ └── query.cljs └── workshop.org ├── ws-ldn-8 ├── day1 │ ├── ex01 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex01 │ │ │ ├── core.cljs │ │ │ ├── faster.cljs │ │ │ ├── fastest.cljs │ │ │ ├── naive.cljs │ │ │ └── utils.cljs │ ├── ex02 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex02 │ │ │ ├── core.cljs │ │ │ ├── csgtest.clj │ │ │ ├── shapes01.cljs │ │ │ ├── shapes02.cljs │ │ │ └── utils.cljs │ └── ex03 │ │ ├── project.clj │ │ ├── resources │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── img │ │ │ ├── cubev.png │ │ │ ├── dione.jpg │ │ │ ├── earth.jpg │ │ │ └── moon.jpg │ │ │ └── index.html │ │ └── src │ │ └── ex03 │ │ ├── webgl01.cljs │ │ ├── webgl02.cljs │ │ ├── webgl03.cljs │ │ ├── webgl04.cljs │ │ ├── webgl05.cljs │ │ ├── webgl06.cljs │ │ └── webgl07.cljs ├── day2 │ ├── ex04 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ ├── cubev.png │ │ │ │ ├── sjo512.png │ │ │ │ └── sjo512_2.png │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex04 │ │ │ ├── cache.cljs │ │ │ ├── camera.cljs │ │ │ ├── config.cljs │ │ │ ├── core.cljs │ │ │ ├── game.cljs │ │ │ ├── mesh.cljs │ │ │ ├── shaders.cljs │ │ │ └── texture.cljs │ └── ex05 │ │ ├── project.clj │ │ ├── resources │ │ └── public │ │ │ └── index.html │ │ └── src │ │ └── ex05 │ │ ├── core.cljs │ │ └── worker.cljs ├── day3 │ ├── ex06 │ │ ├── project.clj │ │ ├── resources │ │ │ └── public │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── index.html │ │ └── src │ │ │ └── ex06 │ │ │ ├── core.cljs │ │ │ ├── main.cljs │ │ │ └── shaders.cljs │ └── ex07 │ │ ├── compile.sh │ │ ├── externs.js │ │ ├── particles.c │ │ ├── project.clj │ │ ├── resources │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── img │ │ │ └── tex32.png │ │ │ └── index.html │ │ └── src │ │ └── ex07 │ │ └── core.cljs └── docs │ ├── GLSL_ES_Specification_1.0.17.pdf │ └── WebGL1.0-Specification.pdf ├── ws-ldn-9 ├── README.md ├── day1 │ └── ex01 │ │ ├── .gitignore │ │ ├── project.clj │ │ ├── src │ │ └── ex01 │ │ │ └── core.clj │ │ └── test │ │ └── ex01 │ │ └── core_test.clj ├── day2 │ ├── ex02 │ │ ├── project.clj │ │ ├── resources │ │ │ ├── airports.csv │ │ │ └── countries.csv │ │ └── src │ │ │ └── ex02 │ │ │ ├── csv.clj │ │ │ ├── mercator.clj │ │ │ └── svgmap.clj │ └── ex03 │ │ ├── project.clj │ │ ├── resources │ │ └── public │ │ │ └── css │ │ │ └── main.css │ │ └── src │ │ └── ex03 │ │ ├── core.clj │ │ └── walker.clj └── day3 │ └── ex04 │ ├── project.clj │ ├── resources │ └── public │ │ ├── css │ │ └── style.css │ │ └── index.html │ └── src │ └── ex04 │ ├── canvas.cljs │ ├── core.cljs │ ├── home.cljs │ ├── nav.cljs │ ├── router.cljs │ ├── state.cljs │ └── users.cljs └── ws-mz-1 ├── LICENSE ├── README.org ├── project.clj ├── resources ├── airports.csv └── public │ ├── css │ └── style.css │ └── index.html ├── src-cljs └── day2 │ └── ex03 │ ├── canvas.cljs │ ├── core.cljs │ ├── home.cljs │ ├── nav.cljs │ ├── router.cljs │ ├── state.cljs │ └── users.cljs └── src ├── day1 └── ex01.clj └── day2 └── ex02 ├── csv.clj ├── mercator.clj └── svgmap.clj /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | js/ 3 | target/ 4 | out/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/README.md -------------------------------------------------------------------------------- /physics-strands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/physics-strands/README.md -------------------------------------------------------------------------------- /physics-strands/out/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/physics-strands/out/css/main.css -------------------------------------------------------------------------------- /physics-strands/out/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/physics-strands/out/index.html -------------------------------------------------------------------------------- /physics-strands/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/physics-strands/project.clj -------------------------------------------------------------------------------- /physics-strands/src/physics_strands/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/physics-strands/src/physics_strands/core.cljs -------------------------------------------------------------------------------- /ws-bln-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/LICENSE -------------------------------------------------------------------------------- /ws-bln-1/day1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day1/.gitignore -------------------------------------------------------------------------------- /ws-bln-1/day1/out/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws-bln-1/day1/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day1/project.clj -------------------------------------------------------------------------------- /ws-bln-1/day1/src/day1/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day1/src/day1/core.clj -------------------------------------------------------------------------------- /ws-bln-1/day1/src/day1/github.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day1/src/day1/github.clj -------------------------------------------------------------------------------- /ws-bln-1/day2-reagent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-reagent/.gitignore -------------------------------------------------------------------------------- /ws-bln-1/day2-reagent/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-reagent/project.clj -------------------------------------------------------------------------------- /ws-bln-1/day2-reagent/resources/public/css/site.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws-bln-1/day2-reagent/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-reagent/resources/public/index.html -------------------------------------------------------------------------------- /ws-bln-1/day2-reagent/src/day2/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-reagent/src/day2/core.cljs -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/.classpath -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/.gitignore -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/.project -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/project.clj -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/resources/public/css/cm-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/resources/public/css/cm-material.css -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/resources/public/css/cm-solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/resources/public/css/cm-solarized.css -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/resources/public/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/resources/public/css/codemirror.css -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/resources/public/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/resources/public/css/site.css -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/resources/public/index.html -------------------------------------------------------------------------------- /ws-bln-1/day2-webgl/src/day2/webgl.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day2-webgl/src/day2/webgl.cljs -------------------------------------------------------------------------------- /ws-bln-1/day3/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/.classpath -------------------------------------------------------------------------------- /ws-bln-1/day3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/.gitignore -------------------------------------------------------------------------------- /ws-bln-1/day3/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/.project -------------------------------------------------------------------------------- /ws-bln-1/day3/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/project.clj -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/data/global-temp-annual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/data/global-temp-annual.csv -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/data/global-temp-annual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/data/global-temp-annual.json -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/data/global-temp-monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/data/global-temp-monthly.csv -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/public/css/cm-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/public/css/cm-material.css -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/public/css/cm-solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/public/css/cm-solarized.css -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/public/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/public/css/codemirror.css -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/public/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/public/css/site.css -------------------------------------------------------------------------------- /ws-bln-1/day3/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/resources/public/index.html -------------------------------------------------------------------------------- /ws-bln-1/day3/src/day3/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/src/day3/core.clj -------------------------------------------------------------------------------- /ws-bln-1/day3/src/day3/csv.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bln-1/day3/src/day3/csv.clj -------------------------------------------------------------------------------- /ws-bra-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bra-1/LICENSE -------------------------------------------------------------------------------- /ws-bra-1/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bra-1/README.org -------------------------------------------------------------------------------- /ws-bra-1/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bra-1/project.clj -------------------------------------------------------------------------------- /ws-bra-1/src/ws_bra_1/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bra-1/src/ws_bra_1/core.clj -------------------------------------------------------------------------------- /ws-bra-1/src/ws_bra_1/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-bra-1/src/ws_bra_1/utils.clj -------------------------------------------------------------------------------- /ws-ldn-1/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/.classpath -------------------------------------------------------------------------------- /ws-ldn-1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/.project -------------------------------------------------------------------------------- /ws-ldn-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/LICENSE -------------------------------------------------------------------------------- /ws-ldn-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/README.md -------------------------------------------------------------------------------- /ws-ldn-1/assets/airports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/assets/airports.svg -------------------------------------------------------------------------------- /ws-ldn-1/assets/csg-mesh.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/assets/csg-mesh.stl -------------------------------------------------------------------------------- /ws-ldn-1/assets/heatmap-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/assets/heatmap-example.jpg -------------------------------------------------------------------------------- /ws-ldn-1/assets/mesh.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/assets/mesh.stl -------------------------------------------------------------------------------- /ws-ldn-1/assets/webgl-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/assets/webgl-example.jpg -------------------------------------------------------------------------------- /ws-ldn-1/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/project.clj -------------------------------------------------------------------------------- /ws-ldn-1/resources/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/resources/airports.csv -------------------------------------------------------------------------------- /ws-ldn-1/resources/day1/people.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/resources/day1/people.edn -------------------------------------------------------------------------------- /ws-ldn-1/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-1/src-cljs-day2/ws_ldn_1/ui/day2/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src-cljs-day2/ws_ldn_1/ui/day2/core.cljs -------------------------------------------------------------------------------- /ws-ldn-1/src-cljs-day3-1/ws_ldn_1/ui/day3/viz.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src-cljs-day3-1/ws_ldn_1/ui/day3/viz.cljs -------------------------------------------------------------------------------- /ws-ldn-1/src-cljs-day3-2/ws_ldn_1/ui/day3/webgl.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src-cljs-day3-2/ws_ldn_1/ui/day3/webgl.cljs -------------------------------------------------------------------------------- /ws-ldn-1/src/ws_ldn_1/day1/csv.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src/ws_ldn_1/day1/csv.clj -------------------------------------------------------------------------------- /ws-ldn-1/src/ws_ldn_1/day1/people.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src/ws_ldn_1/day1/people.clj -------------------------------------------------------------------------------- /ws-ldn-1/src/ws_ldn_1/day2/mercator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src/ws_ldn_1/day2/mercator.clj -------------------------------------------------------------------------------- /ws-ldn-1/src/ws_ldn_1/day2/svgmap.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src/ws_ldn_1/day2/svgmap.clj -------------------------------------------------------------------------------- /ws-ldn-1/src/ws_ldn_1/day3/threedee.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-1/src/ws_ldn_1/day3/threedee.clj -------------------------------------------------------------------------------- /ws-ldn-10/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/LICENSE -------------------------------------------------------------------------------- /ws-ldn-10/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/README.org -------------------------------------------------------------------------------- /ws-ldn-10/assets/agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/agents.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/dejong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/dejong.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/ex03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/ex03.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/ex04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/ex04.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/lsys-dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/lsys-dragon.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/lsys-gasket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/lsys-gasket.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/lsys-penrose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/lsys-penrose.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/lsys-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/lsys-tree.png -------------------------------------------------------------------------------- /ws-ldn-10/assets/noise-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/assets/noise-lines.png -------------------------------------------------------------------------------- /ws-ldn-10/makevideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/makevideo -------------------------------------------------------------------------------- /ws-ldn-10/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/project.clj -------------------------------------------------------------------------------- /ws-ldn-10/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-10/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/piksel/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/piksel/core.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/ws_ldn_10/ex01.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/ws_ldn_10/ex01.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/ws_ldn_10/ex02.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/ws_ldn_10/ex02.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/ws_ldn_10/ex03.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/ws_ldn_10/ex03.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/ws_ldn_10/ex04.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/ws_ldn_10/ex04.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/ws_ldn_10/ex05.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/ws_ldn_10/ex05.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/clj/ws_ldn_10/ex06.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/clj/ws_ldn_10/ex06.clj -------------------------------------------------------------------------------- /ws-ldn-10/src/cljs/ws_ldn_10/speech.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-10/src/cljs/ws_ldn_10/speech.cljs -------------------------------------------------------------------------------- /ws-ldn-11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/LICENSE -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex01/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/resources/public/css/style.css: -------------------------------------------------------------------------------- 1 | /* some style */ 2 | 3 | -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex01/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/src/ex01/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex01/src/ex01/core.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/src/ex01/shapes01.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex01/src/ex01/shapes01.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/src/ex01/shapes02.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex01/src/ex01/shapes02.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex01/src/ex01/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex01/src/ex01/utils.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/src/ex02/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/src/ex02/core.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/src/ex02/faster.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/src/ex02/faster.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/src/ex02/fastest.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/src/ex02/fastest.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/src/ex02/naive.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/src/ex02/naive.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/src/ex02/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/src/ex02/state.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex02/src/ex02/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex02/src/ex02/utils.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/img/cubev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/img/cubev.png -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/img/dione.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/img/dione.jpg -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/img/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/img/earth.jpg -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/img/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/img/moon.jpg -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/js/stats.js -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/resources/public/suzanne.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/resources/public/suzanne.stl -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl01.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl01.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl02.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl02.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl03.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl03.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl04.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl04.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl05.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl05.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl06.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl06.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl07.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl07.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day1/ex03/src/ex03/webgl08.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day1/ex03/src/ex03/webgl08.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/resources/public/img/cubev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/resources/public/img/cubev.png -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/resources/public/img/sjo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/resources/public/img/sjo512.png -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/resources/public/img/sjo512_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/resources/public/img/sjo512_2.png -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/resources/public/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/resources/public/js/stats.js -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/cache.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/cache.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/camera.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/camera.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/config.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/config.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/core.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/game.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/game.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/mesh.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/mesh.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/shaders.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/shaders.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex04/src/ex04/texture.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex04/src/ex04/texture.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/resources/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/resources/public/js/app.js -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/resources/public/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/resources/public/js/base.js -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/resources/public/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/resources/public/js/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/resources/public/js/worker.js -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/src/ex05/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/src/ex05/core.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05/src/ex05/worker.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05/src/ex05/worker.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/README.org -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/postprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/postprocess.js -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/resources/public/assets/deadpool.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/resources/public/assets/deadpool.stl -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/resources/public/assets/suzanne.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/resources/public/assets/suzanne.stl -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/resources/public/assets/voxel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/resources/public/assets/voxel.stl -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/resources/public/figwheel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/resources/public/figwheel.html -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/src/ex05b/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/src/ex05b/core.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex05b/src/ex05b/meshworker.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex05b/src/ex05b/meshworker.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex06/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex06/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex06/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex06/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex06/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex06/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex06/src/ex06/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex06/src/ex06/core.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex06/src/ex06/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex06/src/ex06/main.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day2/ex06/src/ex06/shaders.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day2/ex06/src/ex06/shaders.cljs -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/compile.sh -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/externs.js -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/memory.png -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/particles.c -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/project.clj -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/resources/public/img/tex32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/resources/public/img/tex32.png -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/resources/public/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws-ldn-11/day3/ex07/src/ex07/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-11/day3/ex07/src/ex07/core.cljs -------------------------------------------------------------------------------- /ws-ldn-2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/LICENSE -------------------------------------------------------------------------------- /ws-ldn-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/README.md -------------------------------------------------------------------------------- /ws-ldn-2/assets/ldn-heatmap-count.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/assets/ldn-heatmap-count.jpg -------------------------------------------------------------------------------- /ws-ldn-2/assets/ldn-heatmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/assets/ldn-heatmap.jpg -------------------------------------------------------------------------------- /ws-ldn-2/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/project.clj -------------------------------------------------------------------------------- /ws-ldn-2/resources/data/london-boroughs.nt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/data/london-boroughs.nt.gz -------------------------------------------------------------------------------- /ws-ldn-2/resources/data/london-sales-2013-2014.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/data/london-sales-2013-2014.csv.gz -------------------------------------------------------------------------------- /ws-ldn-2/resources/data/queries.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/data/queries.edn -------------------------------------------------------------------------------- /ws-ldn-2/resources/data/sales-2013.edn.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/data/sales-2013.edn.gz -------------------------------------------------------------------------------- /ws-ldn-2/resources/public/css/cm-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/public/css/cm-material.css -------------------------------------------------------------------------------- /ws-ldn-2/resources/public/css/cm-solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/public/css/cm-solarized.css -------------------------------------------------------------------------------- /ws-ldn-2/resources/public/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/public/css/codemirror.css -------------------------------------------------------------------------------- /ws-ldn-2/resources/public/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/public/css/site.css -------------------------------------------------------------------------------- /ws-ldn-2/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-2/src/clj/ws_ldn_2/async.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/clj/ws_ldn_2/async.clj -------------------------------------------------------------------------------- /ws-ldn-2/src/clj/ws_ldn_2/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/clj/ws_ldn_2/core.clj -------------------------------------------------------------------------------- /ws-ldn-2/src/clj/ws_ldn_2/csvconvert.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/clj/ws_ldn_2/csvconvert.clj -------------------------------------------------------------------------------- /ws-ldn-2/src/clj/ws_ldn_2/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/clj/ws_ldn_2/utils.clj -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/components/dropdown.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/components/dropdown.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/components/editor.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/components/editor.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/core.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/map_project.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/map_project.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/nav.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/nav.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/router.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/router.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/state.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/utils.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/views/home.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/views/home.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/views/map.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/views/map.cljs -------------------------------------------------------------------------------- /ws-ldn-2/src/cljs/ws_ldn_2/views/query.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/src/cljs/ws_ldn_2/views/query.cljs -------------------------------------------------------------------------------- /ws-ldn-2/workshop.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-2/workshop.org -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/src/ex01/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/src/ex01/core.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/src/ex01/faster.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/src/ex01/faster.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/src/ex01/fastest.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/src/ex01/fastest.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/src/ex01/naive.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/src/ex01/naive.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex01/src/ex01/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex01/src/ex01/utils.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/resources/public/css/style.css: -------------------------------------------------------------------------------- 1 | /* some style */ 2 | 3 | -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/src/ex02/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/src/ex02/core.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/src/ex02/csgtest.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/src/ex02/csgtest.clj -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/src/ex02/shapes01.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/src/ex02/shapes01.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/src/ex02/shapes02.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/src/ex02/shapes02.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex02/src/ex02/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex02/src/ex02/utils.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/resources/public/img/cubev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/resources/public/img/cubev.png -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/resources/public/img/dione.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/resources/public/img/dione.jpg -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/resources/public/img/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/resources/public/img/earth.jpg -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/resources/public/img/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/resources/public/img/moon.jpg -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl01.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl01.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl02.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl02.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl03.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl03.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl04.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl04.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl05.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl05.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl06.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl06.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day1/ex03/src/ex03/webgl07.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day1/ex03/src/ex03/webgl07.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/resources/public/img/cubev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/resources/public/img/cubev.png -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/resources/public/img/sjo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/resources/public/img/sjo512.png -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/resources/public/img/sjo512_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/resources/public/img/sjo512_2.png -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/cache.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/cache.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/camera.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/camera.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/config.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/config.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/core.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/game.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/game.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/mesh.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/mesh.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/shaders.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/shaders.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex04/src/ex04/texture.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex04/src/ex04/texture.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex05/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex05/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex05/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex05/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex05/src/ex05/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex05/src/ex05/core.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day2/ex05/src/ex05/worker.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day2/ex05/src/ex05/worker.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex06/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex06/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex06/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex06/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex06/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex06/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex06/src/ex06/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex06/src/ex06/core.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex06/src/ex06/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex06/src/ex06/main.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex06/src/ex06/shaders.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex06/src/ex06/shaders.cljs -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/compile.sh -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/externs.js -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/particles.c -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/project.clj -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/resources/public/img/tex32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/resources/public/img/tex32.png -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-8/day3/ex07/src/ex07/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/day3/ex07/src/ex07/core.cljs -------------------------------------------------------------------------------- /ws-ldn-8/docs/GLSL_ES_Specification_1.0.17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/docs/GLSL_ES_Specification_1.0.17.pdf -------------------------------------------------------------------------------- /ws-ldn-8/docs/WebGL1.0-Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-8/docs/WebGL1.0-Specification.pdf -------------------------------------------------------------------------------- /ws-ldn-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/README.md -------------------------------------------------------------------------------- /ws-ldn-9/day1/ex01/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day1/ex01/.gitignore -------------------------------------------------------------------------------- /ws-ldn-9/day1/ex01/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day1/ex01/project.clj -------------------------------------------------------------------------------- /ws-ldn-9/day1/ex01/src/ex01/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day1/ex01/src/ex01/core.clj -------------------------------------------------------------------------------- /ws-ldn-9/day1/ex01/test/ex01/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day1/ex01/test/ex01/core_test.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex02/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex02/project.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex02/resources/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex02/resources/airports.csv -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex02/resources/countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex02/resources/countries.csv -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex02/src/ex02/csv.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex02/src/ex02/csv.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex02/src/ex02/mercator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex02/src/ex02/mercator.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex02/src/ex02/svgmap.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex02/src/ex02/svgmap.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex03/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex03/project.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex03/resources/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex03/resources/public/css/main.css -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex03/src/ex03/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex03/src/ex03/core.clj -------------------------------------------------------------------------------- /ws-ldn-9/day2/ex03/src/ex03/walker.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day2/ex03/src/ex03/walker.clj -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/project.clj -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/resources/public/index.html -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/canvas.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/canvas.cljs -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/core.cljs -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/home.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/home.cljs -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/nav.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/nav.cljs -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/router.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/router.cljs -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/state.cljs -------------------------------------------------------------------------------- /ws-ldn-9/day3/ex04/src/ex04/users.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-ldn-9/day3/ex04/src/ex04/users.cljs -------------------------------------------------------------------------------- /ws-mz-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/LICENSE -------------------------------------------------------------------------------- /ws-mz-1/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/README.org -------------------------------------------------------------------------------- /ws-mz-1/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/project.clj -------------------------------------------------------------------------------- /ws-mz-1/resources/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/resources/airports.csv -------------------------------------------------------------------------------- /ws-mz-1/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/resources/public/css/style.css -------------------------------------------------------------------------------- /ws-mz-1/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/resources/public/index.html -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/canvas.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/canvas.cljs -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/core.cljs -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/home.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/home.cljs -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/nav.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/nav.cljs -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/router.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/router.cljs -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/state.cljs -------------------------------------------------------------------------------- /ws-mz-1/src-cljs/day2/ex03/users.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src-cljs/day2/ex03/users.cljs -------------------------------------------------------------------------------- /ws-mz-1/src/day1/ex01.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src/day1/ex01.clj -------------------------------------------------------------------------------- /ws-mz-1/src/day2/ex02/csv.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src/day2/ex02/csv.clj -------------------------------------------------------------------------------- /ws-mz-1/src/day2/ex02/mercator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src/day2/ex02/mercator.clj -------------------------------------------------------------------------------- /ws-mz-1/src/day2/ex02/svgmap.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/demos/HEAD/ws-mz-1/src/day2/ex02/svgmap.clj --------------------------------------------------------------------------------