rsc3
clojure
Our great sponsors
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
rsc3
-
Racket for Computer Music?
I don’t know much about music but rsc looks like a good option and exists for Racket and Chez: https://github.com/khafatech/rsc3/blob/master/README.md
clojure
-
Why I decided to learn (and teach) Clojure
Lisp is not a programming language, but a family of languages with many dialects. The most famous dialects include Common Lisp, Clojure, Scheme and Racket. So after deciding that I was going to learn Lisp, I had to choose one of its dialects.
-
Clojure Turns 15 panel discussion video
I thought you might be trolling. But then when I looked at the Clojure repo on Github https://github.com/clojure/clojure the last commit was 2 months back. There is some merit in your arguments.
-
Advent of Clojure - looking for feedback
1 - partial is defining a new function that ignores the type hints from func, and would introduce boxing. It also can introduce a performance hit for (remaining) argument arities > 3, since it automatically invokes a varargs variant instead of providing a concrete arity. With the varargs version, in profiling you may see RestFn showing up on hot paths, which is the varargs implementation having to munge seqs every invocation instead of being able to use concrete args matching discrete arities. Depending on the frequency of invocation this may impact performance.
-
The Holy Trinity of Clojure
I love Clojure, but the Java source is oddly formatted which I never understood: https://github.com/clojure/clojure/blob/527b330045ef35b47a96...
-
Is there any currently working way to import a local Java .jar library into a Clojure project?
I'm using Leiningen to set up the project, so it seems that the guide on clojure.org does not apply. And in the Leiningen Docs I couldn't find anything...
-
Is Clojure suitable for my use cases?
You can see all the changes (and two security fixes) for Clojure versions here: https://github.com/clojure/clojure/blob/master/changes.md
- Ask HN: Is Clojure Dead?
-
A language without operators
Lisp and Forth and all of their derivatives like Clojure and Factor:
-
Clojure needs a Rails, but not for the reason you think
clojure.math is primarily a wrapper for java.lang.Math. I wrote some code to generate it from the Java reflection info (~100 LOC). And then I wrote some customization to the automatic stuff to make it how we wanted it (~150 LOC). The work doing these parts of it were probably a few days. Code here: https://github.com/clojure/clojure/blob/master/codegen/gen_math.clj
-
Ask HN: What are some 'cool' but obscure data structures you know about?
Huet's zipper. https://en.wikipedia.org/wiki/Zipper_(data_structure).
One zipper value represents a regular tree of data, but from the perspective of the "current position". There are traversal operations that take a zipper value and return the same tree from the perspective of an element above/beside/below the current position, and there are operations that return the same structure but with the current element changed, or items deleted or inserted.
Huet's paper is an easy read if you've been exposed to OCaml or similar languages: https://www.st.cs.uni-saarland.de/edu/seminare/2005/advanced... . His "returned glove" metaphor is what made it click for me.
Clojure includes an implementation of Huet's zippers https://github.com/clojure/clojure/blob/master/src/clj/cloju... that is <300 lines of code. It's very, very clever and broadly useful for dealing with XML or other nested data structures.
What are some alternatives?
racket - The Racket repository
malli - High-performance Data-Driven Data Specification Library for Clojure/Script.
criterium - Benchmarking library for clojure
scala - Scala 2 compiler and standard library. For bugs, see scala/bug
nbb - Scripting in Clojure on Node.js using SCI
scope-capture - Project your Clojure(Script) REPL into the same context as your code when it ran
rust - Empowering everyone to build reliable and efficient software.
trufflesqueak - A Squeak/Smalltalk VM and Polyglot Programming Environment for the GraalVM.
Fulguris - ⚡Sparkling Android Web Browser⚡
Elixir - Elixir is a dynamic, functional language designed for building scalable and maintainable applications
hissp - It's Python with a Lissp.
ClojureDart - A port of Clojure that compiles to Dart