Skip to content

Instantly share code, notes, and snippets.

View abraham-ny's full-sized avatar
🧙‍♂️
My grimoire of code rests here, free for those who dare command the beast.

Abraham abraham-ny

🧙‍♂️
My grimoire of code rests here, free for those who dare command the beast.
View GitHub Profile
@abraham-ny
abraham-ny / updater.go
Last active April 10, 2025 11:29
How to check for updates from github in go and download the latest executable
package main
import (
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
)