Clojure in new fields - opening up
https://www.youtube.com/watch?v=PWHidCezwFM
Discussions: https://discu.eu/q/https://www.youtube.com/watch?v=PWHidCezwFM
Clojure in new fields - opening up
https://www.youtube.com/watch?v=PWHidCezwFM
Discussions: https://discu.eu/q/https://www.youtube.com/watch?v=PWHidCezwFM
Got my new #Clojure compiler installed in the NES audio emulator, and it's running at over 60fps: https://codeberg.org/bobbicodes/nomad6502
CIDER 1.18 (“Athens”)
https://metaredux.com/posts/2025/04/30/cider-1-18.html
Discussions: https://discu.eu/q/https://metaredux.com/posts/2025/04/30/cider-1-18.html
CIDER 1.18 (“Athens”)
https://metaredux.com/posts/2025/04/30/cider-1-18.html
Great news, everyone - CIDER 1.18 (“Athens”) is out! This is a huge release that has an equal amount of new features, improvements to the existing ones, and also trimming down some capabilities in the name of improved efficiency and...
A quick demo of core.async.flow
https://m.youtube.com/watch?v=lXFwf3O4BVY
Discussions: https://discu.eu/q/https://m.youtube.com/watch?v=lXFwf3O4BVY
Next-level backends with Rama: personalized content moderation in 60 LOC
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...
在 WASM 上運行 Clojure
➤ Clojure 在 WebAssembly 上的初步探索
✤ https://romanliutikov.com/blog/running-clojure-in-wasm
這篇文章探討了在 GraalVM v25 之後,Clojure 程式碼得以編譯並在 WebAssembly (WASM) 上運行的可能性。儘管 WASM 後端尚處早期階段,目前不支援多執行緒和網路功能,但單執行緒的運算程式已經可以順利執行。作者分析了編譯後的二進位檔大小、效能表現,並展示了 Clojure 與 JavaScript 的互通性,證明瞭 Clojure 可以在瀏覽器中運行。然而,文章也指出 WASM 版本的效能相較於原生映像檔(Native Image)和 ClojureScript 略遜一籌。
+ 哇,這太酷了!能在瀏覽器裡直接跑 Clojure,想想就覺得很有趣。
+ 效能方面還有很大的改進空間,但作為一個早期版本,已經令人印象深刻。希望未來能看到更多優化。
#Clojure #WASM #GraalVM #效能分析 #互通性
Running Clojure in WASM with GraalVM
Link: https://romanliutikov.com/blog/running-clojure-in-wasm
Discussion: https://news.ycombinator.com/item?id=43810211
Towards the cutest neural network and dubious ideas for a code CAD language
https://kevinlynagh.com/newsletter/2025_04_towards_the_cutest_neural_network/
Towards the cutest neural network I recently needed to use a microcontroller to estimate the pose (translation and orientation) of an object using readings from six different sensors. Since the readings were non-linear and coupled with each other,...
Introducing core.async.flow
https://clojure.org/news/2025/04/28/async_flow
core.async 1.9.808-alpha1 is now available, featuring the first release of core.async.flow. You can read more about core.async.flow in the rationale and the docs. core.async.flow is in alpha state - all APIs are still subject to change but we...
Introducing core.async.flow
https://clojure.org/news/2025/04/28/async_flow
core.async 1.9.808-alpha1 is now available, featuring the first release of core.async.flow. You can read more about core.async.flow in the rationale and the docs. core.async.flow is in alpha state - all APIs are still subject to change but we...
#clojure #clj #cljs !clojure@lemmy.ml @clojure@lemmy.ml
Building a Bitemporal Index (part 1): A Taxonomy of Bitemporal Data
Lisp & Scheme recap for week 17/2025
https://discu.eu/weekly/lisp/2025/17/
#clojure #lisp #programming #racket #scheme
Get RSS feeds and support this bot with the premium plan: https://discu.eu/premium
How to choose the target language for a migration
https://tomassetti.me/how-to-choose-the-target-language-for-a-migration/
How to choose the target language for a migration? There are moments in the life of a software system—and in the life of those responsible for it—when you feel trapped. Trapped by a language that once served you well but now feels like a cage....
NuBank named #3 most innovative companies of the world in 2025
https://www.fastcompany.com/most-innovative-companies/list
Discussions: https://discu.eu/q/https://www.fastcompany.com/most-innovative-companies/list
SQL Benchmarking in #ChronDB!
We analyzed the performance of SQL operations in our Git-based database. See the numbers, and insights about optimizations.
Discover how ChronDB performs with different volumes and types of queries.
https://www.moclojer.com/blog/sql-benchmarking-in-chrondb-building-performance-on-a-git-foundation/
Automatic Type Conversion in Clojure
https://clojure-diary.gitlab.io/2025/04/27/automatic-type-conversion-in-clojure.html
Code ;; automatic_type_casting.clj 42 (type 42) (type 42.5) (+ 42 42.5) (type (+ 42 42.5)) 42.7M (type 42.7M) (+ 42.5 42.7M) (type (+ 42.5 42.7M)) (type (+ 42 42.0)) (type 994824757458783748579437258798745.278375725925479247582945754M) (type (+...