clojure-site
clojure-site copied to clipboard
clojure.org site
Keeping track of new tools releases would be much simpler if there were an RSS feed available on that page that was just new releases. I looked into adding that...
One of the most common requests we see from Clojure learners is for example real code bases to look at that demonstrate good style and usage. There are many good...
See the home page for Rust: https://www.rust-lang.org/ Try/clojure is a lovely project, but the casual browser of clojure.org won't know how to interpret "TryClojure provides a browser-based Clojure REPL" and...
This is a place where Clojure relies heavily on Java and having an overview of that would be very helpful * streams vs reader/writers * buffered and other kinds of...
https://clojure.org/guides/learn/namespaces and https://clojure.org/reference/namespaces have differently focused overviews of namespaces but leave out the linkage to how namespaces end up on the classpath (either via Clojure itself or your code or...
See https://groups.google.com/g/clojure/c/CCuIp_bZ-ZM/m/9yP41gt7wuoJ Rich wrote there that periods in keywords do not related to class resolving and therefore should be safe to use. The rule can be relaxed.
This ticket is to follow up on the plans for documentation that Alex confirmed in response to this Question on Ask Clojure https://ask.clojure.org/index.php/11032/are-there-plans-for-official-docs-rationale-and-guide-datafy
The [Deps and CLI Guide](https://clojure.org/guides/deps_and_cli) and the [Using Libs Reference](https://clojure.org/reference/libs) both talk about classpaths without ever introducing what they are or what they mean. In fact, not a lot of...
[That section](https://github.com/clojure/clojure-site/blob/62817f842df75e14cde72020782bee53cb17f95e/content/reference/deps_and_cli.adoc#aliases) ends with: "These Clojure tool subprocesses use data which can be read from aliases:" And no list is provided.
The way `clojure.core/partial` captures the _values_ of vars is not always apparent. A typical scenario: A user wants to write a predicate function for checking whether an object implements a...