This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-05-01
Channels
- # announcements (14)
- # aws (1)
- # babashka (22)
- # beginners (105)
- # biff (12)
- # calva (1)
- # cider (7)
- # cljsrn (1)
- # clojure (33)
- # clojure-europe (22)
- # clojure-germany (1)
- # clojure-uk (3)
- # clojurescript (28)
- # component (15)
- # copenhagen-clojurians (1)
- # core-typed (29)
- # cursive (8)
- # data-science (2)
- # datomic (2)
- # emacs (16)
- # gratitude (3)
- # humbleui (3)
- # introduce-yourself (4)
- # lsp (1)
- # other-languages (3)
- # rdf (3)
- # sci (6)
- # shadow-cljs (9)
- # spacemacs (12)
- # tools-build (1)
- # tools-deps (5)
- # vim (3)
- # vscode (1)
I extracted data inspector from my other more complex projects and created a simple easy-to-use standalone gui data inspection module https://github.com/Ivana-/bb-inspect


Nice! Excuse my ignorance but how does it compare to Portal and reveal?
Sorry, I didn't use Portal and can't compare. As for Reveal, I touched it long time ago and also may not be accurate for current state of it. Maybe it some users of both can compare and share their impressions? Btw Reveal is a whole cycle visual repl, and my module is only inspector, and may be called from any repl, including Reveal itself 😉
Typed Clojure 1.0.28: New fn type syntax, check unrolled fns
[t/Int :+ :-> Foo] ;; for 1 or more t/Int arguments
[t/Int :? :-> Foo] ;; for 0 or 1 t/Int arguments
(fn ([a] ...) ([a & bs] ...)) ;; check with [t/Int :* :-> Foo]
https://www.patreon.com/posts/65833609
Hey, can you provide an example using malli?
How's this? https://github.com/typedclojure/typedclojure/tree/main/example-projects/malli-type-providers
hmm, I'm looking for an example with anonymous functions (using malli)
oh! that hasn't been implemented yet. you'd need to embed malli schemas inside types. let me think it over.
Something like this:
(defn test
{:malli/schema [:=> [:cat :int] :int]}
[hello]
(let [my-fn (fn
{:malli/schema [:=> [:cat [:string]] :int]}
[hi]
(inc hi))]
(my-fn hello)))
yes, exactly. thanks! is there a malli macro that provides this kind of syntax? perhaps we can analyze that instead.
Hey, y'all! @borkdude finally prodded me enough to get my babashka-compatible port of Cognitect's aws-api into good enough shape that I'm not too terribly embarrassed to release it: https://github.com/grzm/awyeah-api Kick the tires, and let me know how it goes! Aw, yeah!
