Julia

Say you wrote an ingeneous julia function ```julia magic(x) = incredible(x) ``` And you want this to be available to other people. Then the first thing to do is to create a file called `Magic.jl` …

## Setup Similar to [last post](/posts/2022/05/basic-neural-network-with-julia/), where we made a basic neural network with just one neuron and no hidden layer, we will build a two neuron and a …

## Basics Every time julia starts whether it is in interactive mode or when it is used to run scripts, it runs a startup script. It is called `startup.jl`. Unless otherwise configured it is located …