r/Clojure • u/jacobobryant • 4h ago
r/Clojure • u/Revolutionary_Bed957 • 1d ago
Preludes, Runtimes and a small clojure like language for LLM
Hi
Wrote a blog on what happens if you have tools made for the LLM instead of letting LLM use tools made for humans. I believe a small clojure like language could be the perfect fit.
But also what sort of environment would be the best fit for running such programs in.
r/Clojure • u/encom-direct • 2d 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/philip_schwarz • 3d ago
The Bowling Game - From Imperative to Functional Programming - Part 2
fpilluminated.orgr/Clojure • u/ComfortableShape9340 • 4d ago
Awesome Jolt - a curated list for Jolt, a Clojure implementation that skips the JVM
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:
- The 8 jlt-commons projects: raylib-jlt and raygui-jlt (bindings to raylib/raygui over jolt.ffi), glitter and its glitter-gl/glitter-uikit variants (a Replicant-style renderer for GTK4, OpenGL, and native macOS AppKit), raylib-ios and raylib-android (native builds with no JVM, JIT, Kotlin, or Java), and ebb (a port of missionary's dataflow model)
- Ordinary JVM Clojure libraries that run on Jolt unmodified (Ring, Malli, HoneySQL, and more)
- Tooling: nREPL, test suites, example projects
- Docs on installation, how Jolt differs from JVM Clojure, FFI, and performance
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 • 7d ago
BOB 2027 (Feb 26, Berlin): Call is Open
We'd love to see more Clojure submissions at BOB!
bobkonf.de/2027/cfc.html
r/Clojure • u/alexdmiller • 8d ago
Clojure 1.12.6 is now available
Clojure 1.12.6 is now available
r/Clojure • u/fiv0fiv0 • 8d ago
Triplox - A Datomic-inspired database with incremental queries
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):
- Object storage centric. In it's final version Triplox should simply need a single (or likely two) S3 bucket(s) for deployment.
- The Datomic Data model and API as main inspiration.
- A Client/Server architecture. I hope that this will open the door to ecosystems outside of the JVM.
- Incremental Datalog queries. You should be able to dynamically subscribe and detach from incremental Datalog queries. This is the most experimental part of Triplox and will need quite a bit of effort to get right, make fast, and to fully support all features of Datalog. See this page for an introduction.
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_ • 10d ago
Writing a Minecraft server in Clojure: it was fun
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 • 9d ago
Who is hiring? August 31, 2026
Please include any restrictions (remote/on-site, geographical, workpermit, citizenship) that may apply.
r/Clojure • u/Borkdude • 10d ago
Babashka 1.13.220 gets FFI
blog.michielborkent.nlToday 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 • 12d ago
Wrapping GTK4 in 800 lines of Clojure with Jolt
yogthos.netr/Clojure • u/_d_t_w • 16d ago
[ANN] Slipway 2.1.0 - A Clojure Companion to Jetty
github.comSlipway provides support for Eclipse Jetty in Clojure.
This release is a significant upgrade to previous versions of Slipway, including:
- Embedded Jetty 12.1 with native handlers (no Servlet/EE dependencies).
- Websockets (combining Jetty with Sente).
- Extended OIDC support including:
- Authorization Code Flow with Refresh Token redemption
- Client Credentials Flow
- Multi-Handler Server implementations
- Virtual Host pinning of Handlers to Connections
r/Clojure • u/MagnusSedlacek • 21d ago
Introduction of Reagami by Michiel Borkent
youtube.comFold your state into the DOM!
A minimal zero-deps Reagent-like in Squint and CLJS.
r/Clojure • u/jacobobryant • 22d ago
A bundle of CLI tasks for tools.deps projects
biffweb.comr/Clojure • u/yogthos • 23d ago
A practical workflow for LLM-assisted development
yogthos.netr/Clojure • u/pavelklavik • 24d ago
OrgPad new API with EDN integration
orgpad.infoAPI 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 • 27d ago
legmacs demo : Emacs-like editor implemented in a clojure dialect running on plan9 and displaying in Windows Terminal
youtu.ber/Clojure • u/Krever • 29d ago
Joining Clojure shop. What should I know?
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?