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...
(ns v2 (:require [clojure.spec.alpha :as s] [clojure.string :as str])) (s/def...
Function Composition in Clojure: Building Powerful Data Transformations 1....
Clojure
🎙️ "If more people knew what we knew about Clojure..." For our final episode of "Clojure in product....
Why Vectors Matter in Clojure Vectors are one of the most commonly used data structures in...
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...
In Software Development, fast feedback loops are essential to validating that code does what we...
Olá, pessoal! Há 8 meses, embarquei na jornada de ser um Lead Software Engineer no Nubank. Vindo de...
Clojure in one sentence Clojure is a dynamic, functional programming language that runs on...
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...
Clojure and Java Interoperability Hey everyone! Welcome back to Clojure Is Awesome! After...
Clojure practice task: Managing User Permissions with Sets You are developing a...
Clojure is a LISP for the Java Virtual Machine (JVM). As a schemer, I wondered if I should give...
🎙️ "Being an underdog also makes you attractive... when I'm bringing Clojure to the table as a...
Exploring the Property Pattern: From C# to Clojure with a Functional...
Sometimes, Clojure seems to miss operations that feel like they should be in clojure.core. I'm...
🎙️ What happens when you choose a programming language for its technical merits and because you...
The Origins and Foundations of Clojure Welcome to Part 21 of the Clojure Is Awesome...
(ns tree (:require [clojure.spec.alpha :as s])) (s/def ::value any?) (s/def ::children (s/coll-of...
Atoms vs Refs in Clojure: State Management 1. Atoms Atoms are designed to...
(ns specs (:require [clojure.spec.alpha :as s])) (s/def ::user-id uuid?) (s/def ::email (s/and...
(ns monostate) (def ^:private session-state (atom {:user-id nil :permissions #{} ...
Hola, querido Yo del Futuro: Como recordarás (o quizás no, dada nuestra mala memoria), hoy hemos...