r/Clojure • u/encom-direct • 7h ago
Which web framework do you use at your company and why?
Wondering what is the most used web framework for professional clojure developers.
r/Clojure • u/encom-direct • 7h ago
Wondering what is the most used web framework for professional clojure developers.
r/Clojure • u/philip_schwarz • 16h ago
r/Clojure • u/philip_schwarz • 16h ago
r/Clojure • u/ComfortableShape9340 • 2d ago
We created jlt-commons, the shared community home for libraries and tooling around Jolt, and just put together awesome-jolt to catalog what's there.
Jolt is a Clojure implementation that compiles to native binaries through Chez Scheme, so there's no JVM in the loop. It can also target the browser through Gambit's JavaScript backend. jolt-lang keeps the language and the essential libraries, and jlt-commons is where everything growing around them lives, either adopted from a maintainer who could no longer keep up with a project, or incubated as new work.
The list covers:
If you've wanted Clojure with a fast native startup or a small self-contained binary instead of a JVM, it's worth a look. There's also a #jolt channel on the Clojurians Slack if you want to talk to the people building it. Corrections and additions to the list are welcome, and happy to answer questions here.
r/Clojure • u/sperbsen • 4d ago
We'd love to see more Clojure submissions at BOB!
bobkonf.de/2027/cfc.html
r/Clojure • u/alexdmiller • 5d ago
Clojure 1.12.6 is now available
r/Clojure • u/fiv0fiv0 • 5d ago
I have been working on a distributed Datalog engine à la Datomic on top of object storage. The system is called Triplox. I am using SlateDB at the storage layer. The main ideas are roughly the following (in no particular order):
I also wrote a intro post a while back. If you have questions, suggestions or feedback in any form please ask away. If you have an incremental Datalog problem or are working on sync engines, Triplox might be of interest .
Repo: https://github.com/fiV0/triplox
Website: https://triplox.xyz/
Incremental query tutorial: https://github.com/FiV0/triplox-incremental-tutorial
r/Clojure • u/Nozistance_ • 7d ago
Minecraft is well known for being single-threaded, and parallelizing it is a difficult problem: everybody wants to write to the same shared state at the same time. Projects take years to deal with locks, thread ownership, splitting regions, and game logic is subject to threading rules: mechanics break against them, features crawl. Some remain quite sparse and have little to parallelize.
I wanted to see how it would feel in Clojure, but there was no Clojure server to look at, so I made one. The ideas parallel servers reinvent by hand - immutable snapshot, pure read phase, changes as data - are the language's defaults. If writing from many threads is difficult, then don't write: all game logic is pure functions (fn [world events]) that read the snapshot in parallel and return changes as deltas, merged in one place. The merge preserves order, so the parallel run is bit identical to the sequential one, and no mechanic cares how many cores it runs on.
The outcome: a server with mob AI, explosions, combat and item physics that matches vanilla 1.8.9 performance on one core and runs 4.5x faster on six. ~5500 lines of Clojure. It's a proof of concept; if you're curious, the code is on GitHub
r/Clojure • u/AutoModerator • 7d ago
Please include any restrictions (remote/on-site, geographical, workpermit, citizenship) that may apply.
r/Clojure • u/Borkdude • 7d ago
Today babashka 1.13.220 is released, with a new babashka.ffi namespace for calling C libraries directly from Babashka scripts.
The babashka.ffi library is also available as a standalone library for JVM Clojure, so you can use it in your Clojure projects as well. Note that the API is still experimental, although no changes are currently planned. It just needs more exposure and your feedback :). Read the blog post for details.
r/Clojure • u/yogthos • 9d ago
r/Clojure • u/_d_t_w • 13d ago
Slipway provides support for Eclipse Jetty in Clojure.
This release is a significant upgrade to previous versions of Slipway, including:
r/Clojure • u/MagnusSedlacek • 19d ago
Fold your state into the DOM!
A minimal zero-deps Reagent-like in Squint and CLJS.
r/Clojure • u/jacobobryant • 19d ago
r/Clojure • u/yogthos • 21d ago
r/Clojure • u/pavelklavik • 21d ago
API allows the full read and edit access to your data in OrgPad. The work was massive since OrgPad allows a lot of types of content and I wanted the API to be as simple to use as possible. Since OrgPad is written in Clojure, it allows aside JSON also EDN and Transit inputs/outputs.
r/Clojure • u/dharmatech • 24d ago
r/Clojure • u/Krever • 27d ago
I will be writing primarily Clojure soon, after more than a decade of writing Scala. Do you have any hints or advice beyond what I can find in books or other learning resources?
Like competing approaches, nuances, political landscape, informal standards, footguns or anything like that?
r/Clojure • u/jacobobryant • 27d ago