I build small things that sometimes run on the internet and occasionally write about programming.
I’m particularly interested in developer tools, compilers, distributed systems, and practical applications of generative AI.
Software Engineer
I build small things that sometimes run on the internet and occasionally write about programming.
I’m particularly interested in developer tools, compilers, distributed systems, and practical applications of generative AI.
Full featured web framework for go, with a focus on simplicity, extensibility and flexibility.
View on GitHublocalbase is a lightweight tool for provisioning secure .local domains. It simplifies the process of setting up local development environments with …
View on GitHubA go library for parsing and grouping static web templates, providing a simple interface to call and execute them.
View on GitHubThis post will explore the distinctions between concurrency and parallelism in programming, focusing on how Go manages concurrency
Read Postpackage main
import "net/http"
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
})
http.ListenAndServe(":8080", nil)
}
Go offers a variety of built-in batteries with simple interfaces that anyone can quickly understand and utilize. This post will discuss one of these …
Read Post