Skip to content

Latest commit

 

History

History
82 lines (77 loc) · 5.69 KB

sources_references.md

File metadata and controls

82 lines (77 loc) · 5.69 KB

Interesting videos

  • John Pearson | Introduction to Julia for Pythonistas
  • Keno Fischer | The Julia Language and C++: The Perfect Marriage?
  • Jeff Bezanson | Why is Julia fast?
    • https://www.youtube.com/watch?v=cjzcYM9YhwA
    • why are we not hitting the theoretical performance
    • the cause - uncertainty
    • system language/scripting language
    • "everything as a pointer is wrong approach"
    • dynamic glue around fast kernels
      • the two language problem causes headache as you always have to think about which parts to write in C and how to correctly interface with the rest
  • George Datseris | Why Julia is the most suitable language for science
    • https://youtu.be/7y-ahkUsIrY
    • points out
      • custom infix operators for example in use with tensor product
      • assignments return values
    • includes small JuliaDynamics presentation
    • shows another case where MD is better than OOD (collision time)
    • 16:26 - 1 to 1 representation of algorithm for Ljapunov exponent computation

Interesting articles

Interesting discussions

Other interesting sources

  • John Gibson | Why Julia?

  • Chris Rackauckas | Why Julia?

    • http://ucidatascienceinitiative.github.io/IntroToJulia/Html/WhyJulia
    • "Julia essentially answers the Pyston question: how should a language be restricted and thought about so that way it still looks and acts dynamic, but in the end is very easy to extend and optimize? When you understand how Julia’s type system allows for JIT compilation to not just work, but work very well by specializing on exactly the functions its seeing, then you see what makes Julia special and how to apply this design to your own codes to get similar results."
  • JuliaComputing | Julia Tutorials