This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-03-31
Channels
- # announcements (4)
- # aws (1)
- # babashka (52)
- # beginners (178)
- # boot (4)
- # cider (2)
- # clj-kondo (10)
- # cljs-dev (39)
- # clojure (744)
- # clojure-europe (12)
- # clojure-germany (6)
- # clojure-india (56)
- # clojure-italy (5)
- # clojure-nl (60)
- # clojure-spec (9)
- # clojure-sweden (14)
- # clojure-uk (36)
- # clojuredesign-podcast (6)
- # clojurescript (11)
- # community-development (5)
- # core-async (4)
- # data-science (6)
- # datomic (6)
- # emacs (7)
- # events (4)
- # exercism (33)
- # fulcro (11)
- # funimage (2)
- # graalvm (29)
- # java (1)
- # joker (3)
- # lambdaisland (15)
- # malli (2)
- # meander (55)
- # mid-cities-meetup (1)
- # nrepl (8)
- # observability (4)
- # off-topic (2)
- # pathom (5)
- # re-frame (31)
- # shadow-cljs (73)
- # spacemacs (18)
- # sql (27)
- # test-check (14)
- # testing (1)
- # tools-deps (5)
- # xtdb (13)
I have an project that round trips each line of a CSV to an external service via an http request and writes the responses as a new CSV. Currently is operates purely off of lazy sequences. Do folks think re-implement this tiny project using channels would be a good way to learn core.async
? If so, does anyone have a recommended resource that helped them grok core.async
migration?
“Do folks think re-implement this tiny project using channels would be a good way to learn core.async
?”
yes
“does anyone have a recommended resource that helped them grok core.async
migration?”
https://github.com/clojure/core.async/blob/master/examples/walkthrough.clj
for your task pipeline
is a good candidate https://clojuredocs.org/clojure.core.async/pipeline
Thank you @U0HJNJWJH and @U68FTQKUJ!
“Do folks think re-implement this tiny project using channels would be a good way to learn core.async
?”
yes
“does anyone have a recommended resource that helped them grok core.async
migration?”
https://github.com/clojure/core.async/blob/master/examples/walkthrough.clj
for your task pipeline
is a good candidate https://clojuredocs.org/clojure.core.async/pipeline