Birth of blog


why

I want to write about things that I'm doing, problems I'm solving, and art I'm creating.

what

I really want to make videos, but the barrier is high. I'll start with this. I want writing a post to be incredibly easy. I don't need fancy formatting. Markdown should work.

how

result

here's what code looks like:

import Foundation

extension Array {
    mutating func moveItem(from: Int, to: Int) {
        insert(remove(at: from), at: to)
    }
}

// this is a comment
struct Test {
    let variable: Bool = false
    let number: Float = 0.5 + 0.5
    let str: String = "hello world"
}