Stephen Emmanuelstephcrown.hashnode.net·Sep 19, 2022FeaturedBuilding an Application with ClojureScriptClojureScript is a Clojure compiler that generates JavaScript code. Clojure is a high-level, functional programming language that runs on the Java Virtual Machine (JVM), and has access to all Java libraries. With ClojureScript, we can write Clojure c...Discuss·22 likes·1.4K readsClojureScript
Rafik Naccacheturbopape.hashnode.net·Aug 25, 2020Let's Play Checkers with AI and ClojureLogic Programming: A forgotten Field in AI Nowadays, when you hear "AI," you are probably going to think about neural networks and model training, starting to reach for data sets and envisioning how to feed them into the learning machine. In this po...Discuss·17 likes·518 readsClojure
Divyajyoti Ukirdedivyajyotiuk.hashnode.net·Sep 7, 2020Clojure and Leiningen to manage Clojure projectsI would like to introduce you to Clojure. I am fascinated by how it works and it is also known to sharpen your thinking as a programmer. In this article, we'll do a basic setup and start programming in Clojure! What is Clojure ? Daniel Higginbotham i...Discuss·15 likes·357 readsClojure
Larry Christensenlambdastew.hashnode.net·Dec 2, 2022LocalStack Testing in ClojureIf you are using the v2 AWS SDK clients, you can configure them like so: (ns my.s3 (:import (java.net URI) (software.amazon.awssdk.regions Region) (software.amazon.awssdk.services.s3 S3Client) (software.amazon.awssdk.services.s3.mo...Discuss·52 readsClojure
Paul Jankowskiclojurehacker.hashnode.net·Oct 22, 2022Tutorial - Material UI (MUI) and ClojureScriptHow to use Material UI in ClojureScript? With shadow-cljs and Reagent this is piece of cake: Start new project e.g.lein new reagent-frontend <myproject> Install MUI:npm install @mui/material @emotion/react @emotion/styled Now let's run the serve...Discuss·1 like·238 readsClojure
Volodymyr Kozieievkozieiev.hashnode.net·Oct 18, 2022Full Clojure project in 5 seconds!https://youtu.be/2K7cQ8UYRzo Every time you start a new Clojure project, there is a lot of boilerplate that needs to be added: deps.edn with aliases to run tests and build actions build.clj with build actions .gitignore README.md you name it… Crea...Discussdeps-new
Paul Jankowskiclojurehacker.hashnode.net·Oct 14, 2022Best Clojure(Script) IDEsLet me share with you my personal opinion about most popular editors and IDEs in the Clojure world. VsCode and Calva + It is vscode. It is quite popular editor now, so you can have one editor for all your projects no matter the language. + Calva is h...Discuss·128 readsClojure
Volodymyr Kozieievkozieiev.hashnode.net·Oct 13, 2022Is Clojure the only language you need?Video version https://youtu.be/oguZnsrUQBo The question Clojure is a hosted programming language. This means what you wrote in Clojure will run in an environment of another language. The most popular implementation of Clojure turns Clojure code into...Discuss·3 likesClojure
Paul Jankowskiclojurehacker.hashnode.net·Oct 9, 2022How to learn ClojureI know I know, there are thousands of such topics all over the internet - but let me describe the best resources in my opinion: [Book] Clojure for the Brave and True - great book if you have no idea about any other LISP and Clojure. Mostly what you...Discuss·85 readsClojure
Paul Jankowskiclojurehacker.hashnode.net·Oct 8, 2022Clojure & algorithm platformsHave you ever heard about LeetCode, TopCoder, HackerRank and similar platforms? I have bad news - the most popular ones do not support Clojure 😕 Hopefully I have found 2 that do: 👎 CodeChef - I tried to solve some hello world problem and got TLE, p...Discuss·76 readsalgorithms
Isaaklikka.hashnode.net·Oct 4, 2022Generating secrets in ClojureGenerating secrets is a very important part of any security-sensitive application. In this article, I'm going to tell you about a low-level library that helps to generate secrets in Clojure. If you're familiar with Python, you might have heard of sec...Discuss·54 readsClojure
Stephen Emmanuelstephcrown.hashnode.net·Sep 19, 2022FeaturedBuilding an Application with ClojureScriptClojureScript is a Clojure compiler that generates JavaScript code. Clojure is a high-level, functional programming language that runs on the Java Virtual Machine (JVM), and has access to all Java libraries. With ClojureScript, we can write Clojure c...Discuss·22 likes·1.4K readsClojureScript
Stephen Emmanuelstephcrown.hashnode.net·Sep 9, 2022How to Set up A Clojure Script and Phoenix ProjectRecently I was tasked with setting up a project with ClojureScript and Phoenix. I tried to check the internet for a "how-to" but did not find an up-to-date guide on completing this setup. After some research and trials, I was finally able to get it d...Discuss·2 likes·418 readsClojureScript