Skip to content

Instantly share code, notes, and snippets.

@nfedyashev
Created April 10, 2020 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfedyashev/ea898495c2e779db0581391e316661a6 to your computer and use it in GitHub Desktop.
Save nfedyashev/ea898495c2e779db0581391e316661a6 to your computer and use it in GitHub Desktop.
show images in cider repl - taken from https://www.youtube.com/watch?v=1YQCLGfrev0
(defn image [path]
(let [stream (:body (client/get (str image-base-url path) {:as :stream}))]
(io/copy stream (io/file "temp.jpg"))
(URI. (str "file://" (System/getProperty "user.dir") "/temp.jpg"))))
;;cider-repl-toggle-content-types
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment