So, the Palmetto Cyber Defense Competition is over and it was a blast even if I’m completely exhausted. However, figured I’d post some code I actually wrote and ran in the competition:

package main

func main() {
    for i := 0; i < 8; i++ {
        go func() {
            for {
            }
        }()
    }
    for {
    }
}

#golang #burningCpuCycles