Clojure programming language discussion

555 readers
2 users here now

Clojure is a Lisp that targets JVM and JS runtimes

Finding information about Clojure

API Reference

Clojure Guides

Practice Problems

Interactive Problems

Clojure Videos

The Clojure Community

Clojure Books

Tools & Libraries

Clojure Editors

Web Platforms

founded 5 years ago
MODERATORS
126
127
 
 

Bad data models lead to code complexity

https://ericnormand.substack.com/p/bad-data-models-lead-to-code-complexity

Our last Apropos was with Alex Engelberg. Check it out. Our next episode is with Sean Corfield on March 11 (Paula had to cancel). Please watch us live so you can ask questions.Have you seen Grokking Simplicity, my book for beginners to functional...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

128
129
 
 

Annually-Funded Developers' Update: Jan./Feb. 2025

https://www.clojuriststogether.org/news/annually-funded-developers-update-jan./feb.-2025/

Hello Fellow Clojurists! This is the first report from the 5 developers receivng Annual Funding in 2025. (Highlights listed on the list below - but the reports include much more). Dragan Duric: Apple M Engine Neanderthal Eric Dallo: lsp-intellij,...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

130
 
 

Clojure Deref (Mar 6, 2025)

https://clojure.org/news/2025/03/06/deref

Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Thanks to Anton Fonarev for link aggregation. Podcasts, videos, and media Lazytest: Standalone BDD testing (by Noah Bogart) - London...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

131
 
 

Clojure Deref (Mar 6, 2025)

https://clojure.org/news/2025/03/06/deref

Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Thanks to Anton Fonarev for link aggregation. Podcasts, videos, and media Lazytest: Standalone BDD testing (by Noah Bogart) - London...

#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml

132
 
 

Call for Proposals. Feb. 2025 Member Survey

https://www.clojuriststogether.org/news/call-for-proposals.-feb.-2025-member-survey/

Greetings folks! Clojurists Together is pleased to announce that we are opening our Q2 2025 funding round for Clojure Open Source Projects. Applications will be accepted through the 17th of March 2025 (midnight Pacific Time). We are looking...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

133
 
 

Clojure vs. Other Functional Programming Languages: A Quick Comparison

https://flexiana.com/news/clojure/2025/03/clojure-vs-other-functional-programming-languages-a-quick-comparison

Functional programming has gained momentum in recent years, with several languagesleading the charge. Among them, Clojure stands out for its Lisp-based syntax, dynamictyping, and seamless JVM interoperability. But how does it compare to other...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

134
 
 

The sources of software complexity

https://ericnormand.substack.com/p/the-sources-of-software-complexity

Our last Apropos was with Alex Engelberg. Check it out. Our next episode is with Paula Gearon on March 11. Please watch us live so you can ask questions.Have you seen Grokking Simplicity, my book for beginners to functional programming? Please...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

135
 
 

How Multiply went from Datomic to XTDB to Rama

https://blog.redplanetlabs.com/2025/03/04/how-multiply-went-from-datomic-to-xtdb-to-rama/

“With databases, the conversation always started with ‘what are we able to do?’. I rarely find myself asking what Rama is able to support, and rather ‘how?’. The requirements of the application dictate how we utilise the platform, not the other way...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

136
 
 

Radar Trends to Watch: March 2025

https://www.oreilly.com/radar/radar-trends-to-watch-march-2025/

Anthropic’s announcement of Claude 3.7 Sonnet notwithstanding, the breakneck pace of major AI announcements seemed to slow down through February. That gave us some time to look at some other topics. Two important posts about programming appeared:...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

137
 
 

Staff Software Engineer at Onton

https://jobs.braveclojure.com/company/deft/listing/staff-software-engineer/ntrl5pfLwe6xah9rhr6AU

Staff Software Engineer at Onton175000 - 225000Since our public launch in late 2023, we've grown exponentially to guide millions of users to their perfect product. We recently built the foundation of a neurosymbolic AI agent that learns more about...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

138
 
 

Filtering maps based on key value pairs in Clojure

https://clojure-diary.gitlab.io/2025/03/04/filtering-maps-based-on-key-value-pairs-in-clojure.html

Code (defn key-has-value? [key value map] (= value (get map key))) (defn map-filter [key value seq-of-maps] (filter #(key-has-value? key value %) seq-of-maps)) (defn maps-having [filter-map seq-of-map] (if (empty? filter-map) ...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

139
 
 

Clojure Is Awesome!!! [PART 14]

https://dev.to/borba/clojure-is-awesome-part-14-4m1k

Exploring the Property Pattern: From C# to Clojure with a Functional Perspective Continuing our series, today we’ll dive into an interesting concept that has recently gained prominence in C#: the Property Pattern. Originally conceived in the...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

140
141
 
 

Membandingkan Form yang Kompleks menggunakan Formik dan React Hook Form dengan Chakra UI

https://medium.com/@zeroonegroup/membandingkan-form-yang-kompleks-menggunakan-formik-dan-react-hook-form-dengan-chakra-ui-9885861da6c6

By Rivaldi Putra, Product Engineer at Zero One GroupMengapa kita melakukan riset?Zero One Group (ZOG) adalah sebuah perusahaan di bidang teknologi yang fokus dalam transformasi teknologi. Sebagai Perusahaan yang dipercaya dalam transformasi...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

142
 
 

Cloverage — Clojure Test Coverage

https://clojure-diary.gitlab.io/2025/03/02/cloverage-clojure-test-coverage.html

Notes Cloverage is a Clojure tool that provides test coverage statistics for your Clojure code. Injee, is the t project in which I am using Cloverage.

#clojure #clj #cljs !clojure@lemmy.ml @clojure

143
144
 
 

Are you my type?

https://dmiller.github.io/clojure-clr-next/general/2025/03/01/are-you-my-type.html

How to do type lookups in ClojureCLR: some experiments and a new way forward. Assemblies: to infinity and beyond In a previous post – The function of naming; the naming of functions – I floated the idea of generating assemblies with abandon. The...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

145
 
 

Function Naming

https://dmiller.github.io/clojure-clr-next/2025/02/28/function-naming.html

layout: post title: The function of naming; the naming of functions date: 2025-02-28 00:00:00 -0500 categories: general — Looking at how some differences between the JVM’s classfile model and .Net’s assembly model manifest in ClojureCLR, and...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

146
 
 

Are You My Type

https://dmiller.github.io/clojure-clr-next/2025/03/01/are-you-my-type.html

layout: post title: Are you my type? date: 2025-03-01 00:00:00 -0500 categories: general — How to do type lookups in ClojureCLR: some experiments and a new way forward. Assemblies: to infinity and beyond In a previous post – The function of...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

147
 
 

OSS updates January and February 2025

https://blog.michielborkent.nl/oss-updates-jan-feb-2025.html

In this post I'll give updates about open source I worked on during January and February 2025.To see previous OSS updates, go here.SponsorsI'd like to thank all the sponsors and contributors that make this work possible. Without you, the below...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

148
 
 

Clojure Deref (Feb 27, 2025)

https://clojure.org/news/2025/02/27/deref

Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Thanks to Anton Fonarev for link aggregation. Podcasts, videos, and media Clojure AI Meetup 1: voice-fn - real-time voice-enabled AI...

#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml

149
 
 

Extensible Macros

https://buttondown.com/tensegritics-curiosities/archive/extensible-macros/

by cgrand (🦋 🦣 𝕏) Like many of us I have a long and well-documented record of love/hate relationship with macros. Despite that, the cornerstone of cljd.flutter (the ClojureDart namespace for making Flutter more palatable) is a macro:...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

150
 
 

Extending Java Class in Clojure

https://clojure-diary.gitlab.io/2025/02/26/extending-java-class-in-clojure.html

Code ;; extend_java_class.clj (defprotocol Wishy (wish [this])) (extend-type String Wishy (wish [this] (str "Hello " this "!"))) (wish "Karthik") (wish 1) ; puts out an error (extend-type java.lang.Long Wishy (wish [this] (str...

#clojure #clj #cljs !clojure@lemmy.ml @clojure

view more: ‹ prev next ›