├── .clj-kondo ├── babashka │ ├── fs │ │ └── config.edn │ └── sci │ │ ├── config.edn │ │ └── sci │ │ └── core.clj ├── config.edn ├── rewrite-clj │ └── rewrite-clj │ │ └── config.edn └── sicmutils │ └── sicmutils │ ├── config.edn │ └── hooks │ ├── pattern │ └── rule.clj │ └── sicmutils │ ├── abstract │ └── function.clj │ ├── calculus │ └── coordinate.clj │ ├── env.clj │ └── util │ └── def.clj ├── .gitignore ├── README.md ├── deps.edn ├── dev └── user.clj ├── index.md ├── package.json ├── presentations ├── README.md ├── gulpfile.js ├── images │ ├── brent.jpg │ ├── brent_parabola.png │ ├── clojure.svg │ ├── fdg.jpeg │ ├── future_ed.jpeg │ ├── gjs.jpg │ ├── knuth_literate.jpeg │ ├── lisp_xkcd.jpeg │ ├── mathematica.svg │ ├── mm_notebook.jpg │ ├── numerical_recipes.jpg │ ├── nurse_log.jpeg │ ├── papert.jpeg │ ├── quad_island.png │ ├── sdf.jpeg │ ├── sicm.jpeg │ ├── sicmutils.png │ ├── sicmutils_ns.png │ ├── sicp.jpeg │ ├── turtle_geometry.jpeg │ ├── vector_analysis.jpeg │ └── workshop.jpeg ├── org │ ├── building_sicmutils.html │ ├── building_sicmutils.org │ ├── lisp_as_renaissance.html │ ├── lisp_as_renaissance.org │ └── reveal_header.org ├── package.json ├── references │ └── robust_systems.pdf └── reveal.js │ ├── dist │ ├── reset.css │ ├── reveal.css │ ├── reveal.esm.js │ ├── reveal.esm.js.map │ ├── reveal.js │ ├── reveal.js.map │ └── theme │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── fonts │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ └── white.css │ └── plugin │ ├── highlight │ ├── highlight.esm.js │ ├── highlight.js │ ├── monokai.css │ ├── plugin.js │ └── zenburn.css │ ├── markdown │ ├── markdown.esm.js │ ├── markdown.js │ └── plugin.js │ ├── math │ ├── katex.js │ ├── math.esm.js │ ├── math.js │ ├── mathjax2.js │ ├── mathjax3.js │ └── plugin.js │ ├── notes │ ├── notes.esm.js │ ├── notes.js │ ├── plugin.js │ └── speaker-view.html │ ├── search │ ├── plugin.js │ ├── search.esm.js │ └── search.js │ └── zoom │ ├── plugin.js │ ├── zoom.esm.js │ └── zoom.js ├── shadow-cljs.edn └── src ├── cube_controls.clj ├── demo.clj ├── demo ├── mathbox.cljs └── viewers.cljs ├── double_ellipsoid.clj ├── einstein.clj ├── ellipsoid.clj ├── functions.clj ├── live_oscillator.clj ├── oscillator.clj ├── pendulum.clj ├── physics_viewers.clj └── polar.clj /.clj-kondo/babashka/fs/config.edn: -------------------------------------------------------------------------------- 1 | {:lint-as {babashka.fs/with-temp-dir clojure.core/let}} 2 | -------------------------------------------------------------------------------- /.clj-kondo/babashka/sci/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/babashka/sci/config.edn -------------------------------------------------------------------------------- /.clj-kondo/babashka/sci/sci/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/babashka/sci/sci/core.clj -------------------------------------------------------------------------------- /.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/config.edn -------------------------------------------------------------------------------- /.clj-kondo/rewrite-clj/rewrite-clj/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/rewrite-clj/rewrite-clj/config.edn -------------------------------------------------------------------------------- /.clj-kondo/sicmutils/sicmutils/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/sicmutils/sicmutils/config.edn -------------------------------------------------------------------------------- /.clj-kondo/sicmutils/sicmutils/hooks/pattern/rule.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/sicmutils/sicmutils/hooks/pattern/rule.clj -------------------------------------------------------------------------------- /.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/abstract/function.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/abstract/function.clj -------------------------------------------------------------------------------- /.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/calculus/coordinate.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/calculus/coordinate.clj -------------------------------------------------------------------------------- /.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/env.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/env.clj -------------------------------------------------------------------------------- /.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/util/def.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.clj-kondo/sicmutils/sicmutils/hooks/sicmutils/util/def.clj -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/deps.edn -------------------------------------------------------------------------------- /dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/dev/user.clj -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/package.json -------------------------------------------------------------------------------- /presentations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/README.md -------------------------------------------------------------------------------- /presentations/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/gulpfile.js -------------------------------------------------------------------------------- /presentations/images/brent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/brent.jpg -------------------------------------------------------------------------------- /presentations/images/brent_parabola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/brent_parabola.png -------------------------------------------------------------------------------- /presentations/images/clojure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/clojure.svg -------------------------------------------------------------------------------- /presentations/images/fdg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/fdg.jpeg -------------------------------------------------------------------------------- /presentations/images/future_ed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/future_ed.jpeg -------------------------------------------------------------------------------- /presentations/images/gjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/gjs.jpg -------------------------------------------------------------------------------- /presentations/images/knuth_literate.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/knuth_literate.jpeg -------------------------------------------------------------------------------- /presentations/images/lisp_xkcd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/lisp_xkcd.jpeg -------------------------------------------------------------------------------- /presentations/images/mathematica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/mathematica.svg -------------------------------------------------------------------------------- /presentations/images/mm_notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/mm_notebook.jpg -------------------------------------------------------------------------------- /presentations/images/numerical_recipes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/numerical_recipes.jpg -------------------------------------------------------------------------------- /presentations/images/nurse_log.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/nurse_log.jpeg -------------------------------------------------------------------------------- /presentations/images/papert.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/papert.jpeg -------------------------------------------------------------------------------- /presentations/images/quad_island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/quad_island.png -------------------------------------------------------------------------------- /presentations/images/sdf.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/sdf.jpeg -------------------------------------------------------------------------------- /presentations/images/sicm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/sicm.jpeg -------------------------------------------------------------------------------- /presentations/images/sicmutils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/sicmutils.png -------------------------------------------------------------------------------- /presentations/images/sicmutils_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/sicmutils_ns.png -------------------------------------------------------------------------------- /presentations/images/sicp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/sicp.jpeg -------------------------------------------------------------------------------- /presentations/images/turtle_geometry.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/turtle_geometry.jpeg -------------------------------------------------------------------------------- /presentations/images/vector_analysis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/vector_analysis.jpeg -------------------------------------------------------------------------------- /presentations/images/workshop.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/images/workshop.jpeg -------------------------------------------------------------------------------- /presentations/org/building_sicmutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/org/building_sicmutils.html -------------------------------------------------------------------------------- /presentations/org/building_sicmutils.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/org/building_sicmutils.org -------------------------------------------------------------------------------- /presentations/org/lisp_as_renaissance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/org/lisp_as_renaissance.html -------------------------------------------------------------------------------- /presentations/org/lisp_as_renaissance.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/org/lisp_as_renaissance.org -------------------------------------------------------------------------------- /presentations/org/reveal_header.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/org/reveal_header.org -------------------------------------------------------------------------------- /presentations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/package.json -------------------------------------------------------------------------------- /presentations/references/robust_systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/references/robust_systems.pdf -------------------------------------------------------------------------------- /presentations/reveal.js/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/reset.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/reveal.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/reveal.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /presentations/reveal.js/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/reveal.js -------------------------------------------------------------------------------- /presentations/reveal.js/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/reveal.js.map -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/beige.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/black.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/blood.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/league.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/moon.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/night.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/serif.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/simple.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/sky.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/solarized.css -------------------------------------------------------------------------------- /presentations/reveal.js/dist/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/dist/theme/white.css -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/math/katex.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/math/math.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/math/math.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/math/plugin.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/notes/notes.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/notes/plugin.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/search/plugin.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/search/search.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/search/search.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /presentations/reveal.js/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/presentations/reveal.js/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/shadow-cljs.edn -------------------------------------------------------------------------------- /src/cube_controls.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/cube_controls.clj -------------------------------------------------------------------------------- /src/demo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/demo.clj -------------------------------------------------------------------------------- /src/demo/mathbox.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/demo/mathbox.cljs -------------------------------------------------------------------------------- /src/demo/viewers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/demo/viewers.cljs -------------------------------------------------------------------------------- /src/double_ellipsoid.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/double_ellipsoid.clj -------------------------------------------------------------------------------- /src/einstein.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/einstein.clj -------------------------------------------------------------------------------- /src/ellipsoid.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/ellipsoid.clj -------------------------------------------------------------------------------- /src/functions.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/functions.clj -------------------------------------------------------------------------------- /src/live_oscillator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/live_oscillator.clj -------------------------------------------------------------------------------- /src/oscillator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/oscillator.clj -------------------------------------------------------------------------------- /src/pendulum.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/pendulum.clj -------------------------------------------------------------------------------- /src/physics_viewers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/physics_viewers.clj -------------------------------------------------------------------------------- /src/polar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/programming-2022/HEAD/src/polar.clj --------------------------------------------------------------------------------