Correctness and composability bugs in the Julia ecosystem
1–10 of 419 posts
Re: Correctness and composability bugs in the Julia ecosystem
#2I’ve spent too much time in research working on codebases that feel like quicksand — you never know what changing something might do!— to want to worry about that for stdlib or major package ecosystems, too.
Re: Correctness and composability bugs in the Julia ecosystem
#3Re: Correctness and composability bugs in the Julia ecosystem
#4I remember complaining about 1-bsaed indexing only to be told "julia is great! we have offsetindex". If it's a source of bugs, that ... greatly reduces my future interest in adopting the language.
Re: Correctness and composability bugs in the Julia ecosystem
#5Re: Correctness and composability bugs in the Julia ecosystem
#6Re: Correctness and composability bugs in the Julia ecosystem
#7Re: Correctness and composability bugs in the Julia ecosystem
#8Re: Correctness and composability bugs in the Julia ecosystem
#9Re: Correctness and composability bugs in the Julia ecosystem
#10I mean, one can't expect all algorithms to work correctly with all datatypes just because the compiler allows that code to run ...you write tests and guarantee numerical stability for a small subset of types you can actually do it for, and then it's the code's consumers' job to ensure it work with types it's not documented to work and such, no? ...Julia is quite a dynamic language, JITed or what not, its semantics are closer to Python and Lisp than to Rust or Haskell ...maybe don't expect guarantees that aren't there and just code more defensively when making libraries others depends on?
Probably the Python + C(++) ecosystems works better bc their devs know they are working in loose, dynamic and weekly typed shoot-your-foot-off type languages and just take action and code defensively and test things properly, whereas Julia devs expect the language to give them guarantees that aren't there.