Elixir is an open-source, dynamic, compiled, general purpose functional programming language.
What is the correct way to run an Elixir application? I'm creating a simple project by: mix new app and …
elixirI'm trying to format a Postgres date representation into a ISO 8601 string. I'm assuming that there is a Postgres function …
postgresql date elixir iso8601 ectoThis question is in the context of the Beam VM and the capabilities that it provides, not in the general …
erlang elixir otpI would like to assert list's size. Currently I do it as follows: assert devices = Repo.all from d in …
elixirI want to execute a program through my Elixir code. What is the method to call a shell command to …
elixirI'm currently learning Elixir by going through the OTP and mix tutorial on the elixir-lang website, and I'm having trouble …
elixir mixSo let's say I want to send a bunch of emails or recreate sitemap or whatever every 4 hours, how would …
elixir phoenix-frameworkI'm learning Elixir and wonder why it has two types of function definitions: functions defined in a module with def, …
erlang elixir{status, body} = File.read("/etc/hosts") if status == :ok do hosts = String.split body, "\n" hosts = Enum.map(hosts, fn(…
arrays list elixir