Skip to content

Instantly share code, notes, and snippets.

View inkeliz's full-sized avatar
🎯
Focusing

inkeliz inkeliz

🎯
Focusing
View GitHub Profile
@aykevl
aykevl / main.go
Created May 26, 2020 12:30
Querying static WinRT methods using Go
package main
import (
"unsafe"
"syscall"
"github.com/go-ole/go-ole"
)
type IBluetoothAdapterStatics struct {
@davemackintosh
davemackintosh / obj-go-reader.go
Last active September 20, 2023 09:31
Really simple OBJ loader in Golang. Done this loads in C++ and thought I'd see how easy it was in Go, turns out it's really easy. No license, feel free to whatever with this.
package model
import (
"fmt"
"io"
"os"
"github.com/go-gl/mathgl/mgl32"
)