tomerarnon

Results 17 issues of tomerarnon

The following code, which I came across on[ this thread](https://discourse.julialang.org/t/ann-fatou-jl-easily-share-julia-fractals/12278/4), throws an error: ``` julia> mandelbrot(:(z^2+c),n=700,N=20,∂=[-1.91,0.51,-1.21,1.21],iter=true,cmap="gist_earth") |> fatou |> plot 0.540635 seconds (19.21 M allocations: 509.339 MiB, 27.11% gc time)...

enhancement
help wanted

Hi, I recently downloaded this package and have noticed a couple of syntax highlighting issues. I have attached a couple of examples to illustrate: 1. Note that the second `for`...

`first` and `last` do not behave as expected. It looks like what it happening is that the indexing is being done with `[1]` and `[length(etp)]`. See this example: ```julia julia>...

One student submitted an algorithm which proceeded as follows: ``` julia> binarysearch([1, 2, 3, 4, 5, 6, 7], 1) book = [1, 2, 3, 4, 5, 6, 7] book =...

@staticfloat When trying to add Cairo on Julia v1.2: ```julia (v1.2) pkg> add Cairo Resolving package versions... Updating `~/.julia/environments/v1.2/Project.toml` [no changes] Updating `~/.julia/environments/v1.2/Manifest.toml` [no changes] (v1.2) pkg> build Cairo Building...

```julia julia> r = Rope(Point(1, 0), Point(1, 1), Point(2, 1)); julia> q = Quadrangle(Point(0,0), Point(0, 1), Point(1, 1), Point(1, 0)); julia> intersection(q, r) ERROR: StackOverflowError: Stacktrace: [1] intersection(f::Function, g₁::Quadrangle{2, Float64},...

help wanted
feature

(This may be a duplicate of #676, #201, and/or #161, but I can't tell.) A segfault occurs when trying to show the window of a trivial glade-defined gui on m1...

This isn't an issue directly with RobotOS.jl I think, but rather with its use of PyCall. However, I'm hoping there's some insight to be gained here, and maybe things that...

- Equality would be useful to automatically have. I haven't looked too deeply into the automatic type generation from message names, but probably using something like AutoHashEquals.jl would be easy...

Running the [example from the docs](https://jdlangs.github.io/RobotOS.jl/latest/?#full-example) interactively, `is_shutdown` returns true after a keyboard interrupt. ```julia julia>begin using RobotOS @rosimport geometry_msgs.msg: Point, Pose2D rostypegen() using .geometry_msgs.msg function callback(msg::Pose2D, pub_obj::Publisher{Point}) pt_msg =...