mastodon.ie is one of the many independent Mastodon servers you can use to participate in the fediverse.
Irish Mastodon - run from Ireland, we welcome all who respect the community rules and members.

Administered by:

Server stats:

1.6K
active users

#clojure

25 posts20 participants1 post today

Some Civitas notebooks should only be run locally

clojurecivitas.github.io/scicl

(Work-In-Progress Draft) Usually, when we wish to create Clojure Civitas posts, we enjoy the fact that Civitas runs our notebooks in the GitHub Actions as it renders the website. While this is the default behavior, sometimes, we cannot expect our...

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

Clojure CivitasSome Civitas notebooks should only be run locally – Clojure CivitasA demonstration of our practice with some Civitas notebooks that cannot be run in GitHub Pages.

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.
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"