curriculum
curriculum copied to clipboard
https://hexdocs.pm/kino/Kino.Video.html
Support the following syntax in Livebook to create an admonition block: ```elixir > #### Error {: .error} > > This syntax will render an error block ``` A few options...
Group reminders by user id. [%{user_id: 1}, %{user_id: 1}, %{user_id: 2}] -> %{1 => [%{user_id: 1}, %{user_id: 1}], 2 => [%{user_id: 2}]}
1 -> "a" -> "1a" "b" -> "1b" 2 -> "a" -> "2a" "b" -> "2b" vs {1, "a"} -> "1a" {1, "b"} -> "1b" {2, "a"} -> "2a" {2,...
Use of the `:let` attribute in HEEx components such as forms and table columns is abundant in the curriculum; yet nowhere in the curriculum is there an explanation on how...
input: correct and incorrect answers Original inspiration from @alena's game: ```elixir %{ instruction: "Numbers 3 or below", correct: [1, 2, 3], incorrect: [4, 5, 6] } ``` The result is...

