Chris Rackauckas walks through setting up Julia on your computer, using environments, and basic package development.
Since this video, Julia for VS Code has become the standard IDE in the Julia community. The 2020 and 2021 JuliaCon talks walk through some of the features.
Chris has a more in depth video on developing Julia packages.
MATLAB-Python-Julia cheatsheet
Helpful resource to translate between MATLAB or NumPy and Julia syntax from the QuantEcon folks.
Multiple dispatch is one of Julia's core features. As a result, methods and the data they act on are decoupled from each other (in contrast to OOP idioms). This behavior allows us to easily extend both the data model and the operations over it. This concept is covered in more detail in the methods section of the Julia docs.
The Unreasonable Effectiveness of Multiple Dispatch
In this Juliacon 2019 talk, Stefan Karpinski describes why multiple dispatch leads to lots of code reuse and sharing.
An Example for Mathematical Optimizers
Mathieu Besançon walks through an example of using multiple dispatch in an optimization context.
JuliaLang Antipatterns
Frames Catherine White has a great post on Julia antipatterns (some of which I used before reading this) and tips on what to do instead.
Optimizing Serial Code
This lecture from the SciML course (originally taught at MIT as 18.337J/6.338J: Parallel Computing and Scientific Machine Learning) explains how to write very fast Julia code (and you'll learn a lot about Julia's compiler and memory management along the way).
The lectures on parallelism (The Basics of Single Node Parallel Computing, The Different Flavors of Parallelism) are great resources to make your code even faster!
7 Julia Gotchas and How to Handle Them
This blog post goes over some easy ways to speed up your Julia code (e.g., avoiding global scope, detecting type instability, etc.).
The Julia docs are a fantastic resource and go quite a bit deeper than many of the resources above. One of the great things about Julia is that it is (almost entirely) written in Julia, so it's very easy to check out how functions you're using are implemented under the hood. For example, I frequently find myself looking at the linear algebra source code.
Additionally, many members of the Julia community frequently blog, and juliabloggers.com aggregates many of these. I especially enjoy Chris Rackauckas' blog, Frames Catherine White's blog, and Mathieu Besançon's blog.