Skip to content

Instantly share code, notes, and snippets.

View evilsneer's full-sized avatar
🥭

evilsneer

🥭
View GitHub Profile
@evilsneer
evilsneer / persistents.clj
Created May 14, 2019 10:32
persistents for Clojure
(ns module.persistents
(:require [clojure.java.io :as io]))
(defn >disk [location data]
(spit location (pr-str data)))
(defn <disk [location]
(if (.exists (io/file location))
(read-string (slurp cache-file))))
(defn exit-function
[]
(println "\n\nShutting down leveldb-store\n\n")
(release leveldb-store))
(defn shutdown-hook
[fn]
(let [shutdown-thread (new Thread fn)]
(.. Runtime (getRuntime) (addShutdownHook shutdown-thread))))

edit deploy repositories in defproject

  :plugins [[org.apache.maven.wagon/wagon-ssh-external "2.6"]]
  :deploy-repositories ^:replace [["releases" "scp://[email protected]/root/rel/"]
                                  ["snapshots" "scp://[email protected]/root/snap/"]]

and above defproject