Fork me on GitHub
#pathom
<
2022-03-28
>
geraldodev23:03:00

pprinting env with its forest of juicy clojure data structures challenge my untrained eyes, with sets and maps together 🙂

wilkerlucio01:03:11

I suggest using #portal or #reveal to assist in navigating large data structures like these :)

Hukka06:03:44

Indeed, I always run

clj -A:dev -Sdeps '{:deps {nrepl/nrepl {:mvn/version "0.7.0"} cider/cider-nrepl {:mvn/version "0.25.2"} djblue/portal {:mvn/version "0.20.1"}}}' \
           -m nrepl.cmdline \
           --middleware '["cider.nrepl/cider-middleware"]' \
           --interactive
so that I can start tapping into portal when needed without restarting the repl and losing state, even if I don't need it more than couple times in a month. With this spell in the shell history I can have the tools ready in every project

geraldodev10:03:11

Thnx for the suggestion I'll try #portal