This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package colorizer | |
import ( | |
"fmt" | |
"math" | |
"math/rand" | |
) | |
const ( | |
ratio float64 = 1 / math.Phi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" |