This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-09
Channels
- # aleph (1)
- # announcements (7)
- # asami (1)
- # beginners (44)
- # calva (54)
- # cherry (24)
- # cider (6)
- # clj-kondo (19)
- # cljsrn (27)
- # clojure (119)
- # clojure-europe (61)
- # clojure-gamedev (38)
- # clojure-germany (7)
- # clojure-nl (1)
- # clojure-norway (104)
- # clojure-portugal (4)
- # clojure-spec (4)
- # clojure-uk (1)
- # clojurescript (38)
- # cursive (18)
- # datomic (11)
- # emacs (9)
- # events (1)
- # fulcro (4)
- # holy-lambda (7)
- # introduce-yourself (7)
- # jobs (1)
- # malli (6)
- # off-topic (4)
- # pathom (4)
- # pedestal (16)
- # podcasts-discuss (1)
- # polylith (27)
- # portal (17)
- # releases (2)
- # shadow-cljs (46)
- # squint (1)
- # xtdb (9)
hm, how do you multiple select to use the diff mode again? I'm not able to by pressing shift, cmd or ctrl...
Sorry, this got broken recently but should be https://github.com/djblue/portal/commit/fe115413d176eafa9ce6535be5dc4a7fed065a46 in the next release 😞
FYI @U0510902N this should be fixed in 0.34.1
Dunno how apt this is, but sending mulog events to Portal (via tap>
) has a game changer for me:
(deftype TapPublisher [buffer transform]
com.brunobonacci.mulog.publisher.PPublisher
(agent-buffer [_]
buffer)
(publish-delay [_]
200)
(publish [_ buffer]
(doseq [item (transform (map second (rb/items buffer)))]
(tap> item))
(rb/clear buffer)))
(defn tap-publisher
[{:keys [transform] :as _config}]
(TapPublisher. (rb/agent-buffer 10000) (or transform identity)))
(Based on https://github.com/BrunoBonacci/mulog/blob/master/mulog-core/src/com/brunobonacci/mulog/publisher.clj#L42)💯 3
🎉 1
Then you can add it under https://github.com/djblue/portal/blob/master/doc/cljdoc.edn#L18
👍 1