Livebook Recovery
Mix.install([
{:jason, "~> 1.4"},
{:kino, "~> 0.9", override: true},
{:youtube, github: "brooklinjazz/youtube"},
{:hidden_cell, github: "brooklinjazz/hidden_cell"}
])
Navigation
Recovering Deleted Cells
Delete the following Elixir cell and recover it using the bin Button on the sidebar.
"delete me and recover me!"
Undo Edits
Edit the following Elixir cell to say "hello "
where ` is your name. Then use CTRL+Z (Windows & Linux) or CMD+Z (MacOS) to undo your edit. ```elixir "Hello " ``` ## Recover File Delete the following content inside of the Elixir cell below. Then revert this livebook's file to recover the lost content. You may choose to use one of many methods including the command line, GitHub Desktop, or the Source Control tab of Visual Studio Code. If using the command line, you can go to the project folder in your command line and run: ```sh $ git reset HEAD exercises/livebook_recovery.livemd ``` Alternatively, discard the changes on this
exercises/livebook_recovery.livemd`
file with Visual Studio Code or GitHub Desktop.
elixir "delete and recover me!"