Sexifies strings with a fancy rainbro effect created using out-of-phase sine wave cycles from this awesome tutorial.
go get -u github.com/traviscampbell/sinebow/...
$ seq -s " \\_/" 256 | tr -d "0-9" | fold -70 | sinebow
package main
import (
"fmt"
"github.com/traviscampbell/sinebow"
)
func main() {
fmt.Println(sinebow.Rainbro("Go Fuck Yourself, Cuffy!"))
fmt.Println(sinebow.RainbroBG("Go Fuck Yourself, Cuffy!"))
}
The included example snippet demonstrates the difference between sexifying slices of strings and multiline strings.