By the way, Clojurists Together (which Jepsen helps fund!) offers grants to support the development of open-source #Clojure projects. You can apply here: https://www.clojuriststogether.org/open-source/
screen shot of the language break-down for a github project - Clojure - 94.4% - Dockerfile - 3.0% - Makefile 2.6%
This is the ideal language breakdown.
You may not like it, but this is what peak performance looks like (my very happy last ~1.5 weeks) #clojure
I guess today we are brave. 😉
#clojure #buildinpublic #indiehacker
This week's @cassidoo.co challenge: min swaps to create alternating array. Using #clojure and it proved quite suited to this class of problem
codingkata.tardate.com/clojure/min-...
Clojure Introduction: Learn Functional Programming Start with functional programming What you will learn Learn a Functional Programming Language (Clojure) Functional programming with Clojure Thinki...
#StudyBullet-20 #Clojure #Free #Courses #StudyBullet
Origin | Interest | Match
Thanks to our sponsors #babashka_conf is now fully funded (the venue + catering)!
Thanks to Nubank, Exoscale, Bob, Flexiana and Itonomi for chipping in and providing a free Clojure conference!
babashka.org/conf/#sponsors
#babashka #clojure
#clojure, of course
If you are on Threads, you can follow us there as well to make sure you don't miss the latest #clojure #jobs
ClojureScript gets async/await
github.com/clojure/cloj...
#clojure #clojurescript
Working on a MCP Server for my personal snippets project. Pretty cool Clojure has it's own serialization format, EDN. Since by backend is Clojure and frontend is Babashka it don't even have to translate back and forth to JSON.
git.travisshears.com/travisshears...
#clojure
#json
#bashka
There’s two kinds of developers: the ones who love #clojure and the ones that don’t know about it yet.
In the light of discussions in the #Clojure community and also addressing a section in yesterday’s #ClojuristsTogether newsletter:
My experience using LLM coding agents + Clojure has been stellar. It's a great mach.
Imo this is due to a combination of
1) the REPL giving a coding agent […]
For me, programming in #Elixir is fun, easy, and simple due to pipes. The program is a sequence/flow of data transformations. The same is true in #Clojure (threading macros) and #FSharp.
There's a new update for jank, the native #clojure dialect on LLVM. Check it out!
jank-lang.org/blog/2026-03...
The Babashka Conf schedule is now live!
babashka.org/conf/#schedule
#babashka #babashka_conf #clojure
My OSS project updates for January and February 2026!
Thanks to all users, contributors and sponsors for keeping it going!
blog.michielborkent.nl/oss-updates-...
#clojure #babashka #cljKondo
🧠 AI assistants converge too early. I stopped asking for answers and started making AI argue with itself.
The BASHES protocol: A dialectic prompt simulating a whiteboard session between 6 legendary software thinkers.
🔗 tinyurl.com/dialectic-pr...
#AI #PromptEngineering #Clojure
Great episode with Adam Tornhill. #softwareengineering #programming #funcprogsweden #softwarequality
https://youtu.be/sYqUUYlm4HU
a new chapter in the #clojure saga felixbarbalet.com/simple-made-...
[More Lisp semantics]
Modern #Lisp systems distinguish between several different types of string-like-things:
1. symbols
2. strings
3. keywords
By convention we typically use symbols as handles on things bound in the environment, keywords as handles on things bound in maps (hash tables), and […]
If you are on Facebook, you can follow us there as well to make sure you don't miss the latest #clojure #jobs
Calling C from #clojure and having fun doing it? That's what @andersmurphy.bsky.social will get on stage for us to experience: using coffi and JDK 22 FFI to unlock SQLite features that JDBC wrappers can only *dream* of. clojuredays.org#Unlocking%20... #dcd26
Last call! Two more days to send in a talk proposal for a full or lightning talk for Babashka Conf 2026!
babashka.org/conf/#cfp
Thanks to Nubank, Exoscale and Bob for sponsoring the conf!
We are looking for one last sponsor to provide a snack during the coffee break! ❤️
#clojure #babashka
Benny Andresen brings MilaDB to #dcd26: in-process, zero dependencies, time-traveling #clojure database with Datomic-flavored datalog clojuredays.org#MilaDB:%200-...
[More Lisp semantics]
In #CommonLisp, `=` takes arbitrary numbers of args, but `eq` takes exactly two.
In #Scheme `=` takes arbitrary numbers of args, and `eq?` also takes arbitrary numbers of args.
In #Logo, `equalp` takes exactly two args, and I don't think there's an equivalent of `eq` […]
Haiku обогнала Opus, а стартап Taalas впаял нейросеть в кремний Самые интересные новости за неделю для практикующи...
#LLM #Claude #SkillsBench #MCP #безопасность #кода #реверс-инженеринг #Clojure #вайбкодинг
Origin | Interest | Match
the speaker, Nikita Prokopov
One line of code, zero config and you start capturing your analytics. That's what Nikita Prokopov aka tonsky will demonstrate, showing how clj-simple-stats can power up your #clojure ring server with analytics just by adding one extra middleware. clojuredays.org#clj-simple-s... #dcd26
Episode 4 of my YouTube series on creating a Lisp with Claude Code and Swift is up:
youtu.be/KRFBAvNGIWM
#lisp #claude #swift #clojure
Wanna try a faster alternative to jbang using GraalVM native-image + Crema?
github.com/borkdude/cre...
~20-30ms for executing Java "scripts" with dependencies. It's a shame the name JavaScript was already taken!
#clojure #graalvm #java
[Lisp semantics of nth]
SBCL #CommonLisp
(nth 2 '(1 2 3 4 5 6))
3
#Clojure
(nth '(1 2 3 4 5 6) 2)
3
#Scheme
(list-ref '(1 2 3 4 5 6) 2)
;Value: 3
So, they differ on the name of the function and the order of the arguments, but they all agree on zero-indexing the first element of a list.
This […]