William Thompson

Results 105 comments of William Thompson

Thanks @t-bltg! ```julia i = rand(RGB, 10, 10) plot(i, xticks=1:10, yticks=1:10) ``` Works! But ```julia plot(1:10, 1:10, i, xticks=1:10, yticks=1:10) ``` does not.

Hi @t-bltg, here's a motivating example for why I believe this is a bug. The root issue is not the tick positions but the location the image is rendered on...

I keep getting bit by this as well, it's very tempting to hit CTRL+C to close the search and it always crashes Julia. For anyone else on Windows, you can...

Thank you these are great points -- yes this is almost perfect except for the fact that it creates a view instead of a copy. Sometimes we would want to...

Not sure if exactly the same issue, but trying the latest win64 msi installer on an up to date windows 11 install also failed. It appeared to install successfully but...

> Good morning. Most likely a startup error. In that case I’m happy to open a new issue if you prefer. > Do you see an error if you execute...

Bump on this! This is still an issue with the GR backend of Plots.

I'll start gathering info for what needs to be fixed. The majority are all in the table handling code. Here is a list of pointer operations in the package: `table.jl`...

Looking at the unsafe operations in header.jl, we have ```julia key = Vector{UInt8}(undef, 81) # ... str = unsafe_string(pointer(key)) ``` the same pattern is used 3 times. I think this...