Clojure

Clojure Deref (Apr 17, 2025)

clojure.org/news/2025/04/17/de

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 Episode 10 …​ the refactoring continues until the code...

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

Clojure - Clojure Deref (Apr 17, 2025)

clojure.org
Clojure Planet

Skyscrapers or mud huts

ericnormand.substack.com/p/sky

Our last episode was with David Nolen. We talk about his development process, his origin, and his philosophy. The next episode is on Tuesday, April 22 with special guest Fogus. Please watch us live so you can ask questions.Have you seen Grokking...

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

Skyscrapers or mud huts

On habitability and the Curse of Lisp

Eric Normand's Newsletter
Clojure Planet

Next-level backends with Rama: fault-tolerant timed notifications in 25 LOC

blog.redplanetlabs.com/2025/04

This is part of a series of posts exploring programming with Rama, ranging from interactive consumer apps, high-scale analytics, background processing, recommendation engines, and much more. This tutorial is self-contained, but for broader...

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

Clojure

Clojure Deref (Apr 11, 2025)

clojure.org/news/2025/04/11/de

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 David Nolen guests on Apropos Clojure 2025-04-08 - apropos...

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

Clojure - Clojure Deref (Apr 11, 2025)

clojure.org
Clojure Planet

Practices to scale Machine Learning operations

building.nubank.com/practices-

At Nubank, innovation in machine learning (ML) and data science (DS) drives our mission to build the Purple Future. Recently, we hosted the 92nd edition of our DS & ML Meetup, themed “Practices to Scale Machine Learning Operations.” This event...

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

Practices to scale Machine Learning operations - Building Nubank

Real-time Machine Learning at Nubank: Scaling fraud…

Building Nubank
Clojure Planet

Learning Fennel from Scratch to Develop Neovim Plugins

lambdaisland.com/blog/2025-04-

by Laurence ChenAs a Neovim user writing Clojure, I often watch my colleagues modifying Elisp to create plugins—for example, setting a shortcut key to convert Hiccup-formatted data in the editor into HTML. My feeling is quite complex. On one hand,...

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

Clojure Planet

numbers, radix, arbitrary precision in Clojure

clojure-diary.gitlab.io/2025/0

Code ;; numbers.clj 17 017 ;; O17 ;; error 0.17 00.17 8r17 0X17 0x17 16r17 16R17 ;; 16r-17 ;; error -16r17 ;; 0x-17 ;; error -0x17 ;; 0x17.34 ;; error ;; 16r17.34 ;; 7r17 ;; error ;; 4r17 ;;...

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

numbers, radix, arbitrary precision in Clojure

Clojure Diary
Clojure Planet

Mudança de Mentalidade: Do Paradigma Orientado a Objetos para o Funcional

dev.to/asouza/mudanca-de-menta

Disclaimer Este texto foi inicialmente concebido pela IA Generativa em função da transcrição de uma aula do curso "Os 3 pilares para escalar sistemas distribuídos" da Jornada Dev + Eficiente. Se preferir acompanhar por vídeo, é só dar o...

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

Mudança de Mentalidade: Do Paradigma Orientado a Objetos para o Funcional

Disclaimer Este texto foi inicialmente concebido…

DEV Community
Clojure Planet

Clojure in new fields - opening up

scicloj.github.io/blog/clojure

Near the end of November 2024, we had a couple of small meetings around the presence of Clojure in academia, one of the areas where we are looking to make Clojure gradually more present. The meetings back then did affect our actions and followup...

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

Clojure in new fields - opening up

Near the end of November 2024, we had a couple of small…

Scicloj
Clojure Planet

Building and publishing a Clojure library from scratch with Slim

bogoyavlensky.com/blog/build-a

Learn how to build and publish a Clojure library to Clojars using Slim, a build tool that simplifies the development and deployment process.

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

Building and publishing a Clojure library from scratch with Slim

Learn how to build and publish a Clojure library to…

bogoyavlensky.com
Clojure Planet

A Clojure Jekyll adventure: Jakel materializes from the mist (a Jekyll clone)

emcken.dk/programming/2025/04/

I’m flipping through my quest log to reflect on the trials I’ve faced recently. Most improvements to the Clojure-based Jekyll clone focused on making the blog navigable. This is the fourth part of the series: “A Clojure Jekyll Adventure”. If...

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

A Clojure Jekyll adventure: Jakel materializes from the mist (a Jekyll clone) · Jacob Emcken

Jakel, a Jekyll clone, written in Clojure, is starting…

Jacob Emcken
Clojure Planet

Python [4] : Python Fonksiyonları; Kodunuzu Organize Etme ve Yeniden Kullanma Sanatı

dev.to/abdulkadir_gungor/pytho

Modern programlamanın temel yapı taşlarından biri olan fonksiyonlar, belirli bir görevi yerine getiren, yeniden kullanılabilir kod bloklarıdır. Python’da fonksiyonlar, kodumuzu daha modüler, organize, okunabilir ve bakımı kolay hale getirmenin...

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

Python [4] : Python Fonksiyonları; Kodunuzu Organize Etme ve Yeniden Kullanma Sanatı

Modern programlamanın temel yapı taşlarından biri olan…

DEV Community
Clojure Planet

Build Order - Using Clojure to determine build order

clojure-diary.gitlab.io/2025/0

Code ;; build_order.clj (def graph {:h [] :c [:a :b] :e [:d :f] :g [:c :e]}) (defn has-no-dependency? [node graph] (empty? (get graph node []))) (defn all-build-steps [graph] (let [graph-keys (keys...

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

Build Order - Using Clojure to determine build order

Clojure Diary
Clojure Planet

Next-level backends with Rama: recommendation engine in 80 LOC

blog.redplanetlabs.com/2025/04

This is part of a series of posts exploring programming with Rama, ranging from interactive consumer apps, high-scale analytics, background processing, recommendation engines, and much more. This tutorial is self-contained, but for broader...

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

Next-level backends with Rama: recommendation engine in 80 LOC

This is part of a series of posts exploring programming…

Blog
Clojure Planet

Anti-entropic functions

ericnormand.substack.com/p/ant

Our last Apropos was with Bobbi. Check it out. Our next episode is with David Nolen on Tuesday April 8. Please watch us live so you can ask questions.Have you seen Grokking Simplicity, my book for beginners to functional programming? Please check...

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

Clojure Planet

Vibe coding doesn't jibe

cestlaz.zamansky.net/posts/vib

The truth is, I don't use those modern AI tools much. I'm not doing much coding and when I do, I've been using Clojure or Elisp - not so mainstream so as to have all sorts of AI support. For writing? I prefer do to it myself. Anything else? Well,...

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

Vibe coding doesn’t jibe - C’est la Z

The truth is, I don't use those modern AI tools much.…

cestlaz.zamansky.net
Clojure Planet

Practices to scale Machine Learning operations

building.nubank.com.br/practic

At Nubank, innovation in machine learning (ML) and data science (DS) drives our mission to build the Purple Future. Recently, we hosted the 92nd edition of our DS & ML Meetup, themed “Practices to Scale Machine Learning Operations.” This event...

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

Practices to scale Machine Learning operations - Building Nubank

Real-time Machine Learning at Nubank: Scaling fraud…

Building Nubank
Clojure Planet

Clojure Deref (Apr 5, 2025)

clojure.org/news/2025/04/05/de

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 [EP.06 deref-in] - clojure-br E101 FC/IS with magnars -...

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

Clojure - Clojure Deref (Apr 5, 2025)

clojure.org
Clojure

Clojure Deref (Apr 5, 2025)

clojure.org/news/2025/04/05/de

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 [EP.06 deref-in] - clojure-br E101 FC/IS with magnars -...

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

Clojure - Clojure Deref (Apr 5, 2025)

clojure.org