This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exception in thread "main" Syntax error compiling at (clojure/data/xml/impl.clj:1:1). | |
at clojure.lang.Compiler.load(Compiler.java:7648) | |
at clojure.lang.RT.loadResourceScript(RT.java:381) | |
at clojure.lang.RT.loadResourceScript(RT.java:372) | |
at clojure.lang.RT.load(RT.java:459) | |
at clojure.lang.RT.load(RT.java:424) | |
at clojure.core$load$fn__6839.invoke(core.clj:6126) | |
at clojure.core$load.invokeStatic(core.clj:6125) | |
at clojure.core$load.doInvoke(core.clj:6109) | |
at clojure.lang.RestFn.invoke(RestFn.java:408) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns my-backend.core | |
(:gen-class) | |
(:require [compojure.core :as c] | |
[compojure.route :as route] | |
[ring.adapter.jetty :as jetty] | |
[ring.middleware.defaults :as ring-defaults] | |
[hiccup2.core :as h] | |
#_[muuntaja.core :as m] | |
[muuntaja.middleware :as muuntaja])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'arc-mode) | |
(setq cider-nrepl-jar-url "https://repo.clojars.org/cider/cider-nrepl/0.26.0/cider-nrepl-0.26.0.jar") | |
(setq cider-cache-dir (expand-file-name "cider-cache" user-emacs-directory)) | |
(setq cider-jar-temp-dir | |
(make-temp-name | |
(expand-file-name "cider-jar" | |
temporary-file-directory))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 2021-08-04 17:31 data/minecraft/ | |
0 2021-08-04 17:31 data/minecraft/structures/ | |
0 2021-08-04 17:31 data/minecraft/structures/nether_fossils/ | |
237 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_10.nbt | |
629 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_6.nbt | |
673 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_11.nbt | |
939 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_14.nbt | |
258 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_2.nbt | |
206 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_5.nbt | |
248 2021-08-04 17:31 data/minecraft/structures/nether_fossils/fossil_3.nbt |

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns repl-sessions.demo-2021-07 | |
(:require [lambdaisland.witchcraft :as wc] | |
[lambdaisland.witchcraft.cursor :as c] | |
[lambdaisland.witchcraft.events :as e] | |
[lambdaisland.witchcraft.worlds :as worlds])) | |
;; First start the server, if you want a clean slate you can create | |
;; a "superflat" world, otherwise you'll get a more typically generated world. | |
(wc/start! {;;:server-port 4567 | |
;;:config-dir "/tmp/config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] Scanning for projects... | |
[INFO] | |
[INFO] Using the MultiThreadedBuilder implementation with a thread count of 16 | |
[INFO] | |
[INFO] ----------------------< net.glowstone:glowstone >----------------------- | |
[INFO] Building Glowstone 2021.7.0-SNAPSHOT | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- scriptus:0.3.2:describe (default) @ glowstone --- | |
[INFO] Set property "describe" to "2fb6d6b" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns orc-battle.player | |
(:require [orc-battle.monster :as m])) | |
(defn init [] {:health 30 | |
:agility 30 | |
:strength 30}) | |
(defn dead? [{health :health :or {health 0}}] | |
(<= health 0)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns repl-sessions.vaccines | |
(:require [clojure.data.csv :as csv] | |
[clojure.java.io :as io] | |
[time-literals.data-readers] | |
[time-literals.read-write] | |
[applied-science.waqi :as waqi])) | |
(time-literals.read-write/print-time-literals-clj!) | |
(extend-protocol csv/Read-CSV-From |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{:title ":clojureD 2020", | |
:id "PLaSn8eiZ631lrDFmUTBH9LFGzAxc3tvU4", | |
:items | |
({:title | |
"clojureD 2020: Lightning Talks by Mikkel Gravgaard, Daniel Slutsky, Daniel Janus and Arne Brasseur", | |
:id "fVtawjGbvOQ", | |
:duration "1363"} | |
{:title | |
"clojureD 2020: \"From Lazy Lisper to Confident Clojurist\" by Alexander Oloo", | |
:id "j57UbYFbI-U", |