mastodon.world is one of the many independent Mastodon servers you can use to participate in the fediverse.
Generic Mastodon server for anyone to use.

Server stats:

8.2K
active users

Introducing seqfind.com

fnguy.com/seqfind.html

I'm officially launching seqfind.com – the Clojure(script) code explorer.Technically, this is a relaunch. I did a soft launch with just a handful of repos a few years ago, but for various reasons I was unable to push it to the next stage until now....

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

Screenshot of seqfind.com showing usage examples for the clojure.core/map function.
fnguy.comIntroducing seqfind.comDiscover how popular Clojure(Script) libraries are used in the wild. seqfind.com lets you explore real-world code examples to learn faster and find common usage patterns.

Scaling fraud defense: How Nubank evolved its risk analysis platform

building.nubank.com/scaling-fr

At the Engineering Meetup #13, a packed audience gathered to learn about one of the most critical systems protecting Nubank and its customers: the Defense Platform.  This session was led by three experts deeply involved in building and...

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

Building Nubank · Scaling fraud defense: How Nubank evolved its risk analysis platform - Building NubankGo behind the scenes of the Defense Platform: a scalable, multi-region architecture built for fraud detection, speed, and efficiency

Top 11 Deep Learning Frameworks in 2025: Comparative Guide & Use Cases

dev.to/marutitech/top-11-deep-

As we move halfway into 2025, the deep learning ecosystem is more vibrant and diverse than ever before. A new generation of software libraries is making it simpler to design, train, and deploy powerful neural networks. Whether you're targeting...

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

DEV CommunityTop 11 Deep Learning Frameworks in 2025: Comparative Guide & Use CasesAs we move halfway into 2025, the deep learning ecosystem is more vibrant and diverse than ever...

Inside Nubank’s engineering: Discover the technical backstage powering our innovation

building.nubank.com/engineerin

At Nubank, building technology for financial services goes far beyond simply creating robust systems. Here, every technical decision aims to support millions of customers with security, efficiency, and constant innovation.  In this article,...

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

Building Nubank · Inside Nubank’s engineering: Discover the technical backstage powering our innovation - Building NubankLearn about the practices, technologies, and technical culture that enable continuous scaling and innovation at Nubank

What is Java Development Kit (JDK)?

theserverside.com/definition/J

The Java Development Kit (JDK) is a development environment for building Java applications and applets that can then run on any Java Virtual Machine (JVM). The JDK includes a variety of development tools, libraries and utilities, including a...

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

TheServerSide.comWhat is Java Development Kit (JDK)? | Definition from TechTargetLearn how to use the Java Development Kit (JDK) to build Java applications that can run on any Java Virtual Machine (JVM) on a variety of operating systems.

🌘 以 EDN 檔案撰寫測試
➤ 簡化單元測試流程
biffweb.com/p/edn-tests/
作者分享了其持續改進的單元測試方法,核心思想是定義輸入數據,並將預期返回值儲存於 EDN 檔案中。 透過比對實際返回值與 EDN 檔案,來驗證測試結果。 此新方法簡化了測試流程,使其更接近在 REPL 中執行程式碼的體驗,降低了認知負擔。
+ 這種方法看起來很有趣,直接用EDN檔案儲存測試案例,可以減少很多模板程式碼。
+ 感覺這個測試方法更接近實際開發流程,更容易上手,也方便協作。
#開發 #測試 #Clojure

biffweb.comWriting your tests in EDN filesTrust me it's better this way
Replied to Mike Fikes

@mfikes Are you doing the weird correction for the
ellipsoid? I remember when I was doing a similar thing for the UK Ordnance Survey grid (which was probably also in #Clojure) that was an issue...

... no, can't find it just now, can't even remember which project it was in.

Geeking out on Maidenhead grid squares. Golfed #Clojure:

(defn latlon->maidenhead [lat lon]
  (let [c #(char (+ 65 (quot %1 %2)))
        p #(let [a (long (* (+ %1 (%2 90)) 240))
s (%2 240)
f (* 10 s)]
             [(c a f)
(quot (mod a f) s)
(c (mod a s) (%2 10))])]
    (apply str (interleave (p lon #(* % 2))
(p lat identity)))))

(latlon->maidenhead 41.71 -72.7) => "FN31PR"

404Not Found