Elixir is an open-source, dynamic, compiled, general purpose functional programming language.
I'm trying to print some debug information from one of my Controllers in my Phoenix app when the server is …
elixir phoenix-frameworkI have an upsert requirement, so I need to call a postgres stored procedure or use a common table expression. …
elixir ectoI'm rebuilding something in Elixir from some code I built in C#. It was pretty hacked together, but works perfectly (…
enumeration elixirWhat's the difference between use and import? use is a simple mechanism for using a given module into the current …
elixirI'm trying to convert a struct to a map to be able to clean all the nil values I'm currently …
dictionary struct elixir telegram-botI know its possible to create a struct via %User{ email: '[email protected]' }. But if I had a variable …
elixirHow to add (and remove) key-value pairs in an Elixir map? This does not work: map = %{a: 1, b: 2, c: 3} map[:…
elixirI need to be able to generate random url safe strings so I could use those in links (like in …
elixir phoenix-frameworkI mean a string is blank if it's empty or contains whitespaces only. For example, "", " " and "\n" are all blank. …
elixir phoenix-frameworkWhat would be an elegant way for converting a list of two item tuples like [{1,2},{3,4}] into the map %{1=>2, 3=>4}? …
elixir