andyvandy

Results 14 comments of andyvandy

I ran into issues here as well with ubuntu 19.10. My issue was that the adapter, `'org.bluez.Adapter1'`, wasn't being found because I hadn't setup my Pi correctly. I was able...

Also, still really appreciate you sharing all your amazing work Steven!

I tested this yesterday and ran into more crashing than before. I just pulled and locally compiled the latest code today and found that the release build is crashing for...

still not sure of the exact root but one more hint. Updating the above example to include a type converter which casts to string seems to prevent the crash which...

I've gotten a step closer! I realized that ingesting a range of all strings results in a numpy array with unicode dtype. I can now reliably reproduce the crashes by...

Numpy 2.2.2 (latest) tried with 2.0.0 and xloil 0.19.1 as well and see the same

Interesting, I just tested with numpy 1.26.4 and 1.24.4 and observe the same behaviour for both dtype inference from excel as well as crashing when returning the 1x1 unicode dtype...

Alright, managed to narrow it down again. Using numpy 1.26.4, I see the crashing begins in 0.17.12 and that if we go back all the way to v0.17.11 the immediate...

That fixes it! Nice spot! Tracing through (Mostly to make sure I understand) I see that `stringLength` gets initialized as `0` here since it's initialized first ([point #3 in the...

> The problem was that _itemLength_ is not initialised before being used to calculate _stringLength_, so it just takes a "random" value, which is why it doesn't crash consistently between...