This file contains 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
{:paths ["."] | |
:deps {io.github.nextjournal/clerk {:mvn/version "0.14.919"}}} |
This file contains 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
{:paths ["."] | |
:deps {org.clojure/tools.analyzer {:mvn/version "1.1.0"} | |
org.clojure/tools.analyzer.jvm {:mvn/version "1.1.0"}}} |
This file contains 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
{:paths ["."] | |
:deps {org.graalvm.js/js {:mvn/version "21.3.2.1"}}} |
This file contains 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
{:paths ["."] | |
:deps {org.graalvm.js/js {:mvn/version "21.3.2.1"}}} |
This file contains 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
{:paths ["."]} |
This file contains 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
;; here were the deps I needed for this... I don't know enough vega-lite to go without the Hanami example I had | |
;; already built, so excuse me there! | |
{:paths ["dev"] | |
:deps {io.github.nextjournal/clerk {:local/root "../clerk"} | |
notespace-sicmutils {:mvn/version "0.16.2"} | |
aerial.hanami/aerial.hanami {:mvn/version "0.12.7"} | |
sicmutils/sicmutils {:git/url "https://github.com/sicmutils/sicmutils" | |
:sha "8658c0c8883b8225a742b9422061f40b852f375d"}}} |
This file contains 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
;; my customizations on Jack Rusher's excellect emacs config | |
;; see https://github.com/jackrusher/dotemacs | |
;; This lives in ~/.emacs/lisp/ | |
;; set initial window size to left half of screen | |
(custom-set-variables | |
'(default-frame-alist | |
(quote | |
((width . 158) |
This file contains 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
/var/folders/n6/j_fp4hxn1lb039365v69hbmr0000gn/T//ccad8ZY0.s:255:9: error: register %xmm16 is only available with AVX512 | |
vxorps %xmm16, %xmm16, %xmm16 | |
^~~~~~ | |
/var/folders/n6/j_fp4hxn1lb039365v69hbmr0000gn/T//ccUomD5h.s:338:19: error: register %xmm31 is only available with AVX512 | |
vmovss 32(%rsp), %x/var/folders/n6/j_fp4hxn1lb039365v69hbmr0000gn/T//ccad8ZY0.sm:m2563:110 | |
: error: register %xmm16 is only available with AVX512 | |
v c o m i s s % x m^m~1~6~,~ ~% | |
xmm0 | |
^~~~~~ | |
/var/folders/n6/j_fp4hxn1lb039365v69hbmr0000gn/T//ccUomD5h.s:339:16: error: register %xmm31 is only available with AVX512 |
This file contains 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 com.nextjournal.build-tools.figwheel.dependency | |
(:require [clojure.tools.namespace.track :as ctn.track] | |
[clojure.tools.namespace.dir :as ctn.dir] | |
[clojure.tools.namespace.file :as ctn.file] | |
[clojure.tools.namespace.dependency :as ctn.dep] | |
[clojure.tools.namespace.parse :as ctn.parse] | |
[clojure.tools.namespace.find :as ctn.find] | |
[clojure.java.io :as io] | |
[clojure.tools.reader :as reader]) | |
(:import java.io.PushbackReader)) |
This file contains 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
#!/bin/bash | |
set -eu pipefail | |
echo "Classpath tree built with lein:" | |
lein deps :tree | |
echo "\nClasspath tree built with tools.deps (notice com.github.jnr/jffi :classifier \"native\" missing):" | |
clj -Stree | |
echo "\nrunning socket_sample.clj with lein" |
NewerOlder