mastodontech.de ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Offen für alle (über 16) und bereitgestellt von Markus'Blog

Serverstatistik:

1,5 Tsd.
aktive Profile

#clojure

24 Beiträge14 Beteiligte1 Beitrag heute

Harnessing the power of Java in Clojure

clojure-diary.gitlab.io/2025/0

Code ;; power_of_java_in_clojure.clj (ns power-of-java-in-clojure (:import [java.time LocalDate])) (. LocalDate now) (. LocalDate (of 2025 7 5)) (. LocalDate (of 2025 7 10)) (def start-date (. LocalDate (of 2025 7 5))) (def end-date (....

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

Clojure Diary · Harnessing the power of Java in Clojure

Don't use println with two and more arguments

grishaev.me/clojure-println/

When printing, please avoid println invocations with more than one argument, for example: (defn process [x] (println "processing item" x)) Above, we have two items passed into the function, not one. This style can let you down when processing...

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

grishaev.meDon't use println with two and more argumentsWhen printing, please avoid println invocations with more than one argument,for example:

GoLangs nil pointers are a constant form of stress at this point, and the if err is nil loc adds too much noise around proper business logic

I’m due to get stuck in a new language, for grpc and rest api’s, what would you pick?

How Writing a Game Boy Emulator Changed His Life!

tonitalksdev.com/how-writing-a

In this engaging remote episode, we are joined by Vincent Cantin, a seasoned developer with a fascinating journey from game development to web development and Clojure. Vincent's career began over 20 years ago when his Game Boy Advance emulator...

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

Toni Talks Dev · How Writing a Game Boy Emulator Changed His Life!Von Toni Väisänen
Antwortete im Thread

@alcinnz #clojure. Had a lot of fun coding backend and frontend in the same language, saved a lot of time in implementation & struggling with newer syntax. #Lisp made functional programming digestible for me. Implemented my own web framework piecing together different libraries with a new glue. All of which I wouldn't have done with Python or Go. 10/10

How to Become a Better React Developer: The Basics and Beyond

dev.to/olga_tash/top-tips-to-b

Working with React for years and want to move forward and improve your skills? This article offers several proven strategies to deepen your expertise and advance your career. Master Core Programming Fundamentals To grow as a React...

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

DEV CommunityHow to Become a Better React Developer: The Basics and BeyondWorking with React for years and want to move forward and improve your skills? This article offers...

Mastering Streaming Data

building.nubank.com/mastering-

At the Nubank DS&ML Meetup #97, participants had the opportunity to dive deep into the world of streaming data infrastructure, guided by André Midea, an Engineering Manager at Nubank.  With a 15-year trajectory that evolved from distributed...

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

Building Nubank · Mastering Streaming Data - Building NubankLearn everything about streaming infrastructure, key concepts, real-world uses, and innovations from Nubank's DS&ML Meetup #97

Functional Strategy Pattern: Unlocking Clean Code with Higher-Order Functions and Callbacks

dev.to/adityabhuyan/functional

2. What is the Strategy Pattern? The Strategy Pattern is a behavioral design pattern that lets you define a family of algorithms, encapsulate each one, and make them interchangeable. The key benefit is that it allows algorithms to vary...

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

DEV CommunityFunctional Strategy Pattern: Unlocking Clean Code with Higher-Order Functions and Callbacks2. What is the Strategy Pattern? The Strategy Pattern is a behavioral design pattern that...