4ever-clojure VS edn

Compare 4ever-clojure vs edn and see what are their differences.

4ever-clojure

Pure cljs version of 4clojure, meant to run forever! (by oxalorg)

edn

Extensible Data Notation (by edn-format)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
4ever-clojure edn
17 34
220 2,567
- 0.7%
4.1 0.0
2 months ago over 2 years ago
Clojure
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.

4ever-clojure

Posts with mentions or reviews of 4ever-clojure. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-05.
  • Old but not rusty - Learning Clojure?
    1 project | /r/Clojure | 1 Apr 2023
  • New to clojure, where to start?
    2 projects | /r/Clojure | 5 Feb 2023
    I found this to be an awesome bridge between reading about the theory and actually writing code that works: https://4clojure.oxal.org/
  • Babashka Babooka: Write Command Line Clojure
    1 project | news.ycombinator.com | 5 Jan 2023
    This is for general Clojure, I’ve had a lot of fun and learned a lot from it (and the original): https://4clojure.oxal.org/
  • Change a variable inside cycle
    1 project | /r/Clojure | 2 Jan 2023
    It's normal to apply methodology like this to clojure when transitioning from other languages. When I was first learning I did a bunch of exercises on 4clojure and my first attempts looked like this. Then I found loop from the standard library and I understood immutability but relied on loop to do anything to collections of things. Eventually, after looking at the answers, I started to get familiar with the standard library. Then my solutions started to look like the two line solution above.
  • BTowersCoding/ctrain: do 4Clojure (RIP) exercises in the terminal
    3 projects | /r/Clojure | 15 Dec 2022
    4Clojure is here now: https://4clojure.oxal.org/. It runs locally in your browser.
  • The best Clojure learning path
    2 projects | /r/Clojure | 8 Nov 2022
    Go to https://4clojure.oxal.org/ and solve some stuff. And don't learn any theory. You're thinking how a C# developer thinks and you think you need to learn some kind of packages by heart or something.
  • Building a Startup on Clojure
    11 projects | news.ycombinator.com | 4 Oct 2022
    I learned by reading through a book, then working through problems on https://4clojure.oxal.org/. If you've got JS experience it won't take too much effort to pick up. Don't get too carried away with forming the perfect tail recursive pure functional monad or whatever. Get into just doing what you're trying to do quickly, then after you're competent, read other people's code to correct your style.
  • learning Clojure
    1 project | /r/Clojure | 7 Sep 2022
    I'm only a couple months into learning Clojure too, but I found solving a problem myself and then seeing others solutions on this website https://4clojure.oxal.org/ was invaluable for learning to think like a clojurist.
  • Anything like 4clojure for Haskell?
    2 projects | /r/haskell | 4 Sep 2022
    I'm trying to learn Haskell and found https://4clojure.oxal.org/ very helpful. https://tryhaskell.org/ was also nice, but it is limited in scope as compared to its Clojure equivalent.
  • 'Interactive Problems' section in the side bar contains a bad link to '4clojure.'
    1 project | /r/Clojure | 11 Jun 2022
    The actual address is https://4clojure.oxal.org/

edn

Posts with mentions or reviews of edn. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-03.
  • Apple releases Pkl – onfiguration as code language
    14 projects | news.ycombinator.com | 3 Feb 2024
    > was utterly surprised how no one ever apparently has thought to create a configuration/templating system that's basically a fancy library on top of Scheme.

    There's Clojure's extensible data notation: https://github.com/edn-format/edn

  • Why the fuck are we templating YAML? (2019)
    27 projects | news.ycombinator.com | 23 Jan 2024
  • I made a basic python client and ORM for XTDB
    3 projects | /r/Python | 11 Dec 2023
    A thin language layer around edn/datalog, the query language
  • What Is Wrong with TOML?
    15 projects | news.ycombinator.com | 13 Sep 2023
    EDN (Extensible Data Notation) is a subset of Clojure: https://github.com/edn-format/edn

    It is:

    - Streamable

    - Extensible

    - Whitespace-insensitive, but there are formatting conventions for readability

  • The real reason JSON has no comments
    6 projects | /r/ProgrammerHumor | 16 May 2023
    To begin with, EDN is somewhat like the JSON of Clojure. And regarding the code is data/data is code nature of Clojure, it is Clojure. It doesn't have some of the vagaries of JSON, and it is also extensible.
  • Ron: Rusty Object Notation
    10 projects | news.ycombinator.com | 23 Apr 2023
    Alien is not a reason something is bad, just that's it's unusual. JSON was a bit alien when it first arrived as well, as everyone was used to XML at the time.

    `{num 5, val 4}` looks fine to me, but we can do even better! We already know objects/maps are always in pairs, so we don't really need that comma either. Just do `{num 5 val 4}` and we save yet another unnecessary characters.

    Of course, I didn't come up with this format myself, what I actually want JSON to be is EDN (https://github.com/edn-format/edn) which is a standalone format but also directly used in Clojure, so it already exists inside a programming language and works very well. There keys are strings though, so you example would end up being `{"num" 5 "val" 5 "person" var}`, where commas are optional.

  • JSON vs. XML with Douglas Crockford
    4 projects | news.ycombinator.com | 6 Apr 2023
    I just checked out the spec, and it gets pretty ugly in the Table section. A lot of the json examples are both shorter and IMO more precise. Stuff that’s not allowed with [table] is allowed with [[table]], and it’s confusing to understand what level of depth I’m at.

    I’ll take edn over any of “em. https://github.com/edn-format/edn

  • Taming the Time: how to install & develop with XTDB
    5 projects | dev.to | 5 Apr 2023
    As XT is written in Clojure and it natively supports Clojure’s data types, we were not satisfied with available JSON types and decided to give EDN a try - that way we would have way more supported types:
  • Design patterns are a solution to the problem OOP itself creates
    1 project | /r/ProgrammerHumor | 11 Feb 2023
    Compare the nightmare that is pickling with how simple it is to serialize pure data with edn in clojure. What ends up happening is people passing around JSONs or whatever and writing parsing/encoding code at each end, which makes things unnecessarily more complex, and dangerous, and error prone, and boring, etc...
  • The YAML Document from Hell
    19 projects | news.ycombinator.com | 12 Jan 2023

What are some alternatives?

When comparing 4ever-clojure and edn you can also consider the following projects:

rich4clojure - Practice Clojure using Interactive Programming in your editor

json - JSON for Modern C++

datascript - Immutable database and Datalog query engine for Clojure, ClojureScript and JS

EPOE-Forked - Github repository for EPOE-Forked

reagent - A minimalistic ClojureScript interface to React.js

jq - Command-line JSON processor [Moved to: https://github.com/jqlang/jq]

logseq - A local-first, non-linear, outliner notebook for organizing and sharing your personal knowledge base. Use it to organize your todo list, to write your journals, or to record your unique life.

yamllint - A linter for YAML files.

clojure-by-example - An introduction to Clojure, for programmers who are new to Clojure.

dhall-lang - Maintainable configuration files

ultralisp - The software behind a Ultralisp.org Common Lisp repository

json - A tested JSON parser / serializer