Skip to content

Instantly share code, notes, and snippets.

View Jyny's full-sized avatar
:octocat:
self exploring and developing

Jerry Y. Chen Jyny

:octocat:
self exploring and developing
View GitHub Profile
@Jyny
Jyny / Y-Combinator.go
Last active November 21, 2023 13:39
The Y combinator in Go with generics
package main
import "fmt"
// Y Combinator follows:
// allow recursive calls to anonymous functions
// Ref:
// https://gist.github.com/wsgac/dda75d57c27258cc216c10f9867eb6e8
// https://eli.thegreenplace.net/2022/the-y-combinator-in-go-with-generics/
@Jyny
Jyny / gce-free.sh
Last active December 13, 2021 09:46
Google Compute Engine free tier create script (Arch Linux)
gcloud compute instances create free --image-project=arch-linux-gce --image-family=arch --boot-disk-size=30GB --zone=us-west1-c --machine-type=e2-micro