This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-01
Channels
- # aleph (1)
- # bangalore-clj (5)
- # beginners (24)
- # boot (113)
- # cider (42)
- # cljs-dev (2)
- # cljsjs (2)
- # cljsrn (3)
- # clojure (37)
- # clojure-austin (4)
- # clojure-brasil (3)
- # clojure-france (55)
- # clojure-greece (15)
- # clojure-ireland (4)
- # clojure-italy (13)
- # clojure-russia (37)
- # clojure-spec (50)
- # clojure-uk (31)
- # clojurescript (49)
- # component (12)
- # consulting (1)
- # cursive (6)
- # datascript (9)
- # datomic (27)
- # editors (2)
- # garden (1)
- # hoplon (18)
- # jobs (1)
- # klipse (25)
- # lein-figwheel (1)
- # leiningen (1)
- # luminus (2)
- # om (53)
- # om-next (8)
- # onyx (5)
- # parinfer (4)
- # perun (4)
- # re-frame (13)
- # remote-jobs (1)
- # ring (1)
- # ring-swagger (3)
- # rum (52)
- # spacemacs (36)
- # specter (13)
- # sql (3)
- # untangled (49)
- # vim (11)
- # yada (9)
foldable has slightly different semantics. Reducible == anything you can call reduce
to shred through.
foldable is something that can be logically divided into chunks, each chunk reduced, and each reduction combined with a function
I think I understand. I am currently working on translating the official reference and I was confused because they seemed to be interchangeable at first glance.
If I understand correctly, fordable are the ones that can be reduced in parallel more efficiently?
i've started working on a guide to reducibles for the http://clojure.org site
is there a good way to find all the symbols in my project with a given meta tag, or is that a bad idea?
is there a good networked core.async library? found this one but it’s 3 years old https://github.com/tonsky/net.async
@wei this is me shooting from the hip, but aleph/manifold
I’m looking for someone experienced with deploying Clojure apps (this app is ring+compojure+reagent) who can help us figure out why our jetty deploy has broken and help us setup a reliable deployment system (we’ve also been looking at wildfly). Can anyone recommend someone?
Hi all, I’ve got a function with an optional argument and some constraints that only come in to play when the extra argument is present or has a particular value. I’m trying to spec its arguments...
Once run I don’t care if the search is a :pos-search
:nv-search
or :`simple-search`. Is there a simpler way to write the following:
(s/def ::query
(s/cat :search-type
(s/alt :pos-search
(s/cat :search-type (set (keys pos-searchs))
:part-of-speech #{:noun :verb :adverb :adjective})
:nv-search
(s/cat :search-type (set (keys nv-searchs))
:part-of-speech #{:noun :verb})
:simple-search
(s/cat :search-type (set (keys simple-searchs))))
:search-string string?))
all I really want back once the query’s been parsed is a map with :search-type, :part-of-speech if present and search-string in it.
Am I asking in the wrong place? Wasn’t expecting it to be so difficult to find someone who can help us...
I don’t expect this is a huge gig, but I am looking to hire someone with some experience to solve the problem for us
@sandbags try asking in #jobs or #consulting
@bostonaholic thanks .. #consulting looks right, hadn’t noticed that one!