To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
👀 Reading hidden code
using SHA
244 μs
👀 Reading hidden code
using Base64
142 μs
Base64.base64encode ∘ SHA.sha256
👀 Reading hidden code
myhash = base64encodesha256
217 μs
👀 Reading hidden code
# @bind hello html"<input>"
9.7 μs
Error message

Could not resolve host: mkhj.fra1.cdn.digitaloceanspaces.com while requesting https://mkhj.fra1.cdn.digitaloceanspaces.com/sample%20Tower%20of%20Hanoi%2016.jl

Stack trace

Here is what happened, the most recent locations are first:

  1. (::Downloads.var"#9#18"{IOStream, Base.DevNull, Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Bool, String, Bool, Bool})(easy::Downloads.Curl.Easy)
  2. with_handle(f::Downloads.var"#9#18"{IOStream, Base.DevNull, Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Bool, String, Bool, Bool}, handle::Downloads.Curl.Easy)
    from Curl.jl:88
  3. anonymous function
  4. arg_write(f::Downloads.var"#8#17"{Base.DevNull, Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Bool, String, Bool, Bool}, arg::IOStream)
  5. anonymous function
  6. arg_read
  7. request(url::String; input::Nothing, output::IOStream, method::Nothing, headers::Vector{Pair{String, String}}, timeout::Float64, progress::Nothing, verbose::Bool, debug::Nothing, throw::Bool, downloader::Nothing)
  8. anonymous function
  9. arg_write(f::Downloads.var"#3#4"{Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Nothing, String}, arg::Nothing)
  10. #download#2
  11. download(url::String, output::Nothing)
  12. #invokelatest#2
  13. invokelatest
  14. do_download
  15. download
  16. hello = read(download("https://mkhj.fra1.cdn.digitaloceanspaces.com/sample%20Tower%20of%20Hanoi%2016.jl"), String)
hello = read(download("https://mkhj.fra1.cdn.digitaloceanspaces.com/sample%20Tower%20of%20Hanoi%2016.jl"), String)
👀 Reading hidden code
---
Error message

Another cell defining hello contains errors.

myhash(hello) |> Text
👀 Reading hidden code
---
Dict(map(x -> x => x, 1:4)...)
👀 Reading hidden code
71.5 ms
Error message

Another cell defining hello contains errors.

HTML("""

<script>

const hello = $(repr(hello))
const myhash = async (s) => {
const data = new TextEncoder().encode(s)
const hashed_buffer = await window.crypto.subtle.digest("SHA-256", data)

const base64url = await new Promise((r) => {
const reader = new FileReader()
reader.onload = () => r(reader.result)
reader.readAsDataURL(new Blob([hashed_buffer]))
})

return base64url.split(",", 2)[1]
}


return html`<code>\${await myhash(hello)}</code>`

</script>

""")
👀 Reading hidden code
---