From bd7da0cc87b8e813c82cc5da8ef598b9e4f2242c Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Mon, 10 Jun 2024 20:55:04 +0530 Subject: [PATCH 01/22] Create readme.md --- Programming Languages/Clojure/readme.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Programming Languages/Clojure/readme.md diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md new file mode 100644 index 00000000..4c3a57b5 --- /dev/null +++ b/Programming Languages/Clojure/readme.md @@ -0,0 +1,2 @@ +# Clojure + From e393bbe7dcdbeaef83cb13babadde7fd19db6c29 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 12:22:03 +0530 Subject: [PATCH 02/22] update --- Programming Languages/Clojure/readme.md | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 4c3a57b5..f0325ba8 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -1,2 +1,36 @@ # Clojure +Clojure is a high level, dynamic functional programming language. It is designed, based on the LISP programming language, and has compilers that makes it possible to be run on both Java and .Net runtime environment. +It is based on the LISP programming language which makes its code statements smaller than traditional programming languages.It is a functional programming language. +It focuses on immutability which is basically the concept that you should not make any changes to objects which are created in place. +It can manage the state of an application for the programmer. +It supports concurrency. + +This currated collection of resources are fairly comprehensive and covers various functions involved in Clojure. All the functions are explained using examples for easy understanding. + + +## Table of Contents + +- [Roadmap](#roadmap) +- [Tutorial](#tutorial) + - [Introduction](#introduction) + - +- [Conclusion](#conclusion) + + + +### Roadmap +> + + + +### Tutorial +> + +### Introduction + + + + + +## Conclusion \ No newline at end of file From acb2460c02cace7dd4a672221ae57918570b9784 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 12:43:28 +0530 Subject: [PATCH 03/22] Added Introduction --- Programming Languages/Clojure/readme.md | 42 +++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index f0325ba8..50a43ee1 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -29,6 +29,48 @@ This currated collection of resources are fairly comprehensive and covers variou ### Introduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Overview of ClojureAn overview of the Clojure programming language.
What is Clojure?A blog post explaining what Clojure is.
History and Evolution of ClojureAn article detailing the history and evolution of Clojure.
Key Features and AdvantagesAn article highlighting the key features and advantages of Clojure.
Clojure vs. Other Lisp DialectsA comparison of Clojure and other Lisp dialects.
Functional ProgrammingAn introduction to functional programming concepts in Clojure.
Setting Up ClojureA guide on how to set up Clojure.
Installing ClojureA detailed guide on installing Clojure.
Setting Up a Development EnvironmentInstructions on setting up a development environment for Clojure.
From 557f0482ca0cfda0b396fbd5ff5d7e1a4364f917 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 12:46:11 +0530 Subject: [PATCH 04/22] added fundamental concepts --- Programming Languages/Clojure/readme.md | 62 ++++++++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 50a43ee1..7374dbca 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -14,7 +14,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Roadmap](#roadmap) - [Tutorial](#tutorial) - [Introduction](#introduction) - - + - [Fundamentals](#fundamentals) - [Conclusion](#conclusion) @@ -72,6 +72,66 @@ This currated collection of resources are fairly comprehensive and covers variou +### Fundamentals + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Basic SyntaxIntroduction to the basic syntax of Clojure.
Symbols and Data Types (Numbers, Strings, Keywords, Symbols)Overview of Clojure's symbols and data types.
Basic Arithmetic and String OperationsGuide to performing arithmetic and string operations in Clojure.
Comments and DocumentationInformation on writing comments and documentation in Clojure.
Clojure - REPLIntroduction to the Read-Eval-Print Loop (REPL) in Clojure.
Clojure - VariablesGuide on using variables in Clojure.
Clojure - LoopsOverview of loop constructs in Clojure.
Clojure - Decision MakingIntroduction to decision-making constructs in Clojure.
Clojure - FunctionsGuide to defining and using functions in Clojure.
Clojure - NumbersOverview of number operations in Clojure.
Clojure - RecursionIntroduction to recursion in Clojure.
Clojure - File I/OGuide to file input and output operations in Clojure.
Clojure - Exception HandlingOverview of exception handling in Clojure.
From 1eb0cfea107b10bab18a90c09927c904457730fc Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 12:52:23 +0530 Subject: [PATCH 05/22] added collections --- Programming Languages/Clojure/readme.md | 28 +++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 7374dbca..156c87b3 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -15,6 +15,8 @@ This currated collection of resources are fairly comprehensive and covers variou - [Tutorial](#tutorial) - [Introduction](#introduction) - [Fundamentals](#fundamentals) + - [Collections](#collections) + - [Namespaces and Libraries](#namespaces-and-libraries) - [Conclusion](#conclusion) @@ -133,6 +135,32 @@ This currated collection of resources are fairly comprehensive and covers variou +### Collections + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
ListsGuide to using lists in Clojure.
VectorsOverview of vectors in Clojure.
MapsIntroduction to maps in Clojure.
SetsGuide to using sets in Clojure.
+ + ## Conclusion \ No newline at end of file From c40f7a43b88ae6086170246f4aaeae6bfe238cf8 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 12:52:47 +0530 Subject: [PATCH 06/22] added namespaces and libraries --- Programming Languages/Clojure/readme.md | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 156c87b3..12b412fa 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -161,6 +161,42 @@ This currated collection of resources are fairly comprehensive and covers variou +### Namespaces and Libraries + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
NamespacesOfficial documentation on namespaces in Clojure.
Creating and Using NamespacesGuide on creating and using namespaces in Clojure.
Namespace Aliasing and ReferencingDiscussion on aliasing and referencing namespaces.
Using LibrariesOverview of using libraries in Clojure.
The Clojure EcosystemExploration of the Clojure ecosystem, particularly for web development.
Finding and Using Libraries with LeiningenGuide to adding libraries to Clojure projects using Leiningen.
Popular LibrariesOverview of popular libraries in the Clojure ecosystem.
## Conclusion \ No newline at end of file From 74f06a53b9d30c075b4ec1b992b054b984977f2b Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:01:53 +0530 Subject: [PATCH 07/22] added communities --- Programming Languages/Clojure/readme.md | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 12b412fa..da6573cc 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -17,6 +17,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Fundamentals](#fundamentals) - [Collections](#collections) - [Namespaces and Libraries](#namespaces-and-libraries) +- [Communities](#communities) - [Conclusion](#conclusion) @@ -199,4 +200,41 @@ This currated collection of resources are fairly comprehensive and covers variou + + + +### Communities +> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Official Stack Overflow style Q&A forumCommunity-driven question and answer forum for Clojure-related queries.
Clojurians SlackA great place to get help and connect with other Clojure developers.
Clojurians ZulipZulip chat archive for Clojurians.
Clojurians DiscordJoin the Clojurians community on Discord for discussions and support.
Reddit communitySubreddit for discussions, news, and information about Clojure.
Clojureverse communityForum for Clojure developers to discuss and share information.
+ ## Conclusion \ No newline at end of file From 935b784e6ab48dd9fdd4dbce5eecaab15e976a9c Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:02:37 +0530 Subject: [PATCH 08/22] Added Books --- Programming Languages/Clojure/readme.md | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index da6573cc..e3b0b558 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -17,6 +17,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Fundamentals](#fundamentals) - [Collections](#collections) - [Namespaces and Libraries](#namespaces-and-libraries) +- [Books](#books) - [Communities](#communities) - [Conclusion](#conclusion) @@ -200,6 +201,50 @@ This currated collection of resources are fairly comprehensive and covers variou +### Books + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Clojure for the Brave and TrueGood for beginners on Clojure, covers all the core features of the language. It has a free version available.
Descobrindo ClojureGood for beginners on functional programming in general, especially for Portuguese speakers. It guides you through functional concepts without academic jargon. Entirely in Brazilian Portuguese.
Clojure, The Essential ReferenceExtensive reference to the standard library with clear explanations, real-world examples, and background information. Designed to be used as a reference.
Getting ClojureCovers basic, intermediate, and advanced topics, explaining core aspects of Clojure, good practices, and functional programming concepts.
The Joy of ClojureA good reference book that goes deep into each core aspect of Clojure and explains them in detail.
ClojureScript: Up and RunningIntroduction to using ClojureScript, a variant of Clojure for web development.
Clojure ProgrammingA comprehensive guide to learning Clojure programming, covering a wide range of topics and practical examples.
Joy of ClojureAn in-depth exploration of Clojure, explaining core concepts and providing detailed examples.
Programming ClojureA practical guide to Clojure programming, offering insights and examples for building robust applications.
From fe78c396e42a8b1a55bf92e0bf017fad3da036aa Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:11:27 +0530 Subject: [PATCH 09/22] added editors --- Programming Languages/Clojure/readme.md | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index e3b0b558..24e23054 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -17,6 +17,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Fundamentals](#fundamentals) - [Collections](#collections) - [Namespaces and Libraries](#namespaces-and-libraries) +- [Editors and Environment Setup](#editors-and-environment-setup) - [Books](#books) - [Communities](#communities) - [Conclusion](#conclusion) @@ -200,6 +201,42 @@ This currated collection of resources are fairly comprehensive and covers variou +### Editors and Environment Setup + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Cursive with IntelliJIntelliJ plugin for Clojure development, offering robust support and integration.
clojure-extrasAdditional features for Clojure development in IntelliJ.
EmacsCIDER, the Clojure Interactive Development Environment that Rocks, for Emacs.
VimVim plugin for Clojure development with a powerful interactive environment.
Calva with VS CodeVS Code extension for Clojure and ClojureScript, providing interactive development support.
Sublime with Clojure SublimedSublime Text plugin for Clojure, offering syntax highlighting and other features.
Visual Studio Code - CalvaComprehensive Clojure development support for VS Code, including REPL integration and debugging.
### Books From 66888c33f0c61c68a6adc75160f3a7b31e144247 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:12:13 +0530 Subject: [PATCH 10/22] added websites --- Programming Languages/Clojure/readme.md | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 24e23054..f5e1467b 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -20,6 +20,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Editors and Environment Setup](#editors-and-environment-setup) - [Books](#books) - [Communities](#communities) +- [Websites](#websites) - [Conclusion](#conclusion) @@ -319,4 +320,36 @@ This currated collection of resources are fairly comprehensive and covers variou +### Websites + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## Conclusion \ No newline at end of file From 8b46c104f9fe667795d681254f55c9e2c39dbf65 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:14:56 +0530 Subject: [PATCH 11/22] update --- Programming Languages/Clojure/readme.md | 27 ++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index f5e1467b..a862f56e 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -350,6 +350,31 @@ This currated collection of resources are fairly comprehensive and covers variou - + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Clojure koansLearn Clojure using the Koan style, a "fill the blanks" approach to programming exercises.
PracticalliPractical approaches to learning Functional Programming with Clojure through YouTube broadcasts, screencasts, and online guides.
ClojurecademyAn online learning platform focused on teaching Clojure and its ecosystem, similar to Codecademy.
Clojure newbie guideA quick guide to Clojure and its ecosystem designed for beginners.
4ClojureA collection of Clojure exercises that cover the entire core aspects of the language.
Exercism clojurePlatform for leveling up programming skills through exercises, including a specific track for Clojure.
Exercism clojure Platform for leveling up programming skills through exercises, including a specific track for Clojure.
ClojureThe official website for Clojure, providing comprehensive resources, documentation, and community links.
Clojure SlackA Slack community for Clojure developers to share knowledge, ask questions, and collaborate on projects.
clojuredocsA community-powered documentation and example repository for Clojure.
clojure-docComprehensive documentation and tutorials for learning and using Clojure.
The Clojure ToolboxA categorized directory of libraries and tools for Clojure.
ZEEF/ClojureA curated collection of Clojure resources and links.
+ ## Conclusion \ No newline at end of file From 8623b00e7bde3d9da19929ad008857034443220e Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:19:21 +0530 Subject: [PATCH 12/22] Added Youtube resources --- Programming Languages/Clojure/readme.md | 50 ++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 2 deletions(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index a862f56e..4fc6de33 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -12,12 +12,13 @@ This currated collection of resources are fairly comprehensive and covers variou ## Table of Contents - [Roadmap](#roadmap) -- [Tutorial](#tutorial) +- [Clojure](#clojure-1) - [Introduction](#introduction) - [Fundamentals](#fundamentals) - [Collections](#collections) - [Namespaces and Libraries](#namespaces-and-libraries) - [Editors and Environment Setup](#editors-and-environment-setup) +- [Youtube](#youtube) - [Books](#books) - [Communities](#communities) - [Websites](#websites) @@ -30,7 +31,7 @@ This currated collection of resources are fairly comprehensive and covers variou -### Tutorial +### Clojure > ### Introduction @@ -203,6 +204,7 @@ This currated collection of resources are fairly comprehensive and covers variou ### Editors and Environment Setup +> @@ -239,7 +241,50 @@ This currated collection of resources are fairly comprehensive and covers variou
+### Youtube +> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Misophistful's channelUnderstand concepts such as list comprehension, threading macros, generative testing, destructuring, core.match, and introductions to Light Table, Datomic, and Game development with Clojure.
Fred Overflow's channelIntroductions to Functional programming and TDD with Clojure.
Clojure Pills screencastIntroduction to Clojure one function at a time.
Clojure Pills screencastFun and beginner-friendly content related to the overall Clojure ecosystem.
Data persistence with Postgres, Clojure and JDBCFocus on data persistence using Postgres, Clojure, and JDBC.
Clojure Tutorials by Timothy BaldridgeAdvanced videos on core.async, transducers, transients, logic programming, and a "Function of the day" series.
Clojure koans videosThe author guides you through the Koans from clojurekoans.com.
Clojure for the WebA great video about how to start using Clojure for the web.
+ ### Books +> @@ -321,6 +366,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Websites +> From b0241d49e7ff4767dc3f54143dfdee81eeffb512 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:25:15 +0530 Subject: [PATCH 13/22] added courses --- Programming Languages/Clojure/readme.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 4fc6de33..da61e358 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -329,7 +329,23 @@ This currated collection of resources are fairly comprehensive and covers variou
+### Courses +> + + + + + + + + + + + + + +
Resource NameDescription
Alura Clojure courseAlura is a paid platform for learning technologies, aimed at Portuguese-Brazilian speakers.
Building Microservices with ClojureLearn to set up, build, and deploy microservices with Clojure using the Pedestal library. The course is in video format.
### Communities > From 70b21a342d4ba02e6a585d764c8e01c7f8a356fe Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:28:55 +0530 Subject: [PATCH 14/22] added databases --- Programming Languages/Clojure/readme.md | 83 +++++++++++++++++++++++++ 1 file changed, 83 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index da61e358..f5fa1706 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -18,6 +18,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Collections](#collections) - [Namespaces and Libraries](#namespaces-and-libraries) - [Editors and Environment Setup](#editors-and-environment-setup) +- [Database](#database) - [Youtube](#youtube) - [Books](#books) - [Communities](#communities) @@ -241,6 +242,88 @@ This currated collection of resources are fairly comprehensive and covers variou +### Database +> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
DatomicDatomic is a database with an emphasis on immutability and time.
xtdbxtdb is a bitemporal database for SQL, Datalog & graph queries.
DatahikeDatahike is a durable, immutable, append-only database with time-traveling queries.
DatascriptDatascript is an immutable in-memory database and Datalog query engine in ClojureScript.
DatalevinDatalevin is a distributed database designed to support a high volume of concurrent writes and reads.
next.jdbcnext.jdbc is a Clojure wrapper for JDBC, providing a simpler, more idiomatic way to interact with databases.
clojure.java.jdbcclojure.java.jdbc is a low-level JDBC wrapper for Clojure, providing direct access to SQL operations.
clojure.jdbcclojure.jdbc is a high-level JDBC library for Clojure, providing a more functional approach to database operations.
cravendbcravendb is a Clojure client for RavenDB, a distributed document database.
MongerMonger is a MongoDB driver for Clojure, providing a simple and idiomatic way to interact with MongoDB.
MongloriousMonglorious is a MongoDB driver for Clojure, built on top of the official MongoDB Java driver.
clj-rethinkdbclj-rethinkdb is a RethinkDB driver for Clojure, providing a simple and idiomatic way to interact with RethinkDB.
ReviseRevise is a RethinkDB client for Clojure, designed to be fast, efficient, and easy to use.
SpandexSpandex is an ElasticSearch client for Clojure, providing a high-level abstraction over the ElasticSearch REST API.
ElastischElastisch is a comprehensive ElasticSearch client for Clojure, providing a wide range of features and utilities.
neoconsneocons is a Neo4j client for Clojure, providing a simple and idiomatic way to interact with Neo4j.
AliaAlia is a Cassandra client for Clojure, offering a flexible and efficient way to work with Cassandra databases.
aerospike-cljaerospike-clj is an Aerospike client for Clojure, providing seamless integration +
+ ### Youtube > From 637d1d95a6adf84f8f1bc644092f3325c01c8da6 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:31:32 +0530 Subject: [PATCH 15/22] added testing --- Programming Languages/Clojure/readme.md | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index f5fa1706..820f489f 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -19,6 +19,9 @@ This currated collection of resources are fairly comprehensive and covers variou - [Namespaces and Libraries](#namespaces-and-libraries) - [Editors and Environment Setup](#editors-and-environment-setup) - [Database](#database) +- [Testing and Debugging](#testing-and-debugging) + - [Testing](#testing) + - [Debugging](#debugging) - [Youtube](#youtube) - [Books](#books) - [Communities](#communities) @@ -324,6 +327,41 @@ This currated collection of resources are fairly comprehensive and covers variou +### Testing and Debugging +> + +### Testing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
ExpectationsExpectations is a minimalist, expressive, extensible testing framework for Clojure and ClojureScript.
MidjeMidje is a testing framework for Clojure that enables a more flexible, readable, and enjoyable approach to testing.
test-doublestest-doubles is a library for creating test doubles in Clojure, including mocks, stubs, spies, and fakes.
kaochakaocha is a next-generation test runner for Clojure, designed for simplicity, speed, and extensibility.
StateFlowStateFlow is a property-based testing library for Clojure, providing powerful tools for specifying and testing stateful systems.
DatestDatest is a lightweight, yet powerful testing library for Clojure, offering a simple and intuitive way to write and run tests.
+ ### Youtube > From 118307040e549c867bdff0750ae724dbf76c1c1a Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:33:40 +0530 Subject: [PATCH 16/22] added debugging --- Programming Languages/Clojure/readme.md | 73 +++++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 820f489f..f0ba9dd7 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -362,6 +362,79 @@ This currated collection of resources are fairly comprehensive and covers variou +### Debugging + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
flow-storm-debuggerA visual debugger for Clojure, providing powerful tools for inspecting and debugging running code.
playbackplayback is a tool for recording and replaying execution traces in Clojure, enabling easy debugging and analysis of program behavior.
tools.tracetools.trace is a library for tracing function calls in Clojure, allowing developers to observe and analyze program execution.
debuggerdebugger is a simple debugging tool for Clojure, providing basic features for inspecting and stepping through code.
debug-repldebug-repl is a Clojure REPL with enhanced debugging capabilities, allowing developers to interactively debug code.
ritzritz is a comprehensive debugging toolkit for Clojure, providing a range of tools for inspecting, tracing, and debugging code.
redlredl is a lightweight debugging library for Clojure, offering simple tools for inspecting and evaluating code in the REPL.
limit-breaklimit-break is a debugging library for Clojure, providing tools for tracing and inspecting function calls.
spyscopespyscope is a library for visualizing data flow in Clojure, helping developers understand and debug complex data transformations.
aprintaprint is a library for pretty-printing Clojure data structures, making it easier to inspect and debug complex data.
packed-printerpacked-printer is a library for compactly printing Clojure data structures, useful for debugging and inspecting large data sets.
prettypretty is a library for pretty-printing Clojure data structures with customizable formatting options.
proneprone is a debugging library for Clojure, providing tools for inspecting and handling exceptions in development and production environments.
figwheelfigwheel is a live reloading tool for ClojureScript development, allowing developers to see changes in their code instantly as they edit.
ultraultra is a comprehensive debugging tool for ClojureScript development, providing a range of features for inspecting, tracing, and profiling code.
mate-cljmate-clj is a debugging toolkit for Clojure, providing tools for tracing, inspecting, and debugging code in development and production environments.
+ ### Youtube > From 1b94a1a92182da233d9247cdfe2f13d1993547df Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:35:08 +0530 Subject: [PATCH 17/22] update --- Programming Languages/Clojure/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index f0ba9dd7..c9907039 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -24,6 +24,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Debugging](#debugging) - [Youtube](#youtube) - [Books](#books) +- [Courses](#courses) - [Communities](#communities) - [Websites](#websites) - [Conclusion](#conclusion) From eb22c801c90bd5a0eee396aac59186b031d160a4 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:40:07 +0530 Subject: [PATCH 18/22] update --- Programming Languages/Clojure/readme.md | 53 ++++++++++++++++++++++--- 1 file changed, 47 insertions(+), 6 deletions(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index c9907039..e22cbcc6 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -11,7 +11,6 @@ This currated collection of resources are fairly comprehensive and covers variou ## Table of Contents -- [Roadmap](#roadmap) - [Clojure](#clojure-1) - [Introduction](#introduction) - [Fundamentals](#fundamentals) @@ -19,6 +18,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Namespaces and Libraries](#namespaces-and-libraries) - [Editors and Environment Setup](#editors-and-environment-setup) - [Database](#database) +- [Data Validation](#data-validation) - [Testing and Debugging](#testing-and-debugging) - [Testing](#testing) - [Debugging](#debugging) @@ -31,11 +31,6 @@ This currated collection of resources are fairly comprehensive and covers variou -### Roadmap -> - - - ### Clojure > @@ -328,6 +323,52 @@ This currated collection of resources are fairly comprehensive and covers variou +### Data Validation +> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
GuardrailsGuardrails is a data validation library for Clojure, providing tools for defining and enforcing data schemas.
MalliMalli is a data validation library for Clojure, offering a concise syntax for defining and validating complex data structures.
ValidateurValidateur is a library for data validation in Clojure, providing a range of built-in validators and support for custom validation rules.
Prismatic's schemaPrismatic's schema is a data validation and specification library for Clojure, allowing developers to define and validate data schemas.
BouncerBouncer is a data validation library for Clojure, providing tools for defining and enforcing data validation rules.
clovaclova is a data validation library for Clojure, offering a simple and expressive syntax for defining and validating data structures.
OrchestraOrchestra is a library for data validation and transformation in Clojure, providing tools for defining complex validation rules.
structstruct is a data validation library for Clojure, offering tools for defining and validating data structures with a focus on performance and simplicity.
domaintypesdomaintypes is a library for defining and validating domain-specific data types in Clojure, providing tools for ensuring data integrity and consistency.
+ ### Testing and Debugging > From 5ba78eec03fa849f68d0cc01f4dfb3ff7cbc87e7 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:41:46 +0530 Subject: [PATCH 19/22] added REPL --- Programming Languages/Clojure/readme.md | 40 +++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index e22cbcc6..58cafb4d 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -29,8 +29,6 @@ This currated collection of resources are fairly comprehensive and covers variou - [Websites](#websites) - [Conclusion](#conclusion) - - ### Clojure > @@ -241,6 +239,44 @@ This currated collection of resources are fairly comprehensive and covers variou +### Programming at the REPL +> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
IntroductionAn introduction to programming at the REPL (Read-Eval-Print Loop) in Clojure, explaining its importance and benefits.
Launching a basic REPLA guide on how to launch a basic REPL in Clojure, providing step-by-step instructions for setting it up.
Basic UsageExplains the basic usage of the REPL in Clojure, covering evaluation, printing results, and interacting with expressions.
Data Visualization at the REPLGuidance on visualizing data at the REPL in Clojure, including techniques for displaying data structures and results.
Navigating namespacesExplains how to navigate namespaces at the REPL in Clojure, covering techniques for exploring and managing namespaces.
Enhancing your REPL workflowProvides tips and techniques for enhancing your workflow at the REPL in Clojure, including customization and productivity tools.
Guidelines for REPL-Aided DevelopmentOffers guidelines and best practices for leveraging the REPL for development in Clojure, covering topics such as testing and debugging.
+ ### Database > From 4e8e51366640951181392053f082cccb3e3e96a3 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:42:25 +0530 Subject: [PATCH 20/22] Update --- Programming Languages/Clojure/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 58cafb4d..96f0348c 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -17,6 +17,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Collections](#collections) - [Namespaces and Libraries](#namespaces-and-libraries) - [Editors and Environment Setup](#editors-and-environment-setup) +- [Programming at the REPL](#programming-at-the-repl) - [Database](#database) - [Data Validation](#data-validation) - [Testing and Debugging](#testing-and-debugging) From 538b445e15d7f7edc9309128f1d712fa517fa455 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:47:28 +0530 Subject: [PATCH 21/22] Update --- Programming Languages/Clojure/readme.md | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 96f0348c..0a2e2e57 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -31,7 +31,7 @@ This currated collection of resources are fairly comprehensive and covers variou - [Conclusion](#conclusion) ### Clojure -> +> This currated collection of resources are fairly comprehensive and covers various functions involved in Clojure. ### Introduction @@ -203,7 +203,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Editors and Environment Setup -> +> Setting up Clojure development environments using various editors like Cursive, Emacs, Vim, VS Code, and Sublime. @@ -241,7 +241,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Programming at the REPL -> +> Provides guides on programming at the REPL, including basic usage, data visualization, navigating namespaces, and enhancing workflow. @@ -279,7 +279,8 @@ This currated collection of resources are fairly comprehensive and covers variou
### Database -> +> Introduces various databases and libraries available for data storage and manipulation in Clojure. + @@ -361,7 +362,7 @@ This currated collection of resources are fairly comprehensive and covers variou
Resource Name
### Data Validation -> +> Presents tools and libraries for validating data in Clojure applications. @@ -407,7 +408,8 @@ This currated collection of resources are fairly comprehensive and covers variou
### Testing and Debugging -> +> Resources for testing and debugging Clojure code, including libraries, tools, and techniques. + ### Testing @@ -515,7 +517,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Youtube -> +> Curated list of YouTube channels and videos for learning Clojure concepts and practices. @@ -557,7 +559,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Books -> +> Recommendations for books covering Clojure programming, ranging from beginner to advanced levels. @@ -603,7 +605,8 @@ This currated collection of resources are fairly comprehensive and covers variou
### Courses -> +> Online courses and tutorials for learning Clojure programming. + @@ -621,7 +624,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Communities -> +>Platforms and forums where Clojure developers can engage, seek help, and share knowledge. @@ -655,7 +658,7 @@ This currated collection of resources are fairly comprehensive and covers variou
### Websites -> +>Useful websites, tutorials, and platforms for learning Clojure and accessing related resources. From 3ea553f214d79c6afb561f45ba79927aafa38990 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Tue, 11 Jun 2024 13:48:49 +0530 Subject: [PATCH 22/22] Update readme.md --- Programming Languages/Clojure/readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Programming Languages/Clojure/readme.md b/Programming Languages/Clojure/readme.md index 0a2e2e57..017953aa 100644 --- a/Programming Languages/Clojure/readme.md +++ b/Programming Languages/Clojure/readme.md @@ -715,4 +715,12 @@ This currated collection of resources are fairly comprehensive and covers variou
-## Conclusion \ No newline at end of file +## Conclusion + +Clojure offers a powerful and expressive programming language for building robust and scalable applications. With its functional programming paradigm, extensive libraries, and strong community support, Clojure is an excellent choice for both beginners and experienced developers alike. + +Whether you're just starting with Clojure or looking to enhance your skills, the resources provided in this README cover a wide range of topics, from the fundamentals to advanced techniques, testing, debugging, and more. Additionally, the supportive communities, online courses, books, and YouTube channels offer ample opportunities for learning and growth in the Clojure ecosystem. + +These resources help you embark on your journey with Clojure and empower you to build innovative and efficient solutions. + +Happy coding !! \ No newline at end of file