Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
Several years ago, I came across The Python Paradox by Paul Graham. In it, Graham argues that Lisp...
Vamos falar sobre programação funcional? Eu comecei minha jornada na programação com POO (Programação...
The challenge Last weekend, I decided to explore more about how Clojure can interact with...
Introdução Olá, meu nome é Felipe Nascimento, e atualmente sou engenheiro de software no Nubank....
Intro The JVM (Java Virtual Machine) ecosystem is home to several powerful languages, each...
Function Composition in Clojure: Building Powerful Data Transformations 1....
(ns v2 (:require [clojure.spec.alpha :as s] [clojure.string :as str])) (s/def...
Clojure
🎙️ "If more people knew what we knew about Clojure..." For our final episode of "Clojure in product....
Mastering Deques Welcome back to Clojure Is Awesome! In Part 15, we’re diving into the...
Definition A map in Clojure is a key-value data structure that stores associations between...
Why Vectors Matter in Clojure Vectors are one of the most commonly used data structures in...
Understanding Protocols and Records in Clojure: A Deep Dive Clojure is known for its...
Como desenvolvedor a alguns anos, decidi mergulhar no mundo de LISP através de Clojure por pura...
In Software Development, fast feedback loops are essential to validating that code does what we...
Clojure in one sentence Clojure is a dynamic, functional programming language that runs on...
Why I chose Clojure/Script for building Vade Studio In 2022, I started with a big vision: one...
Clojure practice task: Managing User Permissions with Sets You are developing a...
Sometimes, Clojure seems to miss operations that feel like they should be in clojure.core. I'm...
Clojure is a LISP for the Java Virtual Machine (JVM). As a schemer, I wondered if I should give...
Exploring the Property Pattern: From C# to Clojure with a Functional...
Clojure and Java Interoperability Hey everyone! Welcome back to Clojure Is Awesome! After...
🎙️ "Being an underdog also makes you attractive... when I'm bringing Clojure to the table as a...
The Origins and Foundations of Clojure Welcome to Part 21 of the Clojure Is Awesome...
Atoms vs Refs in Clojure: State Management 1. Atoms Atoms are designed to...
(ns monostate) (def ^:private session-state (atom {:user-id nil :permissions #{} ...
(ns specs (:require [clojure.spec.alpha :as s])) (s/def ::user-id uuid?) (s/def ::email (s/and...
(ns tree (:require [clojure.spec.alpha :as s])) (s/def ::value any?) (s/def ::children (s/coll-of...
🎙️ What happens when you choose a programming language for its technical merits and because you...
🏦 Have you ever wondered how to scale an engineering team while building a bank? From embracing...