Skip to content

Instantly share code, notes, and snippets.

View betandr's full-sized avatar
🦄
Vague, but exciting...

Beth Anderson betandr

🦄
Vague, but exciting...
View GitHub Profile
@asukakenji
asukakenji / 0-go-os-arch.md
Last active December 6, 2025 10:22
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@derekkenney
derekkenney / big-o-quadratic.go
Last active May 30, 2020 02:49
Example of Determining Quadratic Runtime of a Go Function
package main
import "log"
var planets1 = []string{"Tattooine", "Dantooine", "Bespin", "Yavin4"}
var planets2 = []string{"Exegol", "Jeda", "Jakku", "Mustafa", "Yavin4"}
var searches = 0
func main() {