theBeamBook VS ebook-1

Compare theBeamBook vs ebook-1 and see what are their differences.

theBeamBook

A description of the Erlang Runtime System ERTS and the virtual Machine BEAM. (by happi)

ebook-1

A collection of classic computer science books from Internet (by lancetw)
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
theBeamBook ebook-1
7 1
3,044 3,512
- -
5.8 10.0
about 1 month ago over 8 years ago
Erlang
Creative Commons Attribution 4.0 -
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.

theBeamBook

Posts with mentions or reviews of theBeamBook. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-29.
  • Ask HN: Programming Courses for Experienced Coders?
    10 projects | news.ycombinator.com | 29 Dec 2023
  • Erlang/OTP: Garbage Collector
    2 projects | news.ycombinator.com | 1 Apr 2023
    It's my understanding the state of the art in observing JVM-based applications is a combination of using thread dumps, gc logs, thread activity visualizations. Thread dumps give us a snapshot of the the name of the thread, its current running state (waiting, blocked, etc), and the stacktrace of the work its currently doing. GC logs give you a record of when and how much garbage was collected and Thread activity visualizations show you the timeline of thread moving between different running states.

    The BEAM gives you the ability to see the bottlenecks in your system, via the REPL (in real time!)

    It has world-class introspection built in that gives you the power to observe and manipulate your running application through a REPL.

    The BEAM has hundreds of features like this, because the BEAM is more of an OS than and VM.

    I get it, you're a JVM expert, but the BEAM is more than a check list of optimizations that on paper the JVM can do.

    I strongly suggest, before the next time you comment on an BEAM VM vs.JVM debate, please consider watching https://www.youtube.com/watch?v=JvBT4XBdoUE, "The Soul of Erlang and Elixir • Sasa Juric • GOTO 2019"

    and reading https://github.com/happi/theBeamBook " an attempt to document the internals of the Erlang runtime system and the Erlang virtual machine known as the BEAM."

    Best of luck!

  • Lunatic is an Erlang-inspired runtime for WebAssembly
    12 projects | news.ycombinator.com | 30 Nov 2022
    it does. values are immutable in the BEAM, not at language level.

    The impact of bugs is minimized by compartmentalization. This is done from the lowest level where each data structure is separate and immutable [1]

    But you can simulate mutability with stateful processes.

    Directly from Joe Armstrong: https://joearms.github.io/published/2013-11-21-My-favorite-e...

    [1] https://github.com/happi/theBeamBook/blob/3971e8e2d09e367670...

  • Log 2022-10-19
    1 project | /r/u_vovs03 | 19 Oct 2022
    theBeamBook repo
  • Will project loom make java concurrency comparable to erlang's?
    1 project | /r/java | 8 Jul 2022
    On a side-note, if you're really interested in grokking the BEAM itself, https://github.com/happi/theBeamBook is a very good resource that delves deeper into the internal working of BEAM. Regardless of whether you use it, it's a fun read!
  • How are processes scheduled
    1 project | /r/elixir | 20 Aug 2021
    Check the https://github.com/happi/theBeamBook/blob/master/chapters/scheduling.asciidoc
  • What is your opinion on Ada? Have you used it for embedded development? When did you use it?
    1 project | /r/embedded | 18 Mar 2021
    Did you find this? As far as I know, it is the best resource: https://github.com/happi/theBeamBook

ebook-1

Posts with mentions or reviews of ebook-1. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-29.
  • Ask HN: Programming Courses for Experienced Coders?
    10 projects | news.ycombinator.com | 29 Dec 2023
    Hello, recently I've enjoyed Casey Muratori's Performance-Aware Programming course[0]. You could read Algorithms for Modern Hardware[1] to learn similar set of stuff though. Casey's course is aimed at bringing beginners all the way to a nearly-industry-leading understanding of performance issues while the book assumes a bit more knowledge, but I think a lot of people have trouble getting into this stuff using a book if they don't have related experience.

    I've also found Hacker's Delight Second Edition[2] to be a useful reference, and I really wish that I would get around to reading What Every Programmer Should Know About Memory[3] in full, because I end up reading a bunch of other things[4] to learn stuff that's surely in there.

    [0]: https://www.computerenhance.com/p/welcome-to-the-performance...

    [1]: https://en.algorithmica.org/hpc/

    [2]: https://github.com/lancetw/ebook-1/blob/80eccb7f59bf102586ba...

    [3]: https://people.freebsd.org/~lstewart/articles/cpumemory.pdf

    [4]: https://danluu.com/3c-conflict/

What are some alternatives?

When comparing theBeamBook and ebook-1 you can also consider the following projects:

chat - A telnet chat server

Exercism - Scala Exercises - Crowd-sourced code mentorship. Practice having thoughtful conversations about code.

amh-code - Complete implementations from "Algorithms for Modern Hardware"