Skip to content

Instantly share code, notes, and snippets.

@nathan-osman
nathan-osman / win32.go
Last active October 10, 2024 01:33
Simple Windows GUI application written in Go
package main
import (
"log"
"syscall"
"unsafe"
)
var (
kernel32 = syscall.NewLazyDLL("kernel32.dll")
@staltz
staltz / introrx.md
Last active November 17, 2024 01:08
The introduction to Reactive Programming you've been missing