Misc.
- Julia splat operator unpacking
julia, linear algebra, is there a function finding all vectors orthogonal to the given one?
What identifier is the most common in Julia? The answer might surprise you!
Saving arrays of different length in a single data frame in Julia
Why enforcing order onto Julia matrix vector multiplications has speed up?
How to automatically parenthesize an arbitrary Julia expression
Latex
ltx = Base.REPLCompletions.latex_symbols
for i in 1:3
println("a$(ltx["\\_$i"])")
end
World Age
Documentation
Building
Windows
MSYS2 & MinGW
- The MSYS2 build is not tested, likely broken, and should probably be removed from that document unless someone wants to submit a pull request to fix it. Cross-compilation from Cygwin is the supported method for building Julia from source on Windows right now.
- WIP: CMake #11754
MacOS
- failed to build julia against mkl on osx #15133
- Julia with MKL on OSX
- Building Julia 0.6.0 with MKL on OSX 10.12.5
Jupyter
- Command line options for Julia kernels in Jupyter
- What’s your strategy to version-control your IJulia notebook?
Error-handling
GC
- Does calling
gc()
manually, result in allfinalizers
being executed immediately? - Are finalisers called when the last reference is garbage collected, or when Any reference is garbage collected?