Skip to content

Instantly share code, notes, and snippets.

@julienba
Last active August 21, 2019 14:38
Show Gist options
  • Save julienba/5d52a38a06dd5699810e3fdfaecc4503 to your computer and use it in GitHub Desktop.
Save julienba/5d52a38a06dd5699810e3fdfaecc4503 to your computer and use it in GitHub Desktop.
;; For inspecting datastructure:
;; https://clojure.github.io/clojure/clojure.inspector-api.html#clojure.inspector/inspect-tree
(defn repl-settings!
[]
;; Watch out -- this affects `pr-str`
(do (alter-var-root #'*print-length* (constantly 20))
(alter-var-root #'*print-level* (constantly 6))))
;; A library that can be used to render typical Clojure data structures using Graphviz.
;; https://github.com/walmartlabs/datascope
;; A Clojure tool for displaying arbitrary, nested data structures as a read-only, form-based UI. DSUI stands for "Data Structure User Interface".
;; https://github.com/Azel4231/dsui
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment