5SymbolsStatewill_assign_global (generic function with 2 methods)5337.573 kB
:+=
:-=
:*=
:/=
://=
:^=
:÷=
:%=
:<<=
:>>=
:>>>=
:&=
:⊻=
:≔
:⩴
:≕
:.+=
:.-=
:.*=
:./=
:.//=
:.^=
:.÷=
:.%=
:.<<=
:.>>=
:.>>>=
:.&=
:.⊻=
:.≔
:.⩴
:.≕
"/tmp/jl_vzpv59"2ScopeState moves up the ASTree: it carries scope information up towards the endpoints.
get_global_assignees (generic function with 1 method)get_assignees (generic function with 3 methods)uncurly! (generic function with 4 methods)0asdfasdf
0"a1 = a2 = a3 = a4 = a5 = a6 = a7 = a8 = a9 = a10 = a11 = a12 = a13 = a14 = a15 = a16 = a17 = a18 = a19 = a20 = a21 = a22 = a23 = a24 = a25 = a26 = a27 = a28 = a29 = a30 = a31 = a32 = a33 = a34 = a35 = a36 = a37 = a38 = a39 = a40 = a41 = a42 = a43 = a44 = a45 = a46 = a47 = a48 = a49 = a50 = a51 = a5" ⋯ 696 bytes ⋯ " = a159 = a160 = a161 = a162 = a163 = a164 = a165 = a166 = a167 = a168 = a169 = a170 = a171 = a172 = a173 = a174 = a175 = a176 = a177 = a178 = a179 = a180 = a181 = a182 = a183 = a184 = a185 = a186 = a187 = a188 = a189 = a190 = a191 = a192 = a193 = a194 = a195 = a196 = a197 = a198 = a199 = a200 = 0""a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10 + a11 + a12 + a13 + a14 + a15 + a16 + a17 + a18 + a19 + a20 + a21 + a22 + a23 + a24 + a25 + a26 + a27 + a28 + a29 + a30 + a31 + a32 + a33 + a34 + a35 + a36 + a37 + a38 + a39 + a40 + a41 + a42 + a43 + a44 + a45 + a46 + a47 + a48 + a49 + a50 + a51 + a5" ⋯ 696 bytes ⋯ " + a159 + a160 + a161 + a162 + a163 + a164 + a165 + a166 + a167 + a168 + a169 + a170 + a171 + a172 + a173 + a174 + a175 + a176 + a177 + a178 + a179 + a180 + a181 + a182 + a183 + a184 + a185 + a186 + a187 + a188 + a189 + a190 + a191 + a192 + a193 + a194 + a195 + a196 + a197 + a198 + a199 + a200 + 0"Vector{Symbol} (alias for Array{Symbol, 1})split_FunctionName (generic function with 4 methods)Turn :(sqrt.) into :(sqrt)
Turn Symbol[:Module, :func] into Symbol("Module.func").
This is not the same as the expression :(Module.func), but is used to identify the function name using a single Symbol (like normal variables). This means that it is only the inverse of ExploreExpression.split_FunctionName iff length(parts) ≤ 1.
explore_funcdef! (generic function with 4 methods)explore! (generic function with 3 methods)<h1><img alt="Pluto.jl" src="https://raw.githubusercontent.com/fonsp/Pluto.jl/main/frontend/img/logo.svg" width=300 height=74 ></h1>
Writing a notebook is not just about writing the final document — Pluto empowers the experiments and discoveries that are essential to getting there.
Explore models and share results in a notebook that is
reactive - when changing a function or variable, Pluto automatically updates all affected cells.
lightweight - Pluto is written in pure Julia and is easy to install
simple - no hidden workspace state; intuitive UI.
<img alt="reactivity screencap" src="https://raw.githubusercontent.com/fonsp/Pluto.jl/580ab811f13d565cc81ebfa70ed36c84b125f55d/demo/plutodemo.gif" >
Input
A Pluto notebook is made up of small blocks of Julia code (cells) and together they form a ***reactive*** notebook. When you change a variable, Pluto automatically re-runs the cells that refer to it. Cells can even be placed in arbitrary order - intelligent syntax analysis figures out the dependencies between them and takes care of execution.
Cells can contain arbitrary Julia code, and you can use external libraries. There are no code rewrites or wrappers, Pluto just looks at your code once before evaluation.
Output
Your notebooks are saved as pure Julia files (sample), which you can then import as if you had been programming in a regular editor all along. You can also export your notebook with cell outputs as attractive HTML and PDF documents. By reordering cells and hiding code, you have full control over how you tell your story.
<br >
Dynamic environment
Pluto offers an environment where changed code takes effect instantly and where deleted code leaves no trace. Unlike Jupyter or Matlab, there is no mutable workspace, but rather, an important guarantee: <blockquote align="center"><em><b>At any instant</b>, the program state is <b>completely described</b> by the code you see.</em></blockquote> No hidden state, no hidden bugs.
Interactivity
Your programming environment becomes interactive by splitting your code into multiple cells! Changing one cell instantly shows effects on all other cells, giving you a fast and fun way to experiment with your model.
In the example below, changing the parameter A and running the first cell will directly re-evaluate the second cell and display the new plot.
<img alt="plotting screencap" src="https://user-images.githubusercontent.com/6933510/80637344-24ac0180-8a5f-11ea-82dd-813dbceca9c9.gif" width="50%">
<br >
HTML interaction
Lastly, here's one more feature: Pluto notebooks have a @bind macro to create a live bond between an HTML object and a Julia variable. Combined with reactivity, this is a very powerful tool!
<img alt="@bind macro screencap" src="https://user-images.githubusercontent.com/6933510/80617037-e2c09280-8a41-11ea-9fb3-18bb2921dd9e.gif" width="70%">
notebook from [vdplasthijs/juliasir](https://github.com/vdplasthijs/juliasir)
<br >
You don't need to know HTML to use it! The PlutoUI package contains basic inputs like sliders and buttons.
But for those who want to dive deeper - you can use HTML, JavaScript and CSS to write your own widgets! Custom update events can be fired by dispatching a new CustomEvent("input"), making it compatible with the viewof operator of observablehq. Have a look at the sample notebooks inside Pluto to learn more!
<br > <hr > <br >
Let's do it!
Ingredients
For one tasty notebook 🥞 you will need:
Julia v1.0 or above
Linux, macOS or Windows, Linux and macOS will work best
Mozilla Firefox or Google Chrome, be sure to get the latest version
Installation
Run Julia and add the package:
julia> ]
(v1.0) pkg> add Pluto
Using the package manager for the first time can take up to 15 minutes - hang in there!
To run the notebook server:
julia> import Pluto
julia> Pluto.run(1234)
Then go to http://localhost:1234/ to start coding!
To developers
Follow these instructions to start working on the package.
<img src="https://raw.githubusercontent.com/gist/fonsp/9a36c183e2cad7c8fc30290ec95eb104/raw/ca3a38a61f95cd58d79d00b663a3c114d21e284e/cute.svg">
License
Pluto.jl is open source! Specifically, it is MIT Licensed. The included sample notebooks have a more permissive license: the Unlicense. This means that you can use sample notebook code however you like - you do not need to credit us!
Pluto.jl is built by gluing together open source software:
Julia- licenseHTTP.jl- licenseJSON.jl- licenseCodeMirror- licenseMathJax- licenseobservablehq/stdlib- licensepreact- licensedevelopit/htm- license
Your notebook files are yours, you do not need to credit us. Have fun!
Note
We are happy to say that Pluto.jl runs smoothly for most users, and is ready to be used in your next project!
That being said, the Pluto project is an ambition to rethink what a programming environment should be. We believe that scientific programming can be a lot simpler. Not by adding more buttons to a text editor — by giving space to creative thought, and automating the rest.
If you feel the same, give Pluto a try! We would love to hear what you think. 😊
<img alt="feedback screencap" src="https://user-images.githubusercontent.com/6933510/78135402-22d02d80-7422-11ea-900f-a8b01bdbd8d3.png" width="70%">
Questions? Have a look at the FAQ.
Created by Fons van der Plas and Mikołaj Bochenski. Inspired by Observable.
1
2
3
4
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
791
792
793
794
795
796
797
798
799
800
3×3 Matrix{Float64}:
-1.77942 0.00975944 2.14264
0.174518 -0.294946 0.866005
-0.170727 -1.33287 0.736614wowiea
wowiefalseUndefVarError: Pluto not defined
Stacktrace:
[1] top-level scope
@ none:1
[2] eval
@ ./boot.jl:373 [inlined]
[3] #153
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:429 [inlined]
[4] run_work_thunk(thunk::Distributed.var"#153#154"{typeof(Core.eval), Tuple{Module, Expr}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}}, print_error::Bool)
@ Distributed /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/process_messages.jl:63
[5] #remotecall_fetch#158
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:454 [inlined]
[6] remotecall_fetch
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:454 [inlined]
[7] #remotecall_fetch#162
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:496 [inlined]
[8] remotecall_fetch
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:496 [inlined]
[9] remotecall_eval(m::Module, pid::Int64, ex::Expr)
@ Distributed /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/macros.jl:242
[10] ##function_wrapped_cell#422
@ ~/work/disorganised-mess/disorganised-mess/big2.jl#==#9749bdd8-93c0-11ea-218e-bb3c8aca84a6:1 [inlined]
[11] var"##function_wrapped_cell#422"(Distributed::Module, Main::Module)
@ Main ./none:0
[12] invokelatest(::Any, ::Any, ::Vararg{Any}; kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ Base ./essentials.jl:716
[13] invokelatest(::Any, ::Any, ::Vararg{Any})
@ Base ./essentials.jl:714
[14] compute(m::Module, computer::PlutoRunner.Computer)
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:85
[15] (::PlutoRunner.var"#34#37"{Module})()
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:261
[16] run_inside_trycatch(m::Module, f::PlutoRunner.var"#34#37"{Module})
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:125
[17] (::PlutoRunner.var"#32#35"{Bool, Module, Expr, Base.UUID, Base.UUID, Tuple{Set{Symbol}, Set{Symbol}}, Nothing, UInt64, Expr})()
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:261
[18] with_io_to_logs(f::PlutoRunner.var"#32#35"{Bool, Module, Expr, Base.UUID, Base.UUID, Tuple{Set{Symbol}, Set{Symbol}}, Nothing, UInt64, Expr}; enabled::Bool, loglevel::Base.CoreLogging.LogLevel)
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/io/stdout.jl:64
[19] (::PlutoRunner.var"#126#127"{Bool, Base.CoreLogging.LogLevel, PlutoRunner.var"#32#35"{Bool, Module, Expr, Base.UUID, Base.UUID, Tuple{Set{Symbol}, Set{Symbol}}, Nothing, UInt64, Expr}})()
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/io/logging.jl:129
[20] with_logstate(f::Function, logstate::Any)
@ Base.CoreLogging ./logging.jl:511
[21] with_logger
@ ./logging.jl:623 [inlined]
[22] #with_logger_and_io_to_logs#125
@ ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/io/logging.jl:128 [inlined]
[23] run_expression(m::Module, expr::Expr, notebook_id::Base.UUID, cell_id::Base.UUID, function_wrapped_info::Union{Nothing, Tuple{Set{Symbol}, Set{Symbol}}}, forced_expr_id::Union{Nothing, UInt64}; user_requested_run::Bool, capture_stdout::Bool)
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:236
[24] top-level scope
@ ~/.julia/packages/Pluto/6smog/src/evaluation/WorkspaceManager.jl:439
[25] eval
@ ./boot.jl:373 [inlined]
[26] macro expansion
@ ~/.julia/packages/Malt/YJ2Ml/src/worker.jl:120 [inlined]
[27] (::var"#1#2"{Sockets.TCPSocket, UInt64, Bool, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, Tuple{Module, Expr}, typeof(Core.eval)})()
@ Main ./task.jl:429
Here is what happened, the most recent locations are first:
- #remotecall_fetch#158from remotecall.jl:455
- remotecall_fetchfrom remotecall.jl:454
- #remotecall_fetch#162from remotecall.jl:496
- remotecall_fetchfrom remotecall.jl:496
- remotecall_eval
(m::Module, pid::Int64, ex::Expr) from macros.jl:242 - from This cell: line 1
Distributed.remotecall_eval(Main, 1, :(VersionNumber(Pluto.Pkg.TOML.parsefile(joinpath(Pluto.PKG_ROOT_DIR, "Project.toml"))["version"])))
UndefVarError: Pluto not defined
Stacktrace:
[1] top-level scope
@ :0
[2] eval
@ ./boot.jl:373 [inlined]
[3] #153
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:429 [inlined]
[4] run_work_thunk(thunk::Distributed.var"#153#154"{typeof(Core.eval), Tuple{Module, Expr}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}}, print_error::Bool)
@ Distributed /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/process_messages.jl:63
[5] #remotecall_fetch#158
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:454 [inlined]
[6] remotecall_fetch
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:454 [inlined]
[7] #remotecall_fetch#162
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:496 [inlined]
[8] remotecall_fetch
@ /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/remotecall.jl:496 [inlined]
[9] remotecall_eval(m::Module, pid::Int64, ex::Expr)
@ Distributed /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/macros.jl:242
[10] ##function_wrapped_cell#426
@ ~/work/disorganised-mess/disorganised-mess/big2.jl#==#e46bc5fe-93c0-11ea-3a28-a57866436552:1 [inlined]
[11] var"##function_wrapped_cell#426"(Distributed::Module, Main::Module)
@ Main ./none:0
[12] invokelatest(::Any, ::Any, ::Vararg{Any}; kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ Base ./essentials.jl:716
[13] invokelatest(::Any, ::Any, ::Vararg{Any})
@ Base ./essentials.jl:714
[14] compute(m::Module, computer::PlutoRunner.Computer)
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:85
[15] (::PlutoRunner.var"#34#37"{Module})()
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:261
[16] run_inside_trycatch(m::Module, f::PlutoRunner.var"#34#37"{Module})
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:125
[17] (::PlutoRunner.var"#32#35"{Bool, Module, Expr, Base.UUID, Base.UUID, Tuple{Set{Symbol}, Set{Symbol}}, Nothing, UInt64, Expr})()
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:261
[18] with_io_to_logs(f::PlutoRunner.var"#32#35"{Bool, Module, Expr, Base.UUID, Base.UUID, Tuple{Set{Symbol}, Set{Symbol}}, Nothing, UInt64, Expr}; enabled::Bool, loglevel::Base.CoreLogging.LogLevel)
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/io/stdout.jl:64
[19] (::PlutoRunner.var"#126#127"{Bool, Base.CoreLogging.LogLevel, PlutoRunner.var"#32#35"{Bool, Module, Expr, Base.UUID, Base.UUID, Tuple{Set{Symbol}, Set{Symbol}}, Nothing, UInt64, Expr}})()
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/io/logging.jl:129
[20] with_logstate(f::Function, logstate::Any)
@ Base.CoreLogging ./logging.jl:511
[21] with_logger
@ ./logging.jl:623 [inlined]
[22] #with_logger_and_io_to_logs#125
@ ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/io/logging.jl:128 [inlined]
[23] run_expression(m::Module, expr::Expr, notebook_id::Base.UUID, cell_id::Base.UUID, function_wrapped_info::Union{Nothing, Tuple{Set{Symbol}, Set{Symbol}}}, forced_expr_id::Union{Nothing, UInt64}; user_requested_run::Bool, capture_stdout::Bool)
@ PlutoRunner ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/evaluation/run_expression.jl:236
[24] top-level scope
@ ~/.julia/packages/Pluto/6smog/src/evaluation/WorkspaceManager.jl:439
[25] eval
@ ./boot.jl:373 [inlined]
[26] macro expansion
@ ~/.julia/packages/Malt/YJ2Ml/src/worker.jl:120 [inlined]
[27] (::var"#1#2"{Sockets.TCPSocket, UInt64, Bool, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, Tuple{Module, Expr}, typeof(Core.eval)})()
@ Main ./task.jl:429
Here is what happened, the most recent locations are first:
- #remotecall_fetch#158from remotecall.jl:455
- remotecall_fetchfrom remotecall.jl:454
- #remotecall_fetch#162from remotecall.jl:496
- remotecall_fetchfrom remotecall.jl:496
- remotecall_eval
(m::Module, pid::Int64, ex::Expr) from macros.jl:242 - from This cell: line 1
Distributed.remotecall_eval(Main, 1, :(Pluto.PLUTO_VERSION))
0
16
1
2
3
4
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
791
792
793
794
795
796
797
798
799
800



missing:a
1
:b
"hoi"
"merlino"
:title
Hello world
:img

"asasdf "
$x+1$
" asdfasdf"
"183-element Vector{Any}:\n 1\n [2, 3, 4]\n 620\n 621\n 622\n 623\n 624\n 625\n 626\n 627\n 628\n 629\n 630\n 631\n 632\n 633\n 634\n 635\n 636\n 637\n 638\n 639\n 640\n 641\n 642\n 643\n 644\n 645\n 646\n 647\n 648\n 649\n 650\n 651\n 652\n 653\n 654\n 655\n 656\n 657\n 658\n 659\n 660\n 661\n 662\n 663\n 664\n 665\n 666\n 6" ⋯ 369 bytes ⋯ "741\n 742\n 743\n 744\n 745\n 746\n 747\n 748\n 749\n 750\n 751\n 752\n 753\n 754\n 755\n 756\n 757\n 758\n 759\n 760\n 761\n 762\n 763\n 764\n 765\n 766\n 767\n 768\n 769\n 770\n 771\n 772\n 773\n 774\n 775\n 776\n 777\n 778\n 779\n 780\n 781\n 782\n 783\n 784\n 785\n 786\n 787\n 788\n 789\n 790\n 791\n 792\n 793\n 794\n 795\n 796\n 797\n 798\n 799\n 800"A 123 D
2asdf Dict{Symbol, Markdown.MD} with 2 entries: :title => # Hello world :img =>  asd
"<div class=\"markdown\"><p>asdf Dict{Symbol, Markdown.MD} with 2 entries:\n :title => # Hello world\n\n :img => \n asd</p>\n</div>"true
false
1.0asdf
1
2
3
4
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
791
792
793
794
795
796
797
798
799
800
5
5
56
56
35
35
55
55
60
60
30
30
32
32
6
6
67
67
45
45
73
73
64
64
90
90
4
4
13
13
54
54
63
63
86
86
91
91
62
62
58
58
52
52
12
12
28
28
75
75
23
23
92
92
41
41
43
43
11
11
falseBase.OneTo(9)
asdf 1234620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 asdf
asdf Main.workspace#7.Derp(1, 2) asdf
MethodError: no method matching getindex(::Base.Iterators.Enumerate{Vector{Any}}, ::Int64)
Here is what happened, the most recent locations are first:
"I like "
"dogs.org"
" "
" cats!"
"PATH"
"/opt/hostedtoolcache/julia/1.7.3/x64/bin:/snap/bin:/home/runner/.local/bin:/opt/pipx_bin:/home/runner/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
"DOTNET_SKIP_FIRST_TIME_EXPERIENCE"
"1"
"GITHUB_RUN_NUMBER"
"113"
"GITHUB_REF_NAME"
"main"
"RUNNER_ARCH"
"X64"
"ACCEPT_EULA"
"Y"
"GOROOT_1_21_X64"
"/opt/hostedtoolcache/go/1.21.13/x64"
"ANT_HOME"
"/usr/share/ant"
"GITHUB_REPOSITORY_ID"
"287252663"
"GITHUB_ACTOR"
"fonsp"
"GITHUB_WORKFLOW_REF"
"fonsp/disorganised-mess/.github/workflows/ExportNotebooks.yml@refs/heads/main"
"ANDROID_NDK_LATEST_HOME"
"/usr/local/lib/android/sdk/ndk/28.1.13356709"
"SYSTEMD_EXEC_PID"
"1881"
"RUNNER_ENVIRONMENT"
"github-hosted"
"USER"
"runner"
"CONDA"
"/usr/share/miniconda"
"GOROOT_1_23_X64"
"/opt/hostedtoolcache/go/1.23.9/x64"
"GITHUB_REF_PROTECTED"
"false"
"GITHUB_SHA"
"6d5f6e46c196925a19e151358b6656510197d2e1"
"JAVA_HOME"
"/usr/lib/jvm/temurin-17-jdk-amd64"
"GITHUB_API_URL"
"https://api.github.com"
"GITHUB_RUN_ATTEMPT"
"1"
"GITHUB_ACTIONS"
"true"
"VCPKG_INSTALLATION_ROOT"
"/usr/local/share/vcpkg"
"ANDROID_SDK_ROOT"
"/usr/local/lib/android/sdk"
"SWIFT_PATH"
"/usr/share/swift/usr/bin"
"GITHUB_ENV"
"/home/runner/work/_temp/_runner_file_commands/set_env_68fa420b-bb50-4d9b-8e80-8edcfcc8b4ce"
"SHELL"
"/bin/bash"
"JAVA_HOME_17_X64"
"/usr/lib/jvm/temurin-17-jdk-amd64"
"RUNNER_NAME"
"GitHub Actions 1000003695"
1
3
2
4
MethodError: no method matching lastindex(::Dict{Symbol, Markdown.MD})
Closest candidates are:
lastindex(::Any, ::Any) at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/base/abstractarray.jl:373
lastindex(::Union{DataStructures.SortedDict, DataStructures.SortedMultiDict, DataStructures.SortedSet}) at ~/.julia/packages/DataStructures/IrAJn/src/tokens2.jl:19
lastindex(::ColorTypes.ComponentIterator) at ~/.julia/packages/ColorTypes/L7biZ/src/operations.jl:28
...
Here is what happened, the most recent locations are first:
a
3×3 Matrix{Float64}:
0.365616 0.995087 0.499702
0.8192 0.768229 0.161642
0.992404 0.0865103 0.374301The Basel problem
Leonard Euler proved in 1741 that the series
converges to
The Basel problem
Leonard Euler proved in 1741 that the series
converges to
3.04936163598207IOContext(Base.PipeEndpoint(RawFD(4294967295) closed, 0 bytes waiting))UndefVarError: iocontext not defined
Here is what happened, the most recent locations are first:
- getpropertyfrom Base.jl:35
- from This cell: line 1
get(PlutoRunner.iocontext, :module, @__MODULE__)
"PATH"
"/opt/hostedtoolcache/julia/1.7.3/x64/bin:/snap/bin:/home/runner/.local/bin:/opt/pipx_bin:/home/runner/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
"DOTNET_SKIP_FIRST_TIME_EXPERIENCE"
"1"
"GITHUB_RUN_NUMBER"
"113"
"GITHUB_REF_NAME"
"main"
"RUNNER_ARCH"
"X64"
"ACCEPT_EULA"
"Y"
"GOROOT_1_21_X64"
"/opt/hostedtoolcache/go/1.21.13/x64"
"ANT_HOME"
"/usr/share/ant"
"GITHUB_REPOSITORY_ID"
"287252663"
"GITHUB_ACTOR"
"fonsp"
"GITHUB_WORKFLOW_REF"
"fonsp/disorganised-mess/.github/workflows/ExportNotebooks.yml@refs/heads/main"
"ANDROID_NDK_LATEST_HOME"
"/usr/local/lib/android/sdk/ndk/28.1.13356709"
"SYSTEMD_EXEC_PID"
"1881"
"RUNNER_ENVIRONMENT"
"github-hosted"
"USER"
"runner"
"CONDA"
"/usr/share/miniconda"
"GOROOT_1_23_X64"
"/opt/hostedtoolcache/go/1.23.9/x64"
"GITHUB_REF_PROTECTED"
"false"
"GITHUB_SHA"
"6d5f6e46c196925a19e151358b6656510197d2e1"
"JAVA_HOME"
"/usr/lib/jvm/temurin-17-jdk-amd64"
"GITHUB_API_URL"
"https://api.github.com"
"GITHUB_RUN_ATTEMPT"
"1"
"GITHUB_ACTIONS"
"true"
"VCPKG_INSTALLATION_ROOT"
"/usr/local/share/vcpkg"
"ANDROID_SDK_ROOT"
"/usr/local/lib/android/sdk"
"SWIFT_PATH"
"/usr/share/swift/usr/bin"
"GITHUB_ENV"
"/home/runner/work/_temp/_runner_file_commands/set_env_68fa420b-bb50-4d9b-8e80-8edcfcc8b4ce"
"SHELL"
"/bin/bash"
"JAVA_HOME_17_X64"
"/usr/lib/jvm/temurin-17-jdk-amd64"
"RUNNER_NAME"
"GitHub Actions 1000003695"
12
:a
UndefVarError: sprint_withreturned not defined
Here is what happened, the most recent locations are first:
- getpropertyfrom Base.jl:35
- from This cell: line 1
PlutoRunner.sprint_withreturned(PlutoRunner.show_richest, "a")
UndefVarError: sprint_withreturned not defined
Here is what happened, the most recent locations are first:
- getpropertyfrom Base.jl:35
- from This cell: line 1
PlutoRunner.sprint_withreturned(PlutoRunner.show_richest, "a")
"\"a\"""\"a\""UndefVarError: sprint_withreturned not defined
Here is what happened, the most recent locations are first:
- getpropertyfrom Base.jl:35
- from This cell: line 1
PlutoRunner.sprint_withreturned(show, MIME"text/plain"(), "a")
UndefVarError: sprint_withreturned not defined
Here is what happened, the most recent locations are first:
- getpropertyfrom Base.jl:35
- from This cell: line 1
PlutoRunner.sprint_withreturned(show, MIME"text/plain"(), "a")
"\"a\""true"a"MIME type text/plainStringfalseshow_richest (generic function with 1 method)"a"
MIME type text/plainMIME type text/plain12xshowable (generic function with 1 method)fr (generic function with 1 method)12MIME type text/plain1
1
1
1
2
3
12MIME type text/plainUndefVarError: mmmm not defined
Here is what happened, the most recent locations are first:
- findnext(pred::Base.Fix2{<:Union{typeof(==), typeof(isequal)}, Bool}, B::BitArray, start::Integer) in Base at bitarray.jl:1514
- findnext(pred::Base.Fix2{<:Union{typeof(==), typeof(isequal)}, <:AbstractChar}, s::String, i::Integer) in Base at strings/search.jl:5
- findnext(pred::Base.Fix2{<:Union{typeof(==), typeof(isequal)}, <:Union{Int8, UInt8}}, a::Union{Vector{Int8}, Vector{UInt8}}, i::Integer) in Base at strings/search.jl:25
- findnext(B::BitArray, start::Integer) in Base at bitarray.jl:1472
- findnext(pattern::AbstractVector{<:Union{Int8, UInt8}}, A::AbstractVector{<:Union{Int8, UInt8}}, start::Integer) in Base at strings/search.jl:346
- findnext(testf::Function, B::BitArray, start::Integer) in Base at bitarray.jl:1524
- findnext(testf::Function, s::AbstractString, i::Integer) in Base at strings/search.jl:146
- findnext(f::Function, v::SparseArrays.AbstractSparseArray, i) in SparseArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SparseArrays/src/abstractsparse.jl:81
- findnext(testf::Function, A, start) in Base at array.jl:1946
- findnext(ch::AbstractChar, string::AbstractString, start::Integer) in Base at strings/search.jl:322
- findnext(t::AbstractString, s::AbstractString, start::Integer) in Base at strings/search.jl:303
- findnext(re::Regex, str::Union{String, SubString}, idx::Integer) in Base at regex.jl:393
- findnext(r::Regex, s::AbstractString, idx::Integer) in Base at regex.jl:418
- findnext(pat::Base.RegexAndMatchData, str, i) in Base at regex.jl:584
- findnext(A, start) in Base at array.jl:1862
false
false
false
false
false
false
false
false
false
false
false
true
truefalsefalsefalsefalsefalsefalsefalse1
2
1
2
3
4
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
typename(Derp)- show(io, m::MIME{Symbol("text/html")}, rs::PlutoUI.RangeSliderNotebook.RangeSlider) in PlutoUI.RangeSliderNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/RangeSlider.jl:99
- show(io::HypertextLiteral.EscapeProxy, m::MIME{Symbol("text/html")}, h::HypertextLiteral.Result) in HypertextLiteral at /home/runner/.julia/packages/HypertextLiteral/WjWbW/src/macro.jl:124
- show(io::HypertextLiteral.EscapeProxy, h::HypertextLiteral.Result) in HypertextLiteral at /home/runner/.julia/packages/HypertextLiteral/WjWbW/src/macro.jl:123
- show(io::IOContext, x::SparseArrays.AbstractSparseVector) in SparseArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SparseArrays/src/sparsevector.jl:897
- show(io::IO, iter::Union{Base.KeySet, Base.ValueIterator}) in Base at abstractdict.jl:56
- show(io::IO, ex::Union{Core.GotoNode, Core.SSAValue, Expr, GlobalRef, Core.GotoIfNot, LineNumberNode, Core.PhiCNode, Core.PhiNode, QuoteNode, Core.ReturnNode, Core.Slot, Core.UpsilonNode}) in Base at show.jl:1304
- show(io::IO, cmds::Union{Base.ErrOrCmds, Base.OrCmds}) in Base at cmd.jl:130
- show(io::IO, x::T) where T<:Union{Float16, Float32, Float64} in Base.Ryu at ryu/Ryu.jl:111
- show(io::IO, x::T, forceuntyped::Bool) where T<:Union{Float16, Float32, Float64} in Base.Ryu at ryu/Ryu.jl:111
- show(io::IO, x::T, forceuntyped::Bool, fromprint::Bool) where T<:Union{Float16, Float32, Float64} in Base.Ryu at ryu/Ryu.jl:111
- show(io::IO, node::Union{Hyperscript.Node, Hyperscript.Pretty}) in Hyperscript at /home/runner/.julia/packages/Hyperscript/l66rR/src/Hyperscript.jl:169
- show(io::IO, acc::DataStructures.Accumulator{T, V}) where {T, V} in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/accumulator.jl:236
- show(io::IO, addr::Sockets.InetAddr) in Sockets at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Sockets/src/IPAddr.jl:307
- show(io::IO, i::CartesianIndex) in Base.IteratorsMD at multidimensional.jl:86
- show(io::IO, t::NamedTuple) in Base at namedtuple.jl:150
- show(io::IO, FC::SuiteSparse.CHOLMOD.FactorComponent) in SuiteSparse.CHOLMOD at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SuiteSparse/src/cholmod.jl:973
- show(out::IO, x::Measures.Add) in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:19
- show(out::IO, x::Measures.Neg) in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:18
- show(io::IO, t::Text) in Base.Docs at docs/utils.jl:89
- show(io::IO, m::DataStructures.SortedMultiDict{K, D, Ord}) where {K, D, Ord<:Base.Order.Ordering} in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/sorted_multi_dict.jl:460
- show(io::IO, r::Base.Slice) in Base at indices.jl:366
- show(io::IO, tangent::ChainRulesCore.StructuralTangent{P}) where P in ChainRulesCore at /home/runner/.julia/packages/ChainRulesCore/U6wNx/src/tangent_types/structural_tangent.jl:143
- show(io::IO, d::Parsers.Delim) in Parsers at /home/runner/.julia/packages/Parsers/6Nt9C/src/dates.jl:109
- show(io::IO, r::Core.Compiler.UnitRange) in Base at show.jl:1173
- show(io::IO, p::P) where P<:Dates.Period in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/periods.jl:52
- show(io::IO, s::Compat.Splat) in Compat at /home/runner/.julia/packages/Compat/gd6AI/src/Compat.jl:706
- show(io::IO, d::Dates.DatePart{c}) where c in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:106
- show(io::IO, r::Base.IdentityUnitRange) in Base at indices.jl:394
- show(out::IO, x::Measures.Div) in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:22
- show(io::IO, p::Pair) in Base at show.jl:1085
- show(io::IO, x::Some) in Base at some.jl:42
- show(io::IO, g::Base.Unicode.GraphemeIterator{S}) where S in Base.Unicode at strings/unicode.jl:697
- show(io::IO, x::Parsers.Result{T}) where T in Parsers at /home/runner/.julia/packages/Parsers/6Nt9C/src/Parsers.jl:37
- show(io::IO, S::SparseArrays.AbstractSparseMatrixCSC) in SparseArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SparseArrays/src/sparsematrix.jl:249
- show(io::IO, op::Base.Broadcast.BroadcastFunction) in Base.Broadcast at broadcast.jl:1339
- show(io::IO, x::LinearAlgebra.Adjoint{<:Any, <:LinearAlgebra.Factorization}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/factorization.jl:71
- show(io::IO, s::SubstitutionString) in Base at regex.jl:554
- show(io::IO, r::UnitRange) in Base at range.jl:1025
- show(io::IO, r::LinRange) in Base at range.jl:535
- show(io::IO, df::Dates.DateFormat) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:454
- show(io::IO, ::M, x::PlutoUI.Show{M}) where M<:MIME in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/DisplayTricks.jl:89
- show(io::IO, m::M, am::PlutoUI.AsMIME{M}) where M<:MIME in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/DisplayTricks.jl:12
- show(io::IO, S::SharedArrays.SharedArray) in SharedArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SharedArrays/src/SharedArrays.jl:489
- show(io::IO, b::Base.GenericIOBuffer) in Base at iobuffer.jl:148
- show(io::IO, x::Rational) in Base at rational.jl:84
- show(io::IO, q::DataStructures.Deque) in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/deque.jl:157
- show(io::IO, h::StatsBase.AbstractHistogram) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/hist.jl:220
- show(io::IO, n::Unsigned) in Base at show.jl:1062
- show(out::IO, x::Measures.Mul) in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:23
- show(io::IO, oc::Core.OpaqueClosure) in Base at show.jl:2963
- show(io::IO, c::ComposedFunction) in Base at operators.jl:1091
- show(io::IO, d::Dates.Delim) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:281
- show(io::IO, m::DataStructures.SortedSet{K, Ord}) where {K, Ord<:Base.Order.Ordering} in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/sorted_set.jl:551
- show(io::IO, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/plot.jl:23
- show(io::IO, h::DataStructures.MutableBinaryHeap) in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/heaps/mutable_binary_heap.jl:194
- show(out::IO, x::Measures.Length{U}) where U in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:17
- show(io::IO, s::OrderedCollections.OrderedSet) in OrderedCollections at /home/runner/.julia/packages/OrderedCollections/Xihhq/src/ordered_set.jl:31
- show(io::IO, r::Base.LogicalIndex) in Base at multidimensional.jl:741
- show(io::IO, r::StepRangeLen) in Base at range.jl:1027
- show(io::IO, c::AbstractChar) in Base at char.jl:283
- show(io::IO, l::DataStructures.LinkedList{T}) where T in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/list.jl:24
- show(out::IO, x::Measures.Max) in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:21
- show(io::IO, c::Channel) in Base at channels.jl:445
- show(io::IO, x::Irrational{sym}) where sym in Base at irrationals.jl:31
- show(io::IO, ss::StatsBase.SummaryStats) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/scalarstats.jl:915
- show(io::IO, node::DataStructures.ListNode) in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/mutable_list.jl:241
- show(io::IO, e::Base.Iterators.Enumerate) in Base at show.jl:2911
- show(io::IO, f::Printf.Spec) in Printf at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Printf/src/Printf.jl:40
- show(io::IO, bbox::Measures.BoundingBox) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/layouts.jl:55
- show(io::IO, x::Hyperscript.Unit{S}) where S in Hyperscript at /home/runner/.julia/packages/Hyperscript/l66rR/src/cssunits.jl:6
- show(io::IO, r::Base.OneTo) in Base at range.jl:1026
- show(io::IO, r::AbstractRange) in Base at range.jl:1024
- show(io::IO, p::Ptr) in Base at show.jl:1065
- show(io::IO, x::ChainRulesCore.InplaceableThunk) in ChainRulesCore at /home/runner/.julia/packages/ChainRulesCore/U6wNx/src/tangent_types/thunks.jl:254
- show(io::IO, r::Compat.LogRange{T}) where T in Compat at /home/runner/.julia/packages/Compat/gd6AI/src/Compat.jl:982
- show(io::IO, bc::Base.Broadcast.Broadcasted{Style}) where Style in Base.Broadcast at broadcast.jl:200
- show(io::IO, M::LinearAlgebra.Bidiagonal) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/bidiag.jl:221
- show(io::IO, x::ChainRulesCore.Thunk) in ChainRulesCore at /home/runner/.julia/packages/ChainRulesCore/U6wNx/src/tangent_types/thunks.jl:215
- show(io::IO, s::Set) in Base at set.jl:41
- show(io::IO, x::LinearAlgebra.Transpose{<:Any, <:LinearAlgebra.Factorization}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/factorization.jl:75
- show(io::IO, x::Enum) in Base.Enums at Enums.jl:36
- show(io::IO, D::DataStructures.CircularDeque{T}) where T in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/circ_deque.jl:121
- show(io::IO, ctx::IOContext) in Base at show.jl:330
- show(io::IO, sp::Plots.Subplot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/types.jl:154
- show(io::IO, stream::Base.LibuvServer) in Base at stream.jl:260
- show(io::IO, obj::Returns) in Base at operators.jl:998
- show(io::IO, x::FixedPointNumbers.FixedPoint{T, f}) where {T, f} in FixedPointNumbers at /home/runner/.julia/packages/FixedPointNumbers/Dn4hv/src/FixedPointNumbers.jl:272
- show(io::IO, l::DataStructures.MutableLinkedList) in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/mutable_list.jl:246
- show(io::IO, s::Base.SkipMissing) in Base at missing.jl:272
- show(io::IO, x::StatsBase.CronbachAlpha) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/reliability.jl:6
- show(io::IO, t::Tuple) in Base at show.jl:1262
- show(io::IO, c::ColorTypes.AbstractGray{Bool}) in ColorTypes at /home/runner/.julia/packages/ColorTypes/L7biZ/src/show.jl:20
- show(io::IO, c::ColorTypes.AbstractGray) in ColorTypes at /home/runner/.julia/packages/ColorTypes/L7biZ/src/show.jl:11
- show(io::IO, c::ColorTypes.Colorant) in ColorTypes at /home/runner/.julia/packages/ColorTypes/L7biZ/src/show.jl:2
- show(io::IO, F::SuiteSparse.CHOLMOD.Factor) in SuiteSparse.CHOLMOD at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SuiteSparse/src/cholmod.jl:968
- show(io::IO, x::SparseArrays.AbstractSparseVector) in SparseArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SparseArrays/src/sparsevector.jl:896
- show(out::IO, x::Measures.Min) in Measures at /home/runner/.julia/packages/Measures/PKOxJ/src/Measures.jl:20
- show(io::IO, project::ChainRulesCore.ProjectTo{T}) where T in ChainRulesCore at /home/runner/.julia/packages/ChainRulesCore/U6wNx/src/projection.jl:44
- show(io::IO, B::Base.Broadcast.BitMaskedBitArray) in Base.Broadcast at broadcast.jl:1171
- show(io::IO, z::Base.Iterators.Zip) in Base at show.jl:2916
- show(io::IO, blk::DataStructures.DequeBlock) in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/deque.jl:47
- show(io::IO, p::ColorVectorSpace.RGBRGB) in ColorVectorSpace at /home/runner/.julia/packages/ColorVectorSpace/JXxVe/src/ColorVectorSpace.jl:399
- show(io::IO, err::Sockets.DNSError) in Sockets at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Sockets/src/addrinfo.jl:15
- show(io::IO, t::Test.Error) in Test at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Test/src/Test.jl:182
- show(io::IO, ::MIME{Symbol("image/gif")}, agif::Plots.AnimatedGif) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/animation.jl:177
- show(io::IO, tag::LibGit2.GitTag) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/tag.jl:88
- show(io::IO, level::Base.CoreLogging.LogLevel) in Base.CoreLogging at logging.jl:162
- show(io::IO, published::PlutoRunner.PublishedToJavascript) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/js/published_to_js.jl:36
- show(io::IO, h::HypertextLiteral.Result) in HypertextLiteral at /home/runner/.julia/packages/HypertextLiteral/WjWbW/src/macro.jl:121
- show(io::IO, s::REPL.LineEdit.PrefixSearchState) in REPL.LineEdit at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/REPL/src/LineEdit.jl:1831
- show(io::IO, m::Module) in Base at show.jl:1102
- show(io::IO, ::IrrationalConstants.Sqrt2) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, opt::Pkg.REPLMode.Option) in Pkg.REPLMode at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/REPLMode/REPLMode.jl:144
- show(io::IO, blame_hunk::LibGit2.BlameHunk) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/blame.jl:47
- show(io::IO, rbo::LibGit2.RebaseOperation) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/types.jl:804
- show(io::IO, hash::Base.SHA1) in Base at loading.jl:108
- show(io::IO, ::IrrationalConstants.Sqrt4π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::IrrationalConstants.Sqrt2π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, hdr::Tar.Header) in Tar at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Tar/src/header.jl:44
- show(io::IO, lbt::LinearAlgebra.BLAS.LBTLibraryInfo) in LinearAlgebra.BLAS at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/lbt.jl:108
- show(io::IO, ::SHA.SHA2_224_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:219
- show(io::IO, m::MIME{Symbol("application/postscript")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, mt::Core.MethodTable) in Base at methodshow.jl:299
- show(io::IO, m::MIME{Symbol("application/prs.juno.plotpane+html")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:250
- show(io::IO, ::SHA.SHA3_256_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:224
- show(io::IO, src::Core.CodeInfo; debuginfo) in Base at show.jl:2509
- show(io::IO, pkg::Pkg.Types.PackageSpec) in Pkg.Types at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Types.jl:141
- show(io::IO, ::IrrationalConstants.Logπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::IrrationalConstants.Twoπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::IrrationalConstants.Sqrthalfπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ie::LibGit2.IndexEntry) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/types.jl:741
- show(io::IO, s::REPL.LineEdit.MIState) in REPL.LineEdit at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/REPL/src/LineEdit.jl:80
- show(io::IO, id::LibGit2.GitShortHash) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/oid.jl:184
- show(io::IO, s::DataStructures.IntSet) in DataStructures at /home/runner/.julia/packages/DataStructures/IrAJn/src/int_set.jl:196
- show(io::IO, cmds::Base.AndCmds) in Base at cmd.jl:139
- show(io::IO, inferred::Core.Compiler.InferenceResult) in Base at show.jl:2531
- show(io::IO, ::MIME{Symbol("text/csv")}, a) in DelimitedFiles at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/DelimitedFiles/src/DelimitedFiles.jl:829
- show(io::IO, ::SHA.SHA3_224_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:223
- show(io::IO, tv::TypeVar) in Base at show.jl:2437
- show(io::IO, cr::Base.CmdRedirect) in Base at cmd.jl:180
- show(io::IO, ::IrrationalConstants.Invπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ex::Base.PrecompilableError) in Base at loading.jl:910
- show(io::IO, ::MIME{Symbol("image/png")}, x::GR.PNG) in GR at /home/runner/.julia/packages/GR/uzy0J/src/GR.jl:3569
- show(io::IO, ::MIME{Symbol("image/png")}, x::GR.GR3.PNG) in GR.GR3 at /home/runner/.julia/packages/GR/uzy0J/src/gr3.jl:17
- show(io::IO, m::MIME{Symbol("image/png")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, ::MIME{Symbol("image/png")}, agif::Plots.AnimatedGif) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/animation.jl:180
- show(io::IO, cmd::Cmd) in Base at cmd.jl:111
- show(io::IO, ::IrrationalConstants.Sqrtπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::IrrationalConstants.Halfπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::MIME{Symbol("text/rst")}, md::Markdown.MD) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/render/rst.jl:145
- show(io::IO, ::MIME{Symbol("text/javascript")}, published::PlutoRunner.PublishedToJavascript) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/js/published_to_js.jl:32
- show(io::IO, ::MIME{Symbol("text/javascript")}, wjl::AbstractPlutoDingetjes.Display._JSLink) in AbstractPlutoDingetjes.Display at /home/runner/.julia/packages/AbstractPlutoDingetjes/fhNFA/src/AbstractPlutoDingetjes.jl:562
- show(io::IO, ::MIME{Symbol("text/javascript")}, ptj::AbstractPlutoDingetjes.Display._PublishToJS) in AbstractPlutoDingetjes.Display at /home/runner/.julia/packages/AbstractPlutoDingetjes/fhNFA/src/AbstractPlutoDingetjes.jl:321
- show(io::IO, ::MIME{Symbol("text/javascript")}, js::HypertextLiteral.JavaScript) in HypertextLiteral at /home/runner/.julia/packages/HypertextLiteral/WjWbW/src/script.jl:66
- show(io::IO, ::MIME{Symbol("text/javascript")}, sv::HypertextLiteral.Script) in HypertextLiteral at /home/runner/.julia/packages/HypertextLiteral/WjWbW/src/script.jl:48
- show(io::IO, dt::Dates.DateTime) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:736
- show(io::IO, t::Test.Broken) in Test at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Test/src/Test.jl:223
- show(io::IO, ex::Test.TestSetException) in Test at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Test/src/Test.jl:868
- show(io::IO, re::Regex) in Base at regex.jl:121
- show(io::IO, diff::LibGit2.GitDiff) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/diff.jl:138
- show(io::IO, ip::Sockets.IPv4) in Sockets at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Sockets/src/IPAddr.jl:55
- show(io::IO, frame::Base.StackTraces.StackFrame) in Base.StackTraces at stacktraces.jl:254
- show(io::IO, ::Base.EnvDict) in Base at env.jl:151
- show(io::IO, t::AbstractDict{K, V}) where {K, V} in Base at dict.jl:24
- show(io::IO, mime::MIME{Symbol("image/svg+xml")}, cs::AbstractMatrix{T}; max_swatches) where T<:Color in Colors at /home/runner/.julia/packages/Colors/VFEJ1/src/display.jl:99
- show(io::IO, mime::MIME{Symbol("image/svg+xml")}, cs::AbstractVector{T}; max_swatches) where T<:TransparentColor in Colors at /home/runner/.julia/packages/Colors/VFEJ1/src/display.jl:41
- show(io::IO, mime::MIME{Symbol("image/svg+xml")}, cs::AbstractVector{T}; max_swatches) where T<:Color in Colors at /home/runner/.julia/packages/Colors/VFEJ1/src/display.jl:35
- show(io::IO, mime::MIME{Symbol("image/svg+xml")}, c::ColorTypes.TransparentColor) in Colors at /home/runner/.julia/packages/Colors/VFEJ1/src/display.jl:30
- show(io::IO, mime::MIME{Symbol("image/svg+xml")}, c::ColorTypes.Color) in Colors at /home/runner/.julia/packages/Colors/VFEJ1/src/display.jl:18
- show(io::IO, m::MIME{Symbol("image/svg+xml")}, cscheme::ColorSchemes.ColorScheme) in ColorSchemes at /home/runner/.julia/packages/ColorSchemes/cpITu/src/ColorSchemes.jl:54
- show(io::IO, m::MIME{Symbol("image/svg+xml")}, cg::PlotUtils.CategoricalColorGradient) in PlotUtils at /home/runner/.julia/packages/PlotUtils/dVEMd/src/colorschemes.jl:139
- show(io::IO, m::MIME{Symbol("image/svg+xml")}, cg::PlotUtils.ContinuousColorGradient) in PlotUtils at /home/runner/.julia/packages/PlotUtils/dVEMd/src/colorschemes.jl:51
- show(io::IO, m::MIME{Symbol("image/svg+xml")}, acl::PlotUtils.AbstractColorList) in PlotUtils at /home/runner/.julia/packages/PlotUtils/dVEMd/src/colorschemes.jl:9
- show(io::IO, ::MIME{Symbol("image/svg+xml")}, x::GR.SVG) in GR at /home/runner/.julia/packages/GR/uzy0J/src/GR.jl:3568
- show(io::IO, m::MIME{Symbol("image/svg+xml")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, t::Test.Pass) in Test at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Test/src/Test.jl:94
- show(io::IO, x::StatsBase.TestStat) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/statmodels.jl:83
- show(io::IO, te::LibGit2.GitTreeEntry) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/tree.jl:142
- show(io::IO, v::Core.SimpleVector) in Base at show.jl:1263
- show(io::IO, ::IrrationalConstants.Sqrt3) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, m::MIME{Symbol("image/eps")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, ip::Base.InterpreterIP) in Base at errorshow.jl:872
- show(io::IO, l::Core.MethodInstance) in Base at show.jl:1146
- show(io::IO, ref::LibGit2.GitReference) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/reference.jl:170
- show(io::IO, axis::Plots.Axis) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/axes.jl:111
- show(io::IO, c::LibGit2.GitCommit) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/commit.jl:60
- show(io::IO, t::Test.LogTestFailure) in Test at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Test/src/logging.jl:67
- show(io::IO, dt::Dates.Date) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:736
- show(io::IO, ct::StatsBase.CoefTable) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/statmodels.jl:116
- show(io::IO, df::Parsers.Format) in Parsers at /home/runner/.julia/packages/Parsers/6Nt9C/src/dates.jl:73
- show(io::IO, pkg::Pkg.Types.PackageEntry) in Pkg.Types at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Types.jl:284
- show(io::IO, ::MIME{Symbol("text/tab-separated-values")}, a) in DelimitedFiles at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/DelimitedFiles/src/DelimitedFiles.jl:830
- show(io::IO, s::IOStream) in Base at iostream.jl:35
- show(io::IO, ::Nothing) in Base at show.jl:1059
- show(io::IO, x::Parsers.PosLen) in Parsers at /home/runner/.julia/packages/Parsers/6Nt9C/src/utils.jl:474
- show(io::IO, ::SHA.SHA1_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:218
- show(io::IO, s::Base.SecretBuffer) in Base at secretbuffer.jl:94
- show(io::IO, ::IrrationalConstants.Invsqrtπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, m::MIME{Symbol("application/vnd.plotly.v1+json")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, uri::URIs.URI) in URIs at /home/runner/.julia/packages/URIs/kes7h/src/URIs.jl:239
- show(io::IO, ::IrrationalConstants.Quartπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::IrrationalConstants.Logtwo) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ::IrrationalConstants.Fourinvπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, x::Hyperscript.Calc) in Hyperscript at /home/runner/.julia/packages/Hyperscript/l66rR/src/cssunits.jl:21
- show(io::IO, st::Base.Filesystem.StatStruct) in Base.Filesystem at stat.jl:142
- show(io::IO, df::LibGit2.DiffFile) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/types.jl:521
- show(io::IO, x::BigInt) in Base.GMP at gmp.jl:683
- show(io::IO, n::Signed) in Base at show.jl:1061
- show(io::IO, m::MIME{Symbol("application/x-tex")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, result::LibGit2.GitDescribeResult) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/repository.jl:341
- show(io::IO, t::Dates.Time) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:57
- show(io::IO, rmt::LibGit2.GitRemote) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/remote.jl:341
- show(io::IO, x::Parsers.PosLen31) in Parsers at /home/runner/.julia/packages/Parsers/6Nt9C/src/utils.jl:474
- show(io::IO, ::SHA.SHA3_384_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:225
- show(io::IO, b::Bool) in Base at show.jl:1060
- show(io::IO, ::SHA.SHA3_512_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:226
- show(io::IO, diff_stat::LibGit2.GitDiffStats) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/diff.jl:131
- show(io::IO, lbt::LinearAlgebra.BLAS.LBTConfig) in LinearAlgebra.BLAS at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/lbt.jl:116
- show(io::IO, ::SHA.SHA2_256_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:220
- show(io::IO, m::RegexMatch) in Base at regex.jl:227
- show(io::IO, ::IrrationalConstants.Invsqrt2π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, u::Base.UUID) in Base at uuid.jl:104
- show(io::IO, stream::Sockets.UDPSocket) in Sockets at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Sockets/src/Sockets.jl:203
- show(io::IO, df::Dates.DateFunction) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/adjusters.jl:196
- show(io::IO, n::StatsBase.NoQuote) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/statmodels.jl:114
- show(io::IO, p::Base.BinaryPlatforms.Platform) in Base.BinaryPlatforms at binaryplatforms.jl:172
- show(io::IO, tn::Core.TypeName) in Base at show.jl:1053
- show(io::IO, layout::Plots.RootLayout) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/layouts.jl:166
- show(io::IO, layout::RecipesBase.AbstractLayout) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/layouts.jl:65
- show(io::IO, ::IrrationalConstants.Invsqrt2) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, x::Parsers.Flags) in Parsers at /home/runner/.julia/packages/Parsers/6Nt9C/src/Parsers.jl:67
- show(io::IO, pkg::Base.PkgId) in Base at pkgid.jl:26
- show(io::IO, ::SHA.SHA2_384_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:221
- show(io::IO, id::LibGit2.GitHash) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/oid.jl:183
- show(io::IO, a::Pkg.Resolve.FieldValue) in Pkg.Resolve at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Resolve/fieldvalues.jl:25
- show(io::IO, f::Pkg.Resolve.Fixed) in Pkg.Resolve at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Resolve/Resolve.jl:27
- show(io::IO, stack::Base.ExceptionStack) in Base at errorshow.jl:904
- show(io::IO, manager::Distributed.LocalManager) in Distributed at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/managers.jl:439
- show(io::IO, ::MIME{Symbol("text/plain")}, iter::Union{Base.KeySet, Base.ValueIterator}) in Base at show.jl:50
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::Union{LinearAlgebra.QR, LinearAlgebra.QRCompactWY, LinearAlgebra.QRPivoted}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/qr.jl:451
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::Union{LinearAlgebra.Eigen, LinearAlgebra.GeneralizedEigen}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/eigen.jl:609
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.Hessenberg) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/hessenberg.jl:503
- show(io::IO, mime::MIME{Symbol("text/plain")}, itr::Missings.SkipMissings{V}) where V in Missings at /home/runner/.julia/packages/Missings/MBhnW/src/Missings.jl:304
- show(io::IO, mime::MIME{Symbol("text/plain")}, C::LinearAlgebra.CholeskyPivoted) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/cholesky.jl:550
- show(io::IO, m::MIME{Symbol("text/plain")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:218
- show(io::IO, ::MIME{Symbol("text/plain")}, op::Base.Broadcast.BroadcastFunction) in Base.Broadcast at broadcast.jl:1345
- show(io::IO, ::MIME{Symbol("text/plain")}, t::AbstractSet{T}) where T in Base at show.jl:153
- show(io::IO, ::MIME{Symbol("text/plain")}, x::LinearAlgebra.Adjoint{<:Any, <:LinearAlgebra.Factorization}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/factorization.jl:79
- show(io::IO, mime::MIME{Symbol("text/plain")}, str::AbstractString; limit) in Base at strings/io.jl:196
- show(io::IO, ::MIME{Symbol("text/plain")}, c::Returns) in Base at show.jl:48
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::SuiteSparse.SPQR.QRSparse) in SuiteSparse.SPQR at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SuiteSparse/src/spqr.jl:302
- show(io::IO, ::MIME{Symbol("text/plain")}, c::T) where T<:AbstractChar in Base at char.jl:319
- show(io::IO, ::MIME{Symbol("text/plain")}, r::LinRange) in Base at show.jl:13
- show(io::IO, ::MIME{Symbol("text/plain")}, FC::SuiteSparse.CHOLMOD.FactorComponent) in SuiteSparse.CHOLMOD at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SuiteSparse/src/cholmod.jl:990
- show(io::IO, mime::MIME{Symbol("text/plain")}, S::SharedArrays.SharedArray) in SharedArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SharedArrays/src/SharedArrays.jl:497
- show(io::IO, ::MIME{Symbol("text/plain")}, J::LinearAlgebra.UniformScaling) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/uniformscaling.jl:113
- show(io::IO, ::MIME{Symbol("text/plain")}, c::Channel) in Base at channels.jl:447
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.Schur) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/schur.jl:207
- show(io::IO, ::MIME{Symbol("text/plain")}, r::AbstractRange) in Base at show.jl:11
- show(io::IO, ::MIME{Symbol("text/plain")}, F::SuiteSparse.CHOLMOD.Factor) in SuiteSparse.CHOLMOD at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SuiteSparse/src/cholmod.jl:991
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::SuiteSparse.UMFPACK.UmfpackLU) in SuiteSparse.UMFPACK at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SuiteSparse/src/umfpack.jl:293
- show(io::IO, ::MIME{Symbol("text/plain")}, x::Irrational{sym}) where sym in Base at irrationals.jl:33
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.LU) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/lu.jl:337
- show(io::IO, ::MIME{Symbol("text/plain")}, x::SparseArrays.AbstractSparseVector) in SparseArrays at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SparseArrays/src/sparsevector.jl:886
- show(io::IO, ::MIME{Symbol("text/plain")}, x::IrrationalConstants.IrrationalConstant) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:9
- show(io::IO, ::MIME{Symbol("text/plain")}, oc::Core.OpaqueClosure{A, R}) where {A, R} in Base at show.jl:2970
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.GeneralizedSchur) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/schur.jl:415
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.LDLt) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/ldlt.jl:83
- show(io::IO, mime::MIME{Symbol("text/plain")}, B::LinearAlgebra.BunchKaufman) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/bunchkaufman.jl:288
- show(io::IO, m::MIME{Symbol("text/plain")}, w::PlutoUI.WithIOContext) in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/DisplayTricks.jl:145
- show(io::IO, m::MIME, w::PlutoUI.WithIOContext) in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/DisplayTricks.jl:141
- show(io::IO, ::MIME{Symbol("text/plain")}, c::ComposedFunction) in Base at show.jl:47
- show(io::IO, ::MIME{Symbol("text/plain")}, x::Dates.Period) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/periods.jl:51
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.GeneralizedSVD{<:Any, <:AbstractArray}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/svd.jl:503
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.SVD{<:Any, <:Any, <:AbstractArray}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/svd.jl:266
- show(io::IO, mime::MIME{Symbol("text/plain")}, r::Core.Compiler.UnitRange) in Base at show.jl:1174
- show(io::IO, ::MIME{Symbol("text/plain")}, t::AbstractDict{K, V}) where {K, V} in Base at show.jl:81
- show(io::IO, mime::MIME{Symbol("text/plain")}, C::LinearAlgebra.Cholesky) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/cholesky.jl:540
- show(io::IO, mime::MIME{Symbol("text/plain")}, F::LinearAlgebra.LQ) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/lq.jl:156
- show(io::IO, ::MIME{Symbol("text/plain")}, x::LinearAlgebra.Transpose{<:Any, <:LinearAlgebra.Factorization}) in LinearAlgebra at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/factorization.jl:83
- show(io::IO, ::MIME{Symbol("text/plain")}, x::Enum) in Base.Enums at Enums.jl:49
- show(io::IO, ::MIME{Symbol("text/plain")}, p::ColorVectorSpace.RGBRGB) in ColorVectorSpace at /home/runner/.julia/packages/ColorVectorSpace/JXxVe/src/ColorVectorSpace.jl:406
- show(io::IO, ::MIME{Symbol("text/plain")}, s::Compat.Splat) in Compat at /home/runner/.julia/packages/Compat/gd6AI/src/Compat.jl:707
- show(io::IO, ::MIME{Symbol("text/plain")}, f::Function) in Base at show.jl:24
- show(io::IO, ::MIME{Symbol("text/plain")}, md::Markdown.MD) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/render/terminal/render.jl:176
- show(io::IO, ::MIME{Symbol("text/plain")}, opt::Base.JLOptions) in Base at show.jl:190
- show(io::IO, ::MIME{Symbol("text/plain")}, u::UndefInitializer) in Base at show.jl:3
- show(io::IO, mime::MIME{Symbol("text/plain")}, lbt::LinearAlgebra.BLAS.LBTConfig) in LinearAlgebra.BLAS at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/lbt.jl:127
- show(io::IO, ::MIME{Symbol("text/plain")}, w::Main.workspace#7.Wow) in Main.workspace#7 at /home/runner/work/disorganised-mess/disorganised-mess/big2.jl#==#d6bb60b0-8fc4-11ea-1a96-6dffb769ac8d:1
- show(io::IO, ::MIME{Symbol("text/plain")}, published::PlutoRunner.PublishedToJavascript) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/js/published_to_js.jl:35
- show(io::IO, ::MIME{Symbol("text/plain")}, ms::Base.MethodList) in Base at methodshow.jl:298
- show(io::IO, ::MIME{Symbol("text/plain")}, r::Pkg.Registry.RegistryInstance) in Pkg.Registry at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Registry/registry_instance.jl:299
- show(io::IO, ::MIME{Symbol("text/plain")}, ptj::AbstractPlutoDingetjes.Display._PublishToJS) in AbstractPlutoDingetjes.Display at /home/runner/.julia/packages/AbstractPlutoDingetjes/fhNFA/src/AbstractPlutoDingetjes.jl:338
- show(io::IO, ::MIME{Symbol("text/plain")}, t::Task) in Base at show.jl:206
- show(io::IO, ::MIME{Symbol("text/plain")}, st::Base.Filesystem.StatStruct) in Base.Filesystem at stat.jl:143
- show(io::IO, ::MIME{Symbol("text/plain")}, wjl::AbstractPlutoDingetjes.Display._JSLink) in AbstractPlutoDingetjes.Display at /home/runner/.julia/packages/AbstractPlutoDingetjes/fhNFA/src/AbstractPlutoDingetjes.jl:579
- show(io::IO, ::MIME{Symbol("text/plain")}, d::PlutoUI.Dump) in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/DisplayTricks.jl:53
- show(io::IO, ::MIME{Symbol("text/plain")}, dt::Dates.Date) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:734
- show(io::IO, ::MIME{Symbol("text/plain")}, stack::Base.ExceptionStack) in Base at errorshow.jl:899
- show(io::IO, mime::MIME{Symbol("text/plain")}, mt::AbstractVector{Method}) in Base at methodshow.jl:408
- show(io::IO, ::MIME{Symbol("text/plain")}, X::AbstractArray) in Base at arrayshow.jl:360
- show(io::IO, ::MIME{Symbol("text/plain")}, t::Dates.Time) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:54
- show(io::IO, mime::MIME{Symbol("text/plain")}, lbt::LinearAlgebra.BLAS.LBTLibraryInfo) in LinearAlgebra.BLAS at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LinearAlgebra/src/lbt.jl:109
- show(io::IO, ::MIME{Symbol("text/plain")}, dt::Dates.DateTime) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/io.jl:734
- show(io::IO, ::MIME{Symbol("text/plain")}, ::Core.TypeofBottom) in Base at show.jl:481
- show(io::IO, m::MIME{Symbol("text/plain")}, t::Type{<:Enum}) in Base.Enums at Enums.jl:56
- show(io::IO, ::MIME{Symbol("text/plain")}, x::Type) in Base at show.jl:855
- show(io::IO, ::MIME{Symbol("text/plain")}, x) in Base.Multimedia at multimedia.jl:47
- show(io::IO, r::Pkg.Versions.VersionRange) in Pkg.Versions at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Versions.jl:180
- show(io::IO, x::Dates.CompoundPeriod) in Dates at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Dates/src/periods.jl:358
- show(io::IO, p::Base.Process) in Base at process.jl:649
- show(io::IO, b::Base.Docs.Binding) in Base.Docs at docs/bindings.jl:35
- show(io::IO, rng::Random.MersenneTwister) in Random at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Random/src/RNGs.jl:185
- show(io::IO, tinf::Core.Compiler.Timings.Timing) in Base at show.jl:1195
- show(io::IO, md::Markdown.MD) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/render/plain.jl:139
- show(io::IO, b::BigFloat) in Base.MPFR at mpfr.jl:1023
- show(io::IO, s::Base.BufferStream) in Base at stream.jl:1453
- show(io::IO, stream::Base.LibuvStream) in Base at stream.jl:263
- show(io::IO, ::MIME{Symbol("text/latex")}, md::Markdown.MD) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/render/latex.jl:174
- show(io::IO, m::MIME{Symbol("text/latex")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, ::IrrationalConstants.Fourπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, t::Task) in Base at task.jl:95
- show(io::IO, cfg::Core.Compiler.CFG) in Base.IRShow at compiler/ssair/show.jl:15
- show(io::IO, ::MIME{Symbol("image/jpg")}, ::Main.workspace#7.Dog) in Main.workspace#7 at /home/runner/work/disorganised-mess/disorganised-mess/big2.jl#==#e0a67ff3-376e-4bf8-b281-90486f31c80d:3
- show(io::IO, s::BitSet) in Base at bitset.jl:367
- show(io::IO, path::RelocatableFolders.Path) in RelocatableFolders at /home/runner/.julia/packages/RelocatableFolders/URtlI/src/RelocatableFolders.jl:83
- show(io::IO, fh::LibGit2.FetchHead) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/types.jl:883
- show(io::IO, s::Symbol) in Base at show.jl:1265
- show(io::IO, pv::StatsBase.PValue) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/statmodels.jl:67
- show(io::IO, a::Pkg.Resolve.VersionWeight) in Pkg.Resolve at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Resolve/versionweights.jl:36
- show(io::IO, ip::Sockets.IPv6) in Sockets at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Sockets/src/IPAddr.jl:120
- show(io::IO, m::Method) in Base at methodshow.jl:200
- show(io::IO, repo::LibGit2.GitRepo) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/repository.jl:515
- show(io::IO, x::Missing) in Base at missing.jl:5
- show(io::IO, z::Complex{Bool}) in Base at complex.jl:213
- show(io::IO, z::Complex) in Base at complex.jl:193
- show(io::IO, manager::Distributed.SSHManager) in Distributed at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Distributed/src/managers.jl:174
- show(io::IO, ::IrrationalConstants.Log2π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, tex::Markdown.LaTeX) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/IPython/IPython.jl:25
- show(io::IO, vm::Core.TypeofVararg) in Base at show.jl:2471
- show(io::IO, f::Core.IntrinsicFunction) in Base at show.jl:471
- show(io::IO, f::Function) in Base at show.jl:468
- show(io::IO, m::MIME{Symbol("application/eps")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, ::IrrationalConstants.Loghalf) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, idx::LibGit2.GitIndex) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/index.jl:216
- show(io::IO, ::IrrationalConstants.Inv4π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, fd::RawFD) in Base.Libc at libc.jl:41
- show(io::IO, wjl::AbstractPlutoDingetjes.Display._JSLink) in AbstractPlutoDingetjes.Display at /home/runner/.julia/packages/AbstractPlutoDingetjes/fhNFA/src/AbstractPlutoDingetjes.jl:580
- show(io::IO, x::Hyperscript.Styled) in Hyperscript at /home/runner/.julia/packages/Hyperscript/l66rR/src/Hyperscript.jl:457
- show(io::IO, str::ProgressLogging.ProgressString) in ProgressLogging at /home/runner/.julia/packages/ProgressLogging/6KXlp/src/ProgressLogging.jl:221
- show(io::IO, s::AbstractString) in Base at strings/io.jl:193
- show(io::IO, m::AbstractString, x) in Base.Multimedia at multimedia.jl:111
- show(io::IO, ::MIME{Symbol("text/markdown")}, md::Markdown.MD) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/render/plain.jl:140
- show(io::IO, ::MIME{Symbol("text/markdown")}, ct::StatsBase.CoefTable) in StatsBase at /home/runner/.julia/packages/StatsBase/XgjIN/src/statmodels.jl:150
- show(io::IO, err::LibGit2.Error.GitError) in LibGit2.Error at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/error.jl:82
- show(io::IO, s::Pkg.Versions.VersionSpec) in Pkg.Versions at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/src/Versions.jl:285
- show(io::IO, x::REPL.LineEdit.Prompt) in REPL.LineEdit at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/REPL/src/LineEdit.jl:59
- show(io::IO, dd::LibGit2.DiffDelta) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/types.jl:554
- show(io::IO, rb::LibGit2.GitRebase) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/rebase.jl:65
- show(io::IO, ce::LibGit2.ConfigEntry) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/types.jl:907
- show(io::IO, code::Core.Compiler.IRCode) in Base.IRShow at compiler/ssair/show.jl:332
- show(io::IO, v::VersionNumber) in Base at version.jl:86
- show(io::IO, opt::Base.JLOptions) in Base at options.jl:60
- show(io::IO, mi_info::Core.Compiler.Timings.InferenceFrameInfo) in Base at show.jl:1176
- show(io::IO, ::UndefInitializer) in Base at show.jl:2764
- show(io::IO, t::Test.Fail) in Test at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Test/src/Test.jl:130
- show(io::IO, ms::Base.MethodList) in Base at methodshow.jl:297
- show(io::IO, X::AbstractArray) in Base at arrayshow.jl:479
- show(io::IO, sig::LibGit2.Signature) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/signature.jl:58
- show(io::IO, ::Core.Compiler.NativeInterpreter) in Base at show.jl:2541
- show(io::IO, ::IrrationalConstants.Inv2π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, m::MIME{Symbol("application/pdf")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, ::IrrationalConstants.Twoinvπ) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, ptj::AbstractPlutoDingetjes.Display._PublishToJS) in AbstractPlutoDingetjes.Display at /home/runner/.julia/packages/AbstractPlutoDingetjes/fhNFA/src/AbstractPlutoDingetjes.jl:339
- show(io::IO, u::Pkg.LazilyInitializedFields.Uninitialized) in Pkg.LazilyInitializedFields at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Pkg/ext/LazilyInitializedFields/LazilyInitializedFields.jl:74
- show(io::IO, ::SHA.SHA2_512_CTX) in SHA at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/SHA/src/types.jl:222
- show(io::IO, info::Base.Sys.CPUinfo) in Base.Sys at sysinfo.jl:173
- show(io::IO, rng::StableRNGs.LehmerRNG) in StableRNGs at /home/runner/.julia/packages/StableRNGs/t609C/src/StableRNGs.jl:56
- show(io::IO, tree::LibGit2.GitTree) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/tree.jl:149
- show(io::IO, blob::LibGit2.GitBlob) in LibGit2 at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/LibGit2/src/blob.jl:76
- show(io::IO, m::MIME{Symbol("text/html")}, node::Union{Hyperscript.Node, Hyperscript.Pretty}) in Hyperscript at /home/runner/.julia/packages/Hyperscript/l66rR/src/Hyperscript.jl:170
- show(io::IO, m::MIME{Symbol("text/html")}, tw::PlutoUI.Experimental.TransformedValueNotebook.TransformedWidget) in PlutoUI.Experimental.TransformedValueNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/TransformedValue.jl:67
- show(io::IO, m::MIME{Symbol("text/html")}, mc::PlutoUI.MultiCheckBoxNotebook.MultiCheckBox) in PlutoUI.MultiCheckBoxNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/MultiCheckBox.jl:111
- show(io::IO, ::MIME{Symbol("text/html")}, h::HTML{<:Function}) in Base.Docs at docs/utils.jl:40
- show(io::IO, ::MIME{Symbol("text/html")}, h::HTML) in Base.Docs at docs/utils.jl:39
- show(io::IO, m::MIME{Symbol("text/html")}, select::PlutoUI.BuiltinsNotebook.MultiSelect) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:1312
- show(io::IO, m::MIME{Symbol("text/html")}, cp::PlutoUI.BuiltinsNotebook.ColorPicker) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:1108
- show(io::IO, m::MIME{Symbol("text/html")}, slider::PlutoUI.BuiltinsNotebook.Slider) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:166
- show(io::IO, m::MIME{Symbol("text/html")}, plt::Plots.Plot) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/output.jl:232
- show(io::IO, ::MIME{Symbol("text/html")}, m::Method) in Base at methodshow.jl:351
- show(io::IO, m::MIME{Symbol("text/html")}, datefield::PlutoUI.BuiltinsNotebook.DateField) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:948
- show(io::IO, m::MIME{Symbol("text/html")}, cb::PlutoUI.ConfirmNotebook.ConfirmBond) in PlutoUI.ConfirmNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Confirm.jl:120
- show(io::IO, m::MIME{Symbol("text/html")}, select::PlutoUI.BuiltinsNotebook.OldSelect) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:584
- show(io::IO, m::MIME{Symbol("text/html")}, webcam::PlutoUI.WebcamInputNotebook.WebcamInput) in PlutoUI.WebcamInputNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/WebcamInput.jl:557
- show(io::IO, m::MIME{Symbol("text/html")}, t::PlutoUI.BuiltinsNotebook.TextField) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:480
- show(io::IO, m::MIME{Symbol("text/html")}, h::HypertextLiteral.Result) in HypertextLiteral at /home/runner/.julia/packages/HypertextLiteral/WjWbW/src/macro.jl:122
- show(io::IO, ::MIME{Symbol("text/html")}, terminal_output::PlutoUI.TerminalNotebook.WithTerminalOutput) in PlutoUI.TerminalNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/TerminalNotebook.jl:83
- show(io::IO, m::MIME{Symbol("text/html")}, bond::PlutoRunner.Bond) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/bonds.jl:91
- show(io::IO, ::MIME{Symbol("text/html")}, x::GR.HTML) in GR at /home/runner/.julia/packages/GR/uzy0J/src/GR.jl:3570
- show(io::IO, m::MIME{Symbol("text/html")}, d::PlutoUI.ExperimentalLayout.HTLDiv) in PlutoUI.ExperimentalLayout at /home/runner/.julia/packages/PlutoUI/hjutS/src/Layout.jl:91
- show(io::IO, m::MIME{Symbol("text/html")}, toc::PlutoUI.TableOfContentsNotebook.TableOfContents) in PlutoUI.TableOfContentsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/TableOfContents.jl:573
- show(io::IO, m::MIME{Symbol("text/html")}, db::PlutoUI.DownloadButton) in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/Resource.jl:141
- show(io::IO, m::MIME{Symbol("text/html")}, timefield::PlutoUI.BuiltinsNotebook.TimeField) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:990
- show(io::IO, m::MIME{Symbol("text/html")}, button::PlutoUI.BuiltinsNotebook.LabelButton) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:321
- show(io::IO, m::MIME{Symbol("text/html")}, slider::PlutoUI.BuiltinsNotebook.OldSlider) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:63
- show(io::IO, m::MIME{Symbol("text/html")}, select::PlutoUI.BuiltinsNotebook.OldMultiSelect) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:842
- show(io::IO, m::MIME{Symbol("text/html")}, e::PlutoRunner.DivElement) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/display/DivElement.jl:17
- show(io::IO, ::MIME{Symbol("text/html")}, x::GR.GR3.HTML) in GR.GR3 at /home/runner/.julia/packages/GR/uzy0J/src/gr3.jl:18
- show(io::IO, mime::MIME{Symbol("text/html")}, mt::Core.MethodTable) in Base at methodshow.jl:405
- show(io::IO, m::MIME{Symbol("text/html")}, x::Hyperscript.Styled) in Hyperscript at /home/runner/.julia/packages/Hyperscript/l66rR/src/Hyperscript.jl:458
- show(io::IO, ::MIME{Symbol("text/html")}, clock::PlutoUI.ClockNotebook.Clock) in PlutoUI.ClockNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Clock.jl:51
- show(io::IO, m::MIME{Symbol("text/html")}, select::PlutoUI.BuiltinsNotebook.Select) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:642
- show(io::IO, m::MIME{Symbol("text/html")}, dp::PlutoUI.BuiltinsNotebook.DatePicker) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:1233
- show(io::IO, m::MIME{Symbol("text/html")}, numberfield::PlutoUI.BuiltinsNotebook.NumberField) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:266
- show(io::IO, ::MIME{Symbol("text/html")}, md::Markdown.MD) in Markdown at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/stdlib/v1.7/Markdown/src/render/html.jl:187
- show(io::IO, ::MIME{Symbol("text/html")}, suggestion::PlutoRunner.Suggestion) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/ide features/docs.jl:56
- show(io::IO, m::MIME{Symbol("text/html")}, s::PlutoUI.ScrubbableNotebook.Scrubbable) in PlutoUI.ScrubbableNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Scrubbable.jl:273
- show(io::IO, m::MIME{Symbol("text/html")}, passwordfield::PlutoUI.BuiltinsNotebook.PasswordField) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:559
- show(io::IO, mime::MIME{Symbol("text/html")}, ms::Base.MethodList) in Base at methodshow.jl:393
- show(io::IO, mime::MIME{Symbol("text/html")}, mt::AbstractVector{Method}) in Base at methodshow.jl:424
- show(io::IO, m::MIME{Symbol("text/html")}, e::PlutoRunner.EmbeddableDisplay) in PlutoRunner at /home/runner/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/display/embed_display.jl:9
- show(io::IO, ::MIME{Symbol("text/html")}, colorStringPicker::PlutoUI.BuiltinsNotebook.ColorStringPicker) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:1031
- show(io::IO, ::MIME{Symbol("text/html")}, button::PlutoUI.BuiltinsNotebook.CheckBox) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:425
- show(io::IO, m::MIME{Symbol("text/html")}, radio::PlutoUI.BuiltinsNotebook.Radio) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:761
- show(io::IO, m::MIME{Symbol("text/html")}, r::PlutoUI.Resource) in PlutoUI at /home/runner/.julia/packages/PlutoUI/hjutS/src/Resource.jl:37
- show(io::IO, ::MIME{Symbol("text/html")}, agif::Plots.AnimatedGif) in Plots at /home/runner/.julia/packages/Plots/qgrW8/src/animation.jl:154
- show(io::IO, m::MIME{Symbol("text/html")}, button::PlutoUI.BuiltinsNotebook.CounterButton) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:376
- show(io::IO, m::MIME{Symbol("text/html")}, rc::PlutoUI.CombineNotebook.RenderCallback) in PlutoUI.CombineNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Combine.jl:127
- show(io::IO, m::MIME{Symbol("text/html")}, filepicker::PlutoUI.BuiltinsNotebook.FilePicker) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:897
- show(io::IO, m::MIME{Symbol("text/html")}, cb::PlutoUI.CombineNotebook.CombinedBonds) in PlutoUI.CombineNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Combine.jl:145
- show(io::IO, m::MIME{Symbol("text/html")}, tp::PlutoUI.BuiltinsNotebook._TimePicker) in PlutoUI.BuiltinsNotebook at /home/runner/.julia/packages/PlutoUI/hjutS/src/Builtins.jl:1167
- show(io::IO, ::MIME{mime}) where mime in Base.Multimedia at multimedia.jl:50
- show(io::IO, ::IrrationalConstants.Logten) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, x::ChainRulesCore.NotImplemented) in ChainRulesCore at /home/runner/.julia/packages/ChainRulesCore/U6wNx/src/tangent_types/notimplemented.jl:70
- show(io::IO, ::IrrationalConstants.Log4π) in IrrationalConstants at /home/runner/.julia/packages/IrrationalConstants/lWTip/src/macro.jl:134
- show(io::IO, stream::Pipe) in Base at stream.jl:715
- show(io::IO, ::Core.TypeofBottom) in Base at show.jl:480
- show(io::IO, x::Type) in Base at show.jl:881
- show(io::IO, x) in Base at show.jl:391
- show(x) in Base at show.jl:393
nothing
nothing
nothing
nothing
1:101.0
0.25
0.111111
0.0625
0.04
0.0277778
0.0204082
0.015625
0.0123457
0.01
Progress
Let's start!
Yayy
Yayy
1
100
Oh no!
1
1
2
200
3
300
Oh no!
3
3
4
400
5
500
Oh no!
5
5
6
600
7
700
Oh no!
7
7
8
800
9
900
Oh no!
9
9
10
1000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
wow
Positioning
1
"asdf"
123
1
asdf
"asdf"
""
23aaa
1
"asdf"
123
1
asdf
"asdf"
""
0.888151
0.424445
0.981312
0.536501
0.273627
0.529408
0.716282
0.755658
0.0639299
0.0908641
0.703023
0.801172
0.275266
0.187043
0.642675
0.368501
0.968751
0.392437
0.866537
0.29604
0.00617542
0.412792
0.665459
0.301007
0.767257
0.954354
0.707446
0.331241
0.682141
0.293978
:asdf
123
a asdf as
b
c
TypeError: non-boolean (Missing) used in boolean context
Here is what happened, the most recent locations are first:
1Oh no!
12
aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd aaabbbcccddd
aaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccdddaaabbbcccddd
Remeber to use the function Base.alsjdhfkjashdf to also get akjshdfkjashdfkjhasdf.
Writing a notebook is not just about writing the final document — Pluto empowers the experiments and discoveries that are essential to getting there.
Explore models and share results in a notebook that is
reactive - when changing a function or variable, Pluto automatically updates all affected cells.
lightweight - Pluto is written in pure Julia and is easy to install.
simple - no hidden workspace state; friendly UI.
Some long text asdflkj asldkjf aslkdfj alskjdf kj
Rich output in logs
0x89
0x50
0x4e
0x47
0x0d
0x0a
0x1a
0x0a
0x00
0x00
0x00
0x0d
0x49
0x48
0x44
0x52
0x00
0x00
0x02
0x58
0x00
0x00
0x49
0x45
0x4e
0x44
0xae
0x42
0x60
0x82
plot (generic function with 1 method)@bind in logs
""
""
0.841471
1
External logs
Function defined in another cell:
flog (generic function with 1 method)x might be too large!
123
Function defined in another file:
"/tmp/jl_u5REqZ"ingredients (generic function with 1 method)Main.jl_u5REqZx might be too large!
123
Hello
I am a footnote nothing, how cool is that!
But im not working :(
Inside text!
123
hello
artifacts/ (6.484 MiB) clones/ (9.083 MiB) compiled/ (3.651 MiB) conda/ (6.797 MiB) environments/ (6.009 MiB) logs/ (75.441 KiB) packages/ (1.444 MiB) pluto_notebooks/ (8.800 MiB) prefs/ (7.423 MiB) registries/ (448.372 KiB) scratchspaces/ (4.167 MiB)
UndefVarError: FileTrees not defined
Here is what happened, the most recent locations are first:
asdf
123
123
123
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
This is too long.
![]()
Process(`ls -lha /home/runner/.julia`, ProcessExited(0))total 88K drwxr-xr-x 13 runner docker 4.0K Jun 16 11:01 . drwxr-x--- 13 runner docker 4.0K Jun 16 11:31 .. drwxr-xr-x 254 runner docker 20K Jun 16 12:08 artifacts drwxr-xr-x 4 runner docker 4.0K Jun 16 11:08 clones drwxr-xr-x 3 runner docker 4.0K Jun 16 10:28 compiled drwxr-xr-x 3 runner docker 4.0K Jun 16 11:01 conda drwxr-xr-x 3 runner docker 4.0K Jun 16 10:56 environments drwxr-xr-x 2 runner docker 4.0K Jun 16 12:08 logs drwxr-xr-x 480 runner docker 20K Jun 16 12:08 packages drwxr-xr-x 2 runner docker 4.0K Jun 16 12:02 pluto_notebooks drwxr-xr-x 2 runner docker 4.0K Jun 16 11:01 prefs drwxr-xr-x 2 runner docker 4.0K Jun 16 11:58 registries drwxr-xr-x 5 runner docker 4.0K Jun 16 11:46 scratchspaces
asdf
MethodError: no method matching show_richest(::Float64, ::Float64)
Closest candidates are:
show_richest(::IO, ::Any) at ~/.julia/packages/Pluto/6smog/src/runner/PlutoRunner/src/display/mime dance.jl:70
Here is what happened, the most recent locations are first:
- macro expansionfrom This cell: line 7
for x in LinRange(-5,5,40)print(f(x,y) ? "X" : " ")end - Show more...
Here is some ascii art!
UndefVarError: FileTrees not defined
Here is what happened, the most recent locations are first:
1
1
2
2
3
3
4
4
5
5
6
6
7
7
8
8
9
9
10
10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
91
92
93
94
95
96
97
98
99
100
asdf