Elixir is an open-source, dynamic, compiled, general purpose functional programming language.
I'd like to set the title of my app in my/config/config.exs file: config :my, My.Endpoint, url: […
elixir phoenix-frameworkIn Ruby, if one were defining constants in classes, they would define them using all caps. For example: class MyClass …
elixirI'm just learning Phoenix and Elixir and I'm coming from Ruby/Rails where I work in the REPL using pry …
elixir phoenix-framework ecto iexI'd like to know what exactly a method name is in elixir: array = [1,2,3] module_name = :lists method_name = :nth # this …
erlang metaprogramming elixirI want to print out a string like IO.puts("Count: #{my_count}") But I want leading zeroes in the …
elixirHow do you specify a function as a parameter to another function in Elixir? For instance, pass foo to bar …
elixirHow to find posts in given List of ids? This isn't working: posts = Post |> where(id: [1, 2]) |> Repo.all …
elixir phoenix-framework ectoIn the same way that we can get any object (or class) in Ruby to list its methods, is there …
elixirHow can we easily time function calls in Elixir? Is there any hidden switch in IEx to enable this?
function timing elixirI am trying to figure out a way to check if the params hash in a Phoenix app (using Elixir) …
elixir phoenix-framework ecto