John George Francis
John George Francis
## PR Checklist If you are contributing to `Javis.jl`, please make sure you are able to check off each item on this list: - [x] Did I update `CHANGELOG.md` with...
**Describe the bug** The docstring for `anim_rotate_around` describes ```julia-repl help?> ?anim_rotate_around search: anim_rotate_around anim_rotate_around Animate the rotation of the attached object (see act!) around a point. Similiar function: anim_rotate to...
## PR Checklist primarily this PR adds support for using dvisvgm which is distributed with TeXLive to render latex . This is an alternative to the existing mathjax solution. Mathjax...
the suggested method is to add ```julia atreplinit() do repl try @eval using ReplMaker @async initrepl( apropos; prompt_text="search> ", prompt_color=:magenta, start_key=')', mode_name="search_mode" ) catch end end ``` now if we...
the Alt + PrtSc + number key does not seem to work except when the number is 5 or 6 tested with xev , showkey and evtest none of them...
## PR Checklist If you are contributing to `Javis.jl`, please make sure you are able to check off each item on this list: - [X] Did I update `CHANGELOG.md` with...
```julia import Javis video = Video(500,500) Background(1:100,(args...)->background("white")) obj = Object(1:100,(args...)->begin box(O,20,20;action=:stroke) return O end,O+20) function path(action) p1 = O+20 p2 = O+200 newpath() arc2r((p1+p2)/2,p1,p2,action=action) path1=pathtopoly() closepath() return path1 end pathobjs...
steps to reproduce 1)open firefox and say a terminal in two tabs side by side 2)navigate to some page (preferably some slow webpage) in firefox and immediately change to terminal...
i have the following nasm which loads a part of itself into a region in memory and executes from there . replaying it backwards with rr crashes when it enters...
importing LoopVectorization or importing any package that imports it will cause the following code to segfault or it mutates `res2` in this example (it shouldn't) ```julia using LoopVectorization using Enzyme...