This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-10-05
Channels
- # announcements (9)
- # babashka (7)
- # beginners (190)
- # calva (5)
- # cider (12)
- # clara (1)
- # clj-kondo (26)
- # cljdoc (3)
- # cljsrn (5)
- # clojure (15)
- # clojure-australia (2)
- # clojure-czech (1)
- # clojure-europe (34)
- # clojure-germany (2)
- # clojure-nl (6)
- # clojure-spec (20)
- # clojure-uk (7)
- # clojurescript (6)
- # cloverage (2)
- # conjure (10)
- # core-async (18)
- # core-logic (1)
- # cursive (22)
- # data-science (1)
- # datalog (26)
- # datomic (35)
- # docker (1)
- # emacs (4)
- # etaoin (4)
- # fulcro (51)
- # jobs (2)
- # jobs-discuss (2)
- # joker (1)
- # leiningen (4)
- # mid-cities-meetup (1)
- # off-topic (22)
- # pathom (15)
- # re-frame (14)
- # reitit (5)
- # remote-jobs (1)
- # shadow-cljs (37)
- # specter (2)
- # tools-deps (43)
- # xtdb (2)
@dominicm You may be interested in https://github.com/contribsys/faktory — It’s not in the Java ecosystem, but I would choose this over Quartz or somesuch.
I have not read any of this code, but there are at least a couple of examples of people creating little interfaces in clojure. Here’s one: https://github.com/apa512/clj-faktory
I built it after failing to find anything in Clojure that worked like Sidekiq. If anyone wants to try it, it's probably better to look at the tests than the readme.
Quick question I need to perform a function on two sequences/vectors A B, for every item on A with every item on B and collect the results. I know map
will operate on nth of A and nth of B, I need A0 to B0, A0-Bn...
Is it possible to inherit deps from another alias in deps.edn?
@karol.wojcik Not in deps.edn itself, only from the command line you can merge alias deps together
There was a conversation about this recently in #tools-deps - there might be something like this one day
Actually that would be useful for convenience, but I know that allowing it would cause a mess in classpath.
As mentioned, combining deps in the command can be an effective way to define separate aliases and merge them together, eg. clojure -M:env/dev:repl/rebel
merging the dev alias to set up the dev class path and the rebel alias to run the Rebel UI.
Some more examples:
https://github.com/practicalli/clojure-deps-edn#repl-experience
@shaunxcode For now, yes, but Cognitect have talked about an upcoming tools.build
project that we might reasonably expect to address that issue somehow...
(they've said almost nothing publicly about tools.build
but given that pom.xml
generation/sync'ing is already part of the Clojure CLI to some degree, we might assume they would enhance that in future tooling)
cool I look forward to that! For the time being I will just have a skeletal project.clj I use for lein deploy etc.