Emoji icon of a mountain. Ethan Woodward

Hello World


Well here we are…

My vague commitment to publishing my thoughts on the internet.

Stay tuned for sizzling hot takes about programming and architecting resilient, scalable systems!


import (
  "fmt"
  "math/rand"
  "time"
)

func daysUntilInspirationStrikes() time.Time {
  return time.Hour * 24 * rand.Intn(30)
}

func main() {
  fmt.Println("Hello, blog!")
  time.Sleep(daysUntilInspirationStrikes())
  fmt.Println("💰💰💰")
}