This notebook won't build on v0.7.418
but it will on 0.6.387
. I think.
clojure -X:success
To run a successful build.
{:deps {org.scicloj/kindly-render | |
#_{:mvn/version "0.1.1-alpha"} | |
{:git/url "https://github.com/scicloj/kindly-render" | |
:sha "d77dee338c7d72d157e20b5a45a5513441f5d5e5"} | |
com.github.igrishaev/ring-jdk-adapter {:mvn/version "0.1.1"} | |
;; use newer version to avoid JDK22+ errors | |
io.github.nextjournal/markdown {:mvn/version "0.6.157"} | |
org.clojure/data.json {:mvn/version "2.5.1"}}} |
(ns geoplot | |
(:require [nextjournal.clerk :as clerk] | |
[nextjournal.clerk.viewer :as viewer] | |
[clojure.data.json :as json] | |
[clojure.java.io :as io] | |
[applied-science.js-interop :as js])) | |
;; # replicating the Observable Plot [earthquake map example](https://observablehq.com/@observablehq/plot-earthquake-globe?intent=fork) in Clerk using `sci` | |
(def earthquake-data |
{:deps {scicloj/scicloj.ml {:mvn/version "0.2.0"}}} |
while getopts "d:f:" opt; do | |
case $opt in | |
d) dir=$OPTARG ;; | |
f) format=$OPTARG ;; | |
*) echo 'error' >&2 | |
exit 1 | |
esac | |
done |
import codeanticode.syphon.*; | |
import ddf.minim.analysis.*; | |
import ddf.minim.*; | |
Minim minim; | |
AudioInput in; | |
SyphonServer server; |