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
- Why Go is More Impressive than Other Languages
- Why Mobile Gaming Was a Mistake
- The Unparalleled Majesty of Rust Programming
What drives me
- Programming Languages : The elegance of Go's simplicity and Rust's safety
- PC Gaming : The freedom of choice in hardware, mods, and game complexity
- Strength Training : Building both physical and mental resilience
- Continuous Learning : Each domain teaches lessons applicable to the others
My current favorites (by category)
Programming
- Go - For its simplicity and concurrency
- Rust - For its memory safety and performance
- Python - For rapid prototyping and versatility
Gaming
- Strategy games (Total War, Civilization)
- RPGs with deep customization
- Indie games that push creative boundaries
Fitness
- Compound lifts (deadlifts, squats, bench)
- Progressive overload principles
- 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 .