Welcome to the Clojure Deref! This is a weekly link/news roundup for the Clojure ecosystem (feed: RSS). Thanks to Anton Fonarev for link aggregation. Podcasts, videos, and media Clojure Corner: Interview with Christian Johansen -...
by Laurence ChenMy friend Karen joined an online community of product managers and took on the task of managing a mentor-mentee matchmaking system. She has years of experience as a product manager but lacks a background in software development....
The Clojurists Together organization has decided to sponsor Scicloj community building for Q3 2024, as a project by Daniel Slutsky. This is the second time the project has been selected this year. Here is Daniel’s last update for this period. This...
Today I'd like to share with you a nice little library that colorizes code-like output. Yup, no jokes today, very serious library: cli-highlight👔. You know the drill: install with e.g. deno add npm:cli-highlight and create a file, e.g....
In this episode, Jeremy Taylor and Malcolm Sparks are joined by Gene Kim to explore the evolution of technology through modularity, AI-driven programming, and the future of innovation.
Christmas is almost here! Have you thought about how programming languages, with their unique quirks and personalities, might celebrate the holiday season? We’ve imagined a Christmas party hosted by some of the most popular languages. Spoiler...
Apologies! Last week’s issue was misconfigured. It only went out to paid subscribers. You can still read it online.Please consider buying Grokking Simplicity for your team. It makes a great holiday gift. Nothing says “I appreciate you” than a...
(ns builder) (defn create-report "Creates an initial structure for the report." [] {:title nil :author nil :date nil :content [] :summary nil}) (defn set-title "Sets the title of the report." [report title] ...
I got some feedback on trivialai from a friend and made some changes.The define method is now optionally a decoratorThis means that you can equivalently dotls.define(_some_function) [email protected]() def _some_function(some, args): ... The new...
From the series 'I don't need to say anything... :) (ns singleton) (defprotocol LoggerService "Protocol defining logging operations." (log-info [this message] "Logs an informational message.") (log-error [this message] "Logs an error...