agile
agile
committing
ecto
- returning a map instead of a struct
select: map(p, [:id, :name, :age])
- timestamps
- running multiple ecto commands
mix do deps.get, run hello.exs, ecto.migrate
forms
elixir
- piping to anonymous functions with arity > 2
- e.g.
&String.duplicate("a", &1)
- or anonymous fn
- e.g.
- csv handling
- csv handling 2