👀 Reading hidden code
using SHA
👀 Reading hidden code
using Base64
Base64.base64encode ∘ SHA.sha256
👀 Reading hidden code
myhash = base64encode ∘ sha256
👀 Reading hidden code
# @bind hello html"<input>"
Could not resolve host: mkhj.fra1.cdn.digitaloceanspaces.com while requesting https://mkhj.fra1.cdn.digitaloceanspaces.com/sample%20Tower%20of%20Hanoi%2016.jl
Here is what happened, the most recent locations are first:
- (::Downloads.var"#9#18"{IOStream, Base.DevNull, Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Bool, String, Bool, Bool})
(easy::Downloads.Curl.Easy) from Downloads.jl:387 - 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 - anonymous functionfrom Downloads.jl:328
- arg_write
(f::Downloads.var"#8#17"{Base.DevNull, Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Bool, String, Bool, Bool}, arg::IOStream) from ArgTools.jl:112 - anonymous functionfrom Downloads.jl:327
- arg_readfrom ArgTools.jl:61
- 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) from Downloads.jl:326 - anonymous functionfrom Downloads.jl:231
- arg_write
(f::Downloads.var"#3#4"{Nothing, Vector{Pair{String, String}}, Float64, Nothing, Bool, Nothing, Nothing, String}, arg::Nothing) from ArgTools.jl:101 - #download#2from Downloads.jl:230
- download
(url::String, output::Nothing) from Downloads.jl:230 - #invokelatest#2from essentials.jl:716
- invokelatestfrom essentials.jl:714
- do_downloadfrom download.jl:24
- downloadfrom download.jl:20
- from This cell: line 1
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
Another cell defining hello contains errors.
myhash(hello) |> Text
👀 Reading hidden code
4
4
2
2
3
3
1
1
Dict(map(x -> x => x, 1:4)...)
👀 Reading hidden code
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