This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-13
Channels
- # admin-announcements (6)
- # beginners (19)
- # boot (1)
- # cbus (2)
- # cider (3)
- # clara (24)
- # cljs-dev (4)
- # cljsrn (18)
- # clojure (168)
- # clojure-boston (1)
- # clojure-dev (55)
- # clojure-russia (199)
- # clojure-sg (2)
- # clojurescript (38)
- # clojurex (1)
- # core-async (15)
- # css (16)
- # cursive (62)
- # datomic (23)
- # editors-rus (17)
- # events (3)
- # funcool (1)
- # hoplon (360)
- # ldnclj (37)
- # lein-figwheel (11)
- # leiningen (1)
- # nginx (1)
- # off-topic (13)
- # om (361)
- # onyx (1)
- # re-frame (56)
- # reagent (24)
- # robots (1)
- # spacemacs (46)
- # yada (9)
yesterday
Hello.
I want to make some screencasts showing code and I want to make sure it’s readable. Can you take a quick look at this and tell me whether it works for you: https://carouselapps.wistia.com/medias/p91hhnt9xw
thomas: mind me asking screen size?
Great. Thanks.
oi gals/guys. I want to refactor a piece of code doing quite a few transformations on a collection. what i have is basically a thread last threading macro with map
s and mapcat
s
I’d like to refactor this to use transducers and thought it should be kinda simple. like use comp instead of the threading macro and don’t pass in the initial input (as map, mapcat should return a transducer when called with one param) and the call the resulting function on my input. does not work tho
@benedek: interested to know you want to refactor like this
it hardly makes the code more readable
@martintrojer: i did not say it makes sense i am just playing around with something 😉
Yeah, transducers is clever and all, I’m just left with the big question; why?
well, writing web apps. clojure threading macros is never the bottleneck
i basically have a big pipe of transformations on a relatively big/complex data structure. i am looking into ways of making it faster
maybe I find a use for transducers if I look hard enough. But then again, I have a job to do aswell.
Its a art project to confuse haskell-ers right?
I mean, that was its true purpose