Elixir is an open-source, dynamic, compiled, general purpose functional programming language.
I have installed Erlang/OTP and Elixir, and compiled the HelloWorld program into a BEAM using the command: elixirc test.…
erlang elixirI have teams and each team has users, so there is a join table to link users to teams as …
elixir phoenix-framework ectoWhats the quickest way to see the number of entries in my database? I'd like to see the number of …
elixir phoenix-framework ectoIn Dave Thomas's book Programming Elixir he states "Elixir enforces immutable data" and goes on to say: In Elixir, once …
immutability elixirLately I've been doing some experiments with docker compose in order to deploy multiple collaborating microservices. I can see the …
architecture erlang docker elixir microservicesHow can I make Mix run only specific tests from my suite of tests? When running mix test all tests …
elixirI have a list: a = [1,2,4,5,6,7,8,9,9,88,88] In Python, it's simple to get last n items: a[-n:] Whats equivalent in Elixir?
elixirI've just started working Elixir & Phoenix today, i am trying to add Ecto as a mapper, but i'm having …
postgresql elixir ectoI'm deploying my first Phoenix Application, and I've specified the values of a variable in my Environment Files (dev.exs …
elixir phoenix-framework