This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-09
Channels
- # announcements (14)
- # architecture (42)
- # babashka (23)
- # beginners (37)
- # biff (8)
- # calva (2)
- # cider (3)
- # clara (42)
- # clerk (14)
- # clojure (55)
- # clojure-brasil (3)
- # clojure-dev (5)
- # clojure-europe (18)
- # clojure-hungary (88)
- # clojure-losangeles (3)
- # clojure-nl (1)
- # clojure-norway (66)
- # clojure-uk (9)
- # clojurescript (16)
- # core-logic (16)
- # datomic (6)
- # fulcro (32)
- # hyperfiddle (25)
- # instaparse (12)
- # joyride (2)
- # lsp (13)
- # malli (15)
- # off-topic (50)
- # polylith (11)
- # portal (3)
- # re-frame (2)
- # reitit (2)
- # sci (8)
- # shadow-cljs (16)
- # tools-deps (13)
- # xtdb (5)
https://github.com/wkok/openai-clojure v0.12.2 released ā¢ (Beta) Added support for Assistants, Threads, Messages & Runs (thanks @sb)
OpenAI DevDay SF https://openai.com/blog/new-models-and-developer-products-announced-at-devday
Very early builds of jresolve
are now available.
ā¢ https://github.com/bowbahdoe/jresolve-cli
ā¢ https://github.com/bowbahdoe/jresolve-cli/actions/runs/6812941050
This is a dependency resolver just like exists in the clojure cli tools, but with a more generic JVM focus,
> java --class-path $(jresolve pkg:maven/org.clojure/[email protected]) clojure.main
Clojure 1.11.1
user=> (+ 1 2)
3
Tons of rough edges, but I would appreciate any feedback.interesting, wdym with a more generic JVM focus?
Well if you run clj -Spath
you by default get clojure on there, along with src
. It also checks for configuration in global .edn
files. You wouldn't want to use that for say, a pure Java project
There is also, obviously, a "supply chain" dependence on clojure. Thats a non-issue for this part of the world, but if you are like me and think something like this should come with the JDK its an issue
I have a toy example project here showing how to use it with the standard jvm tools like javac
and java
https://github.com/bowbahdoe/jresolve-example-simple/blob/main/Justfile
(not to mention that the clojure cli really just fills in the "class path" - totally fine for this part of the worlds, but in the java world you want to fill in the module path in addition or instead of the classpath)
got it, thanks!
@U3JH98J4R This is very cool! Thanks for the project. I filed an issue w.r.t. binary download for Ubuntu 20.04.
@U066J7E2U Thanks for taking a look! I think that probably is related to adding the --static
flag at compilation. I don't have an ubuntu machine handy, so i'll probably ping you to try it out afterwards
@U066J7E2U Can you try this? https://github.com/bowbahdoe/jresolve-cli/actions/runs/6827995082
@U3JH98J4R This ^ new binary works for me.