├── .gitattributes ├── amazon_athena_integration.livemd ├── ci_green_streak.livemd ├── launch_week_2 ├── cat.jpeg ├── database.sqlite ├── iris.csv ├── iris.parquet └── live.m4a ├── livebook_google_big_query.livemd ├── stack-overflow-survey └── 2024 │ ├── elixir-analysis-2024.livemd │ └── files │ ├── survey_results_public.csv │ └── survey_results_schema.csv ├── talks ├── alchemyconf │ ├── github_stars.livemd │ ├── livebook_proto │ │ ├── .formatter.exs │ │ ├── .gitignore │ │ ├── lib │ │ │ └── livebook_proto │ │ │ │ ├── client_connected.ex │ │ │ │ ├── environment_variable.ex │ │ │ │ ├── environment_variable_created.ex │ │ │ │ └── event.ex │ │ ├── mix.exs │ │ └── mix.lock │ ├── protobuf_websocket.livemd │ ├── teams_client.livemd │ └── teams_server.livemd ├── elixir-carajas │ └── elixir_at_elixir_carajas.livemd ├── elixir-conf-2024 │ ├── custom_ui_components.livemd │ ├── github_stars.livemd │ └── integration_with_elixir_app.livemd ├── elixirconf-us-2025 │ ├── github_stars.livemd │ ├── livebook_proto │ │ ├── .formatter.exs │ │ ├── .gitignore │ │ ├── lib │ │ │ └── livebook_proto │ │ │ │ ├── client_connected.ex │ │ │ │ ├── environment_variable.ex │ │ │ │ ├── environment_variable_created.ex │ │ │ │ └── event.ex │ │ ├── mix.exs │ │ └── mix.lock │ ├── protobuf_websocket.livemd │ ├── teams_client.livemd │ └── teams_server.livemd ├── elug-sp-2025-09 │ ├── github_stars.livemd │ ├── livebook_proto │ │ ├── .formatter.exs │ │ ├── .gitignore │ │ ├── lib │ │ │ └── livebook_proto │ │ │ │ ├── client_connected.ex │ │ │ │ ├── environment_variable.ex │ │ │ │ ├── environment_variable_created.ex │ │ │ │ └── event.ex │ │ ├── mix.exs │ │ └── mix.lock │ ├── protobuf_websocket.livemd │ ├── teams_client.livemd │ └── teams_server.livemd ├── poli_comp_talk │ └── elixir_at_poli_comp.livemd └── sorry-dave │ ├── ai_elixir_tools.livemd │ ├── distributed_elixir.livemd │ ├── fine_tune_demo.livemd │ └── inference_demo.livemd ├── whats_new_in_livebook_v0.10.livemd ├── whats_new_in_livebook_v0.8.1.livemd ├── whats_new_in_livebook_v07.livemd └── whats_new_in_livebook_v08.livemd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/.gitattributes -------------------------------------------------------------------------------- /amazon_athena_integration.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/amazon_athena_integration.livemd -------------------------------------------------------------------------------- /ci_green_streak.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/ci_green_streak.livemd -------------------------------------------------------------------------------- /launch_week_2/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/launch_week_2/cat.jpeg -------------------------------------------------------------------------------- /launch_week_2/database.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/launch_week_2/database.sqlite -------------------------------------------------------------------------------- /launch_week_2/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/launch_week_2/iris.csv -------------------------------------------------------------------------------- /launch_week_2/iris.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/launch_week_2/iris.parquet -------------------------------------------------------------------------------- /launch_week_2/live.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/launch_week_2/live.m4a -------------------------------------------------------------------------------- /livebook_google_big_query.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/livebook_google_big_query.livemd -------------------------------------------------------------------------------- /stack-overflow-survey/2024/elixir-analysis-2024.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/stack-overflow-survey/2024/elixir-analysis-2024.livemd -------------------------------------------------------------------------------- /stack-overflow-survey/2024/files/survey_results_public.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/stack-overflow-survey/2024/files/survey_results_public.csv -------------------------------------------------------------------------------- /stack-overflow-survey/2024/files/survey_results_schema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/stack-overflow-survey/2024/files/survey_results_schema.csv -------------------------------------------------------------------------------- /talks/alchemyconf/github_stars.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/github_stars.livemd -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/.formatter.exs -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/.gitignore -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/lib/livebook_proto/client_connected.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/lib/livebook_proto/client_connected.ex -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/lib/livebook_proto/environment_variable.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/lib/livebook_proto/environment_variable.ex -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/lib/livebook_proto/environment_variable_created.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/lib/livebook_proto/environment_variable_created.ex -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/lib/livebook_proto/event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/lib/livebook_proto/event.ex -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/mix.exs -------------------------------------------------------------------------------- /talks/alchemyconf/livebook_proto/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/livebook_proto/mix.lock -------------------------------------------------------------------------------- /talks/alchemyconf/protobuf_websocket.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/protobuf_websocket.livemd -------------------------------------------------------------------------------- /talks/alchemyconf/teams_client.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/teams_client.livemd -------------------------------------------------------------------------------- /talks/alchemyconf/teams_server.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/alchemyconf/teams_server.livemd -------------------------------------------------------------------------------- /talks/elixir-carajas/elixir_at_elixir_carajas.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixir-carajas/elixir_at_elixir_carajas.livemd -------------------------------------------------------------------------------- /talks/elixir-conf-2024/custom_ui_components.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixir-conf-2024/custom_ui_components.livemd -------------------------------------------------------------------------------- /talks/elixir-conf-2024/github_stars.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixir-conf-2024/github_stars.livemd -------------------------------------------------------------------------------- /talks/elixir-conf-2024/integration_with_elixir_app.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixir-conf-2024/integration_with_elixir_app.livemd -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/github_stars.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/github_stars.livemd -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/.formatter.exs -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/.gitignore -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/client_connected.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/client_connected.ex -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/environment_variable.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/environment_variable.ex -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/environment_variable_created.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/environment_variable_created.ex -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/lib/livebook_proto/event.ex -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/mix.exs -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/livebook_proto/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/livebook_proto/mix.lock -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/protobuf_websocket.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/protobuf_websocket.livemd -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/teams_client.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/teams_client.livemd -------------------------------------------------------------------------------- /talks/elixirconf-us-2025/teams_server.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elixirconf-us-2025/teams_server.livemd -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/github_stars.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/github_stars.livemd -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/.formatter.exs -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/.gitignore -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/client_connected.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/client_connected.ex -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/environment_variable.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/environment_variable.ex -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/environment_variable_created.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/environment_variable_created.ex -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/lib/livebook_proto/event.ex -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/mix.exs -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/livebook_proto/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/livebook_proto/mix.lock -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/protobuf_websocket.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/protobuf_websocket.livemd -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/teams_client.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/teams_client.livemd -------------------------------------------------------------------------------- /talks/elug-sp-2025-09/teams_server.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/elug-sp-2025-09/teams_server.livemd -------------------------------------------------------------------------------- /talks/poli_comp_talk/elixir_at_poli_comp.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/poli_comp_talk/elixir_at_poli_comp.livemd -------------------------------------------------------------------------------- /talks/sorry-dave/ai_elixir_tools.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/sorry-dave/ai_elixir_tools.livemd -------------------------------------------------------------------------------- /talks/sorry-dave/distributed_elixir.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/sorry-dave/distributed_elixir.livemd -------------------------------------------------------------------------------- /talks/sorry-dave/fine_tune_demo.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/sorry-dave/fine_tune_demo.livemd -------------------------------------------------------------------------------- /talks/sorry-dave/inference_demo.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/talks/sorry-dave/inference_demo.livemd -------------------------------------------------------------------------------- /whats_new_in_livebook_v0.10.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/whats_new_in_livebook_v0.10.livemd -------------------------------------------------------------------------------- /whats_new_in_livebook_v0.8.1.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/whats_new_in_livebook_v0.8.1.livemd -------------------------------------------------------------------------------- /whats_new_in_livebook_v07.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/whats_new_in_livebook_v07.livemd -------------------------------------------------------------------------------- /whats_new_in_livebook_v08.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugobarauna/livebook-notebooks/HEAD/whats_new_in_livebook_v08.livemd --------------------------------------------------------------------------------