Tim Holy

Results 243 issues of Tim Holy

https://stackoverflow.com/questions/45772848/perspective-warp-an-image-in-julia I haven't dug into this here, but the core issue seems to be how to define a perspective transformation that takes a 2d input and returns a 2d output.

To answer my own question...it's almost entirely due to `make_typealias` in `base/show.jl`. https://github.com/JuliaLang/julia/pull/36107. I think there was discussion of caching its results at some point, but I can't find the...

`codeview` tests segfaults: - mac: https://github.com/JuliaDebug/Cthulhu.jl/pull/208/checks?check_run_id=3262559113 - windows: https://github.com/JuliaDebug/Cthulhu.jl/runs/3263004717

Currently the typed code is the only "first-class" code view; switching optimization state or other manipulations returns you to the typed view. However, in the longer run it might be...

It would be lovely if `enable()`, `disable()`, and `remove()` worked on the current breakpoint. Although those names are pretty generic, so perhaps some global `thisbp` could be defined?

Most of the remaining bugs seem to have to do with ccall and llvmcall. Here's a daring proposal: when we're constructing the framecode, what if we scan it and return...

https://github.com/JuliaDebug/JuliaInterpreter.jl/pull/457#issuecomment-747341922 and specifically https://github.com/JuliaDebug/JuliaInterpreter.jl/runs/1569470456

This is a draft of a new tokenization of lowered IR. The main goal is to split off from the representation currently used in Base so that we are free...

On recent Julia versions (I'm using 1.4.0-DEV.77), I fear that anything calling `iolock_begin`/`iolock_end` may be problematic. Demo: ```julia julia> using JuliaInterpreter julia> repl = Base.active_repl; julia> @interpret displaysize(repl.t.out_stream) signal (11):...

bug

In the C/C++ world [rr](https://rr-project.org/) seems to be the greatest thing ever because you can go backwards in time. Should we consider something similar here? We could just (1) `deepcopy`...