Mason Protter
Mason Protter
Currently, when one writes a loop over an iterator, it gets lowered from ```julia for i in v ... end ``` to the equivalent of ```julia res = iterate(v) while...
Looks like a bad output container is being selected by `collect` here: ```julia julia> using Transducers, StructArrays julia> data = StructArray(a=1:10); julia> data |> Map(x -> (a=x.a^2,)) |> Filter(x ->...
Sort of a strange issue: ```julia julia> using GR, LaTeXStrings julia> xs = 0:π/100:2π; julia> plot(xs, sin.(xs), title=L"\psi_{\uparrow}") ERROR: syntax error julia> ``` produces  Interestingly, one does not get...
`x` should be global in both of these: ```julia julia> solve_from_local(:(x[] = 1)) :($(Expr(:scoped, (bounds = Var[@local x], freevars = Var[], bound_inits = Symbol[]), :((@local x)[] = 1)))) julia> solve_from_local(:(setindex!(x,...
Here's a MWE: ```julia julia> @ct_enable function f(x::Vararg{Any, N}) where {N} N end ERROR: TypeError: in TypeVar, in upper bound, expected Type, got Vararg{Any, N} Stacktrace: [1] TypeVar(n::Symbol, ub::Any) @...
MWE on my system: ```julia #+begin_src jupyter-julia :session foo @info "hi" #+end_src #+RESULTS: : [ Info: hi ``` After doing this, the `*Warnings*` buffer pops open and says: ``` ⛔...
It'd be great if we could display gifs inline with emacs-jupyter. I've tested this: https://ivanaf.com/animating_gifs_in_orgmode.html and it does work. the only tricky part is convincing emacs jupyter to actually display...
When writing macros, you often have to come up with very clever ways of writing code that works either in the global or local scope. It'd be nice if I...
The [docstring for `includet` says](https://timholy.github.io/Revise.jl/stable/user_reference/#Revise.includet) > `includet` is deliberately non-recursive, so if filename loads any other files, they will not be automatically tracked. (See [Revise.track](https://timholy.github.io/Revise.jl/stable/user_reference/#Revise.track) to set it up manually.)...