hnlprog
As a beginner to both Elixir and programming, it was very helpful that I could easily find things in the Elixir docs.
Do you know of any languages that are similarly documented, or even better in a different way?
With Elixir, I was able to do find everything on a single page (ex. click on a module, see the list of functions, search for a function all in the sidebar).
I found the Ruby documentation to be similar. JS, I could always find MDN pages using Google (less ideal). With Swift, Haskell, and C(++), both finding things and parsing information (and examples, if any) were difficult.
Sorry if this is a bad question! I just really want to have that experience again with another language (or library) for a weekend or few.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
Clojure has very good docs, but have in mind that they also expect some preliminary familiarity with functional programming, and maybe a basic understanding of LISP in general. Still, their docs are usually very good.
Lua docs are also pretty good, with good reference, albeit a bit wordy and verbosive for my taste – but it helps facilitate understanding for more novice programmers which is something that must be encouraged.
Apart from Elixir, Clojure and Lua, very few languages have such excellent docs like Rust. Rust is very complex and very big but they have docs and even free books with tons of exercises so you can become a master, if you can spare the time and energy.
hnlprog
I was interested in Clojure so this is very cool to hear! I remember looking at the Reference section on Clojure.org and being confused, but now I realize I should have been looking at the API section instead.
I remember I had some trouble navigating and finding things on the Lua docs, but that was a long time ago, so I’ll check it out again.
The Rust docs on first look seem a bit intimidating, but that probably has more to do with the language being complex than with the docs.
Thank you for the insight!
dimitarvp
Forgot to mention.
In the family of LISP languages, Racket is extremely beginner-friendly, definitely check it out.
code-shoily
Clojure. Go. Dart.
hauleth
Not a language, but also contain language documentation
sabiwara
I think Elm deserves to be mentioned here as well. While it is only for the front-end, it is well documented with a special focus to avoid relying on preliminary knowledge, and therefore is really nice for beginners.
I think it can offer an interesting entry point to functional programming, and programming in general (not many advanced concepts to learn).