Launching XTDB v2 — time-travel SQL database to simplify compliance
Launching XTDB v2 — time-travel SQL database to simplify compliance
Implementing dynamic scope for Fennel and Lua
https://andreyor.st/posts/2025-06-09-implementing-dynamic-scope-for-fennel-and-lua/
I’m continuing my work on fennel-cljlib, my port of clojure.core and some other core libraries, focusing on porting missing functions and features to it. One such feature, which I sometimes miss in Lua and Fennel, is dynamic binding. The Lua VM...
Beyond the If Pattern
https://lambdaisland.com/blog/2025-06-03-beyond-the-if-pattern
by Laurence ChenIn my work at Gaiwan, there was a piece of code with poor quality that always felt like a thorn in my side. For a long time, I couldn’t come up with a better way to handle it.The code was a Nested If. Each step-* is a side-effect...
How do you prototype a nice language?
https://kevinlynagh.com/newsletter/2025_06_03_prototyping_a_language/
How do you prototype a nice language? I’ve spent the past month prototyping my codeCAD language. However, while I’ve made tons of zero-to-one-type progress (an EBNF grammar, parser, function definitions, evaluation, and numeric solving!), the...
Clojure Deref (June 6, 2025)
https://clojure.org/news/2025/06/06/deref
Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Podcasts, videos, and media Vibe Coding With Clojure-MCP: Bruce Hauman/Luke Burton/Gene Kim - IT Revolution 7 UIs with Replicant, Ep...
Building a Bitemporal Index (part 3): Storage
Newsletter 63 – 05/2025
https://otavio.dev/2025/06/03/newsletter-63-05-2025/
Featured Microservices Are a Tax Your Startup Probably Can’t Afford – Microservices architecture are well known for the amount of platform engineering required to extract the best from it, if you’re a small company, probably you’ll not have time...
Clojure 1.12.1
https://clojure.org/news/2025/06/02/clojure-1-12-1
Clojure 1.12.1 is now available! Find download and usage information on the Downloads page. CLJ-2899 - Revert change in semantics of qualified symbol in invocation position if field and method of same name CLJ-2898 - Objects that are both...
Building the Future of Clojure: Welcoming Christoph Neumann as Nubank’s First Clojure Developer Advocate
https://building.nubank.com/clojure-developer-advocate-nubank/
At Nubank, technology is not just a tool — it’s how we rethink financial services, empower millions across Latin America, and challenge the status quo. Since our very first line of code in 2013, Clojure has been at the heart of this mission: a...
A look into Nubank’s tech hub in Berlin
https://building.nubank.com/tech-hub-berlin/
Today, Nu is one of the largest digital financial services platforms in the world, with over 118 million customers across Brazil, Mexico, and Colombia. From day one, our goal has been to challenge the status quo of the financial industry—using...
Too many degrees of freedom
https://ericnormand.substack.com/p/too-many-degrees-of-freedom
I love conference talks. I believe that YouTube has made me a better programmer over the last 17 years. I’ll often turn one on while I’m doing chores. I’ll learn something and sometimes even be inspired to write about it. Like this one.The talk I...
Towards React Server Components in Clojure, Part 3
https://romanliutikov.com/blog/towards-react-server-components-in-clojure-part-3
A journey on bringing React Server Components to Clojure JVM, as a part of UIx library
Clojure Deref (June 6, 2025)
https://clojure.org/news/2025/06/06/deref
Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Podcasts, videos, and media Vibe Coding With Clojure-MCP: Bruce Hauman/Luke Burton/Gene Kim - IT Revolution 7 UIs with Replicant, Ep...
#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml
May 2025 Short-Term Project Updates Q2 2025 Projects
https://www.clojuriststogether.org/news/may-2025-short-term-project-updates-q2-2025-projects/
This is the April/May project update for four of our Q2 2025 Funded Projects. (Reports for the other two are on a different schedule). A brief summary of each project is included to provide overall context. Jeremiah Coyle: Bling Add support for...
Clojure Deref (May 23, 2025)
https://clojure.org/news/2025/05/23/deref
Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). A huge thanks to Anton Fonarev who has put in a ton of work aggregating these links for the last couple of years! It’s a lot to keep up with...
#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml
Clojure 1.12.1
https://clojure.org/news/2025/06/02/clojure-1-12-1
Clojure 1.12.1 is now available! Find download and usage information on the Downloads page. CLJ-2899 - Revert change in semantics of qualified symbol in invocation position if field and method of same name CLJ-2898 - Objects that are both...
#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml
curiosidades
https://dev.to/noobpro7/curiosidades-40nl
🚀 Meu Primeiro Projeto em Python: Curiosidades Animais (Após 3 Semanas de Estudo!) Acabei de concluir meu primeiro projeto em Python e quero compartilhar essa conquista! 🐍 O que fiz: Desenvolvi um programa interativo de terminal que exibe...
Clojure Deref (May 30, 2025)
https://clojure.org/news/2025/05/30/deref
Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Podcasts, videos, and media Let CoPilot extend VS Code with Backseat Driver and Joyride - CalvaTV Clojure MCP Demo - Metosin Scicloj...
#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml
Arities as pseudo-protocol
https://blog.fogus.me/clojure/arities-as-proto/
Whereby I talk about an under-appreciated technique in Clojure where function arities serve as a pseudo-protocol...
Consistent code style for Clojure function definitions
https://www.emcken.dk/programming/2025/05/11/clojure-function-definitions/
A Clojure function is often defined with name and arguments on a single line: (defn some-function [with-several arguments] ... and the following post is about why I will advocate for a multi-line alternative: (defn some-function [with...