Almost one year ago on the 28th of May 2023 I tried during a holiday to write a game of life implementation in Elixir. As a little bit of finger exercise to write also that algorithm as other programmers do that from time to time as a way of “golfing”.
My intention was to have something moving on the screen, not that it’s performant or even absolutely right. I wanted to model the game board using Erlang processes, so each cell is for absolutely no reason it’s own process to see if that actually works.
Why did I do that? Because I found on the web some other blog entry, which described how that other person used processes to inefficiently implement the game of life using processes. In scientific terms, I wanted to “reproduce” the findings. It was enjoyable, sometimes programs don’t need to be fancy, beautiful.
The interesting point also about that neat exercise is that I could back then speak with some fellow programmers, which I encountered in some social occasions. If I encountered a Rust fanboi, then the code was always bad, because it was not written in Rust. If the programmer was from a different programming language other than Rust, then the reaction was a little less sect-like, they then maybe criticized the speed of the code or were critical of Elixir as a language, for basically no reason other than they did not know Elixir. Maybe it’s the environment of Vienna, were a lot of people work at companies which use a lot of PHP, Java, C#, C++ or maybe Python and thus look at anything which does not fall into those neat categories of programming languages as some kind of intellectual failure, as some kind of stigma of unworthiness of being a true programmer. I noticed that attitude also when it comes to Ruby, people think those who use Ruby have no technical reasons to use it, it’s slow, it’s dynamic, etc.
But when considering that Elixir has absolutely fine technical reasons to use it, mainly it’s pretty Erlang, that’s it. You use Elixir, because it fits into the aesthetics of Ruby and you could mix Ruby and Elixir in a company with no problems, people who come from the syntax of Ruby can more or less read Elixir and also in the other direction, the semantics is what is different. Also Elixir has an amazing documentation and testing support, it feels right and you don’t have hit your shin all the time for doing the most basic tasks like you do with other programming languages
Using Erlang for a project has the same reason why people use Java for a project, they want a big standard library, they want a long standing and stable VM which performs well in production, they want to use existing knowledge, etc.
Erlang is great for servers and distributed systems and this is also how current frameworks evolve more into. We programmers don’t want to lose a good night’s sleep over that a couple of processes have some locking issue in the middle of the night, because we did not anticipate some interprocess communication failures. And also we don’t want to maintain a solution for distributed caching, a message queue, a key-value database, etc. when all that stuff can be implemented using Erlang and the standard library.
But let’s get back to the code. I did decrease the board size today, to make it perform more fluently and increased the update frequency of the board. Maybe in the following days I’ll adapt it a little more again and see if I can test if the pattern it displays is really the game of life, according the unit tests I wrote last year, it should be doing the rules of the game. Hard to tell if the game performs really performs the rules, as one would need to be knowledgable in the game. And I don’t have any experience in “seeing” if the patterns really behave like the game of life. I can only say if the rules look like the rules of the game and that the transitions are like the game.
The implications for testing code are really interesting to me: Can I really tell by tests, if something is working?