Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
31–40 of 249 posts
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#32Can't wait for the language to be as widely used as Python or R. Been playing around with it at home since the 1.0 release and it really is a joy to use.
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#33Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#34what good is philosophy if you choose arrays based on 1? https://groups.google.com/forum/?hl=en#!topic/julia-dev/tNN7...
Fun fact: arrays in Fortran are also based on 1 by default, but they can be defined to start at 0, or even arbitrary negative numbers. The following are all valid: integer :: array1(5) integer :: array2(0:4) integer :: array3(5:10) integer :: array4(-4:4)
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#35Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#36Julia deserves way more attention than it's currently getting. I'm hoping now that it's past 1.0, a few big-name companies will start using it and raise its profile.
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#37With computational power becoming cheaper and cheaper - will we have two-language problem anymore?
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#38Can't wait for the language to be as widely used as Python or R. Been playing around with it at home since the 1.0 release and it really is a joy to use.
I wish that Python feels a bit of Julia's heat, as that might be the only way for more PyPy love.
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#39I could totally see someone like my dad using it (he's an aerospace engineer, not software), but I have friends who work in compsci in academia trying to evangelize the language.
Not trying to start a war here, but I'm curious what more-seasoned Julia vet might have seen that someone with only ~12 hours with the language wouldn't.
Re: Julia Language Co-Creators Win James H. Wilkinson Prize for Numerical Software
#40I personally don't like the fact that you have structs but no classes and no instance methods, but I know this is personal and don't want to start a religious war this morning
Or that you have to say foo(x) instead of x.foo()?
The latter makes writing code using autocomplete less doable, but reads more naturally in many cases.
I can't think of compelling pragmatic reason to mind the former, but if you have one I'd like to hear it.