Posts tagged elixir

Vincent Nguyen 26 August 2017

When I start to learn and work on Elixir, I really impressive about Ecto.

Ecto is a database wrapper and language integrated query for Elixir.

My personal feeling is Ecto is not magically like ActiveRecord. For example, Ecto doesn't support Lazy...

Vincent Nguyen 28 March 2017

Import and Alias

To call a function from another module, you have to reference the module name, sometime this can be cumbersome. If your module often calls functions from another module, let's use import other module into your own.

    defmodule...
Vincent Nguyen 19 March 2017

Yo! It's time to start learning new languages. Elixir is a language that I started to learn. Below are few notes:

  • Everything in Elixir is an expression that has a return value.

  • Module is a collection of functions, something like...