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
{:deps {org.clojure/clojure {:mvn/version "1.12.0-alpha3"}} | |
:aliases {:dev {:extra-deps | |
{com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.0.4"} | |
com.clojure-goes-fast/clj-java-decompiler {:mvn/version "0.3.4"} | |
com.clojure-goes-fast/clj-memory-meter {:mvn/version "0.3.0"}} | |
:jvm-opts ["-Djdk.attach.allowAttachSelf" | |
"-XX:+UseG1GC" | |
"-XX:-OmitStackTraceInFastThrow" |
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 components.datomic.core-test | |
(:require | |
[clojure.pprint :refer [pprint]] | |
[clojure.test :refer :all] | |
[datomic.client.api :as d] | |
[datomic.client.api.impl :as di] | |
[datomic.api :as db-free]) | |
(:import (java.util UUID))) | |
(declare test-conn) |
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
Host * | |
ControlPath ~/.ssh/control/%C | |
ControlMaster auto |
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
;; Copyright (c) Alan Dipert. All rights reserved. | |
;; The use and distribution terms for this software are covered by the | |
;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) | |
;; By using this software in any fashion, you are agreeing to be bound by | |
;; the terms of this license. | |
;; You must not remove this notice, or any other, from this software. | |
(ns alandipert.kahn | |
(:require [clojure.set :refer [difference union intersection]])) |