Skip to content

Instantly share code, notes, and snippets.

View zyriab's full-sized avatar
⚗️
Magnum opus venandi

Arthur Wallendorff zyriab

⚗️
Magnum opus venandi
View GitHub Profile
@zyriab
zyriab / colorizer.go
Created April 3, 2025 12:14
Better hex color code generator
package colorizer
import (
"fmt"
"math"
"math/rand"
)
const (
ratio float64 = 1 / math.Phi
@zyriab
zyriab / stripelivetotest.go
Last active March 12, 2025 14:20
Copy Stripe products, plan and prices from live to test
// This program copies the production products, plans and prices of Stripe
// over to the testing environment
//
//nolint:forbidigo,forcetypeassert,exhaustruct,mnd,gocognit,err113,maintidx
package main
import (
"fmt"
"log"
"os"