This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-05-13
Channels
- # announcements (34)
- # aws (1)
- # beginners (99)
- # boot (19)
- # calva (26)
- # cider (24)
- # cljdoc (8)
- # cljs-dev (29)
- # clojure (107)
- # clojure-dev (3)
- # clojure-europe (12)
- # clojure-finland (1)
- # clojure-italy (24)
- # clojure-nl (5)
- # clojure-spec (13)
- # clojure-sweden (3)
- # clojure-uk (36)
- # clojurescript (4)
- # community-development (14)
- # cursive (3)
- # data-science (6)
- # datascript (57)
- # figwheel-main (3)
- # fulcro (9)
- # graalvm (11)
- # hoplon (18)
- # jobs (1)
- # jobs-discuss (2)
- # joker (10)
- # leiningen (13)
- # off-topic (23)
- # other-languages (1)
- # pathom (24)
- # pedestal (5)
- # re-frame (6)
- # reagent (45)
- # reitit (3)
- # rewrite-clj (1)
- # spacemacs (2)
- # sql (23)
- # tools-deps (6)
- # vim (5)
morning
mƄning
Morning
what do you data-sciency types think about Weapons of Math Destruction: How Big Data Increases Inequality and Threatens Democracy
work reading?
Thanks for the heads up, I bought the book last night (kindle for 1.99)
is going cheap on Amazon at the moment
Itās a good book. āThe Age of Surveillance Capitalismā is worth a look too. Going to pick up āInvisible Women: Exposing Data Bias in a World Designed for Menā next month.
Yes, it's good. I used to listen to Cathy O'Neil quite a lot on the Slate Money podcast, and I got to meet her at a conference once
BTW if anyone is 'oop North' (but not too far north, i.e. you're in Manchester) next Monday, @alex.lynham is running a Clojurescript workshop https://www.eventbrite.com/e/lambdalounge-may-2019-serverless-clojurescript-on-aws-tickets-61699405583
I've ended up yak shaving a fair bit around shadow and what's interesting is that in the last 9 mths we've got from basically only one easy way to do this to like, lots. Which is nice, but doesn't help me suggest the best option of th bunch
Nice to have options though!
What do people do here, to "inject" the doc into each namespace whilst in the repl? As a newbie to clojure, i often want to do a (doc) on a function, but if I switch namespace that doc isn't available, I have to (use 'clojure.repl)
to bring it in.
depending on the type of REPL you use of course. but instead of (doc some-fn)
I usually just jump to definition. that gives me the documentation and also a peek into the source. an ultimate resource to learn from library devs and the core team. very valuable insight if I need it apart from the doc
This may be wildly off topic, but I thought I would ask anyway... Does anyone in here have any experience with Unidata LDM -> https://www.unidata.ucar.edu/software/ldm/ ???
well, you need some kind of tooling for this to work. either cider, or something similar in vim. snoeās clojure-lsp server can do this out of the box for vim i think
Rebel has a key binding for docs I think, but I don't think there's a trick to it that isn't gross
Or (clojure.repl/doc something)
, that's all the tooling will do. You could maybe somehow alias clojure.core/doc
to clojure.repl/doc
but that's probably not a good idea š
(sorry, should've replied with a thread or something @dharrigan)