I am interested in:
1) Understanding in detail how fractals are draw.
2) Coding a computer program to draw a simple fractal.
Can someone with good explaining skills take care of 1) for me? I don't think this link does a good job. I step-by-step example would be fantastic or a link/video with a good step-by-step explanation. THX!
I know complex numbers and the complex plane. My understanding is that you choose a complex number to begin with and keep feeding back the result into the equation (i.e. iterating). Now my question: how from the results do you draw something? You just put a black dot for each result in the complex plane?

The answer is yes, you just put a little black point if the result says it is in the Mandelbrot set, and no point if it doesn't.
But the fact is, you would have to iterate through an infinite amount of points to do that! Instead, something like the following is usually done. Some psuedo-code:
$$ \color{blue}{\text{for }x_{\text{min}} \to x, x \neq x_{\text{max}}, x+\Delta \to x}: $$ $$ \color{green}{\text{for }y_{\text{min}} \to y, y \neq y_{\text{max}}, y+\Delta \to y}: $$ $$ \color{red}{\text{If Number In Set}(x+yi)}:$$ $$ \color{red}{\text{Color}(x+yi)} $$ $$ \color{green}{\text{Repeat}}$$ $$ \color{blue}{\text{Repeat}}$$
Where $\Delta$ is a small number, but not too small. Depending on the size of your picture, usually somewhere around $\Delta = 0.05$ is good.