Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 2.34 KB

README.md

File metadata and controls

31 lines (25 loc) · 2.34 KB

Notes on The Little Elixir & OTP Guidebook (by Benjamin Tan Wei Hao) and Elixir School.

Code for book's Metex weather app.

I urge you buy the liveBook version, where you can hear and see book read aloud.

The Little Elixir & OTP Guidebook

  • Chp 1: Elixir vs. Erlang. What's Elixir good/bad for? Preview of OTP behaviors.

Whirlwind Tour of Elixir:

Processes

  • Chp 3.1-3.2: Processes. Actor concurrency model. Building weather app. Running software tests.
  • Chp 3.3: Weather app worker: given a location, returns its temperature.
  • Chp 3.4: Creating processes for concurrency. Receiving/sending messages.
  • Chp 3.5: Collecting/Manipulating temperature results with another actor (a Coordinator).
  • Chp 3.6: Exercises. Program that spawns 2 processes that send each other ping and pong messages.

Elixir School