This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-01-24
Channels
- # adventofcode (1)
- # announcements (22)
- # babashka (30)
- # beginners (69)
- # calva (53)
- # cider (17)
- # cljfx (1)
- # clojure (2)
- # clojure-australia (1)
- # clojure-europe (1)
- # clojurescript (36)
- # code-reviews (10)
- # conjure (3)
- # cursive (2)
- # datomic (4)
- # fulcro (13)
- # graalvm (261)
- # luminus (2)
- # malli (1)
- # nrepl (13)
- # off-topic (19)
- # rdf (3)
- # reveal (1)
- # ring (3)
- # sci (66)
- # shadow-cljs (14)
- # spacemacs (1)
- # specmonstah (1)
- # test-check (1)
- # vim (2)
- # xtdb (14)
There's a minor bug on the datomic tutorial https://docs.datomic.com/on-prem/tutorial.html The code `(def types [:shirt :pants :dress :hat]) (def colors [:red :green :blue :yellow]) (d/transact conn {:tx-data (make-idents sizes)}) (d/transact conn {:tx-data (make-idents types)}) ⇧` should be `(def types [:shirt :pants :dress :hat]) (def colors [:red :green :blue :yellow]) (d/transact conn {:tx-data (make-idents types)}) (d/transact conn {:tx-data (make-idents colors)}) ⇧` where do I report that? Also, the plural of schema is schemas or schemata, but not schema: "In Datomic, schema are entities ..."
Hi Joe, here's one more: "So far we have created an accumulated data. " The singular of data is datum. But that sentence isn't clear to me.
Maybe "So far all we have don is accumulating data."