Skip to content

Instantly share code, notes, and snippets.

@zblanco
zblanco / getting_lazy_with_dataflow_graphs_in_elixir.livemd
Last active June 30, 2024 11:45
Getting Lazy with Dataflow Graphs in Elixir

Getting Lazy with Dataflow Graphs in Elixir

Intro

What do Tensorflow, Apache Airflow, Rule Engines, and Excel have in common?

Under the hood they all use DAGs to model data-flow dependencies of the program. Using graphs to model programs is great because you can modify the program at runtime. Lets talk about doing this in Elixir for great good.