Live data from Hacker News

JuliaCon 2019 Videos

youtube.com

1–10 of 26 posts

Re: JuliaCon 2019 Videos

#3
If anyone is looking for video recommendations to get started: here’s a couple that I thought were great and should be interesting and approachable to just about anyone.

Steven G. Johnson’s keynote address. It’s longer format but really interesting, informative, entertaining and well delivered. The main topic is metaprogramming. https://youtu.be/mSgXWpvQEHE

Stefan Karpinski’s talk on the unreasonable effectiveness of multiple dispatch. He discusses the fact that Julia has such dramatic code re-use and sharing between libraries and he discusses some reasons why he thinks multiple dispatch is uniquely able to offer this. https://youtu.be/kc9HwsxE1OY

Re: JuliaCon 2019 Videos

#4
I'm glad Julia is continuing to make progress. There's certainly a learning curve but that's how it goes with these powerful languages. I believe it's inherently superior to the competition, and as long as the rough spots continue to get filed down and the community remains engaged and willing to help newcomers, it will meet with ultimate success.

Re: JuliaCon 2019 Videos

#6
post #5

Julia: come for the syntax, stay for the speed https://www.nature.com/articles/d41586-019-02310-3

I came for the speed, and I left because of the speed. It's impressive how the interpreter is slow to start..

Re: JuliaCon 2019 Videos

#7
post #6
post #5

Julia: come for the syntax, stay for the speed https://www.nature.com/articles/d41586-019-02310-3

I came for the speed, and I left because of the speed. It's impressive how the interpreter is slow to start..

That's mostly because Julia doesn't have yet an interpreter (outside of the debugger), only a JIT compiler. Thankfully the "time to first plot" is the new priority for the compiler team since the multithreading is already working.

Re: JuliaCon 2019 Videos

#9
post #7
post #6

Earlier quoted context omitted.

I came for the speed, and I left because of the speed. It's impressive how the interpreter is slow to start..

That's mostly because Julia doesn't have yet an interpreter (outside of the debugger), only a JIT compiler. Thankfully the "time to first plot" is the new priority for the compiler team since the multithreading is already working.

I hope it goes well, this has been a common complaint for half a decade now.

Re: JuliaCon 2019 Videos

#10
post #7
post #6

Earlier quoted context omitted.

I came for the speed, and I left because of the speed. It's impressive how the interpreter is slow to start..

That's mostly because Julia doesn't have yet an interpreter (outside of the debugger), only a JIT compiler. Thankfully the "time to first plot" is the new priority for the compiler team since the multithreading is already working.

Most Common Lisp compilers survive well with incremental compilation. Build-times and development are very fast, with no interpreter in sight.
Post reply on HN