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
local_ingredients (generic function with 1 method)
👀 Reading hidden code
function local_ingredients(path::String)
# this is from the Julia source code (evalfile in base/loading.jl)
# but with the modification that it returns the module instead of the last object
name = Symbol(basename(path))
m = Module(name)
Core.eval(m,
Expr(:toplevel,
:(eval(x) = $(Expr(:core, :eval))($name, x)),
:(include(x) = $(Expr(:top, :include))($name, x)),
:(include(mapexpr::Function, x) = $(Expr(:top, :include))(mapexpr, $name, x)),
:(include($path))))
m
end
1.1 ms
ingredients (generic function with 1 method)
👀 Reading hidden code
function ingredients(url::String)
try
local_ingredients(download(url))
catch e
if !startswith(url, "http")
throw(ArgumentError("Not a URL. Use `ingredients(path=\"$(url)\")` for local files instead."))
else
rethrow(e)
end
end
end
757 μs
ingredients (generic function with 2 methods)
👀 Reading hidden code
function ingredients(;
url::Union{String,Nothing}=nothing,
path::Union{String,Nothing}=nothing)
if url === nothing && path !== nothing
elseif url !== nothing && path === nothing
else
throw(ArgumentError("""Use `ingredients(url="...")` or `ingredients(path="...")`."""))
end
end
2.2 ms
Error message

ArgumentError: Not a URL. Use `ingredients(path="unicode.jl")` for local files instead.

Stack trace

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

  1. ingredients(url::String)
    	catch e		if !startswith(url, "http")			throw(ArgumentError("Not a URL. Use `ingredients(path=\"$(url)\")` for local files instead."))		else			rethrow(e)
  2. Show more...
a2 = ingredients("unicode.jl")
👀 Reading hidden code
---
Main.unicode.jl
a = ingredients(path="unicode.jl")
👀 Reading hidden code
10.7 ms
:💩
a.💩
👀 Reading hidden code
18.6 μs
Main.jl_bkEeJR
b = ingredients("https://raw.githubusercontent.com/fonsp/disorganised-mess/master/unicode.jl")
👀 Reading hidden code
1.9 s
:💩
b.💩
👀 Reading hidden code
12.3 μs