This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-07-01
Channels
- # beginners (10)
- # cljs-dev (33)
- # cljsjs (4)
- # cljsrn (12)
- # clojure (39)
- # clojure-belgium (2)
- # clojure-russia (80)
- # clojure-spec (9)
- # clojure-uk (6)
- # clojurescript (22)
- # core-async (141)
- # cursive (2)
- # datomic (20)
- # devops (1)
- # emacs (20)
- # hoplon (1)
- # jobs (3)
- # lambdaisland (12)
- # leiningen (3)
- # lumo (44)
- # onyx (2)
- # pedestal (1)
- # quil (1)
- # re-frame (9)
- # reagent (4)
- # robots (1)
- # rum (3)
- # spacemacs (5)
- # uncomplicate (80)
- # untangled (46)
- # yada (2)
Is there some Clojure package which can help me to generate MindMap image from OPML data?
Saw this from Stuart Halloway’s Clojure in 10 Big Ideas talk To prevent, printing the whole too big collections on the repl or freeze because you evaluated infinite collection, set printing limit to REPL with
(set! *print-length* 5)
I hope I knew this years beforeHi, Can someone help me figure out how to spec a function with rest arguments?
(s/fdef some-function
:args (s/cat :arg1 int? :rest ??? )
:ret int?
use case being my program should not terminate (nor block!) until the future has completed
deref
wait, not block?
what about a deref at the end of -main ?