My Passions & Interests

Here's the deal, I'm passionate about technology, gaming, and fitness .

"The best programs are written when the programmer is supposed to be working on something else." -- Melinda Varian

Blog posts

What drives me

My current favorites (by category)

Programming

  1. Go - For its simplicity and concurrency
  2. Rust - For its memory safety and performance
  3. Python - For rapid prototyping and versatility

Gaming

  1. Strategy games (Total War, Civilization)
  2. RPGs with deep customization
  3. Indie games that push creative boundaries

Fitness

  1. Compound lifts (deadlifts, squats, bench)
  2. Progressive overload principles
  3. Consistency over perfection

Here's what elegant Go code looks like:

func main() {
    fmt.Println("Hello, concurrent world!")

ch := make(chan string, 3)
go func() { ch <- "goroutines" }()
go func() { ch <- "are" }()
go func() { ch <- "awesome" }()

for i := 0; i < 3; i++ {
    fmt.Println(<-ch)
}
}

Want to get in touch? Contact me here .

This site was generated with a custom-built static site generator. Check out my other projects at kiefx.me .