Skip to content

Instantly share code, notes, and snippets.

@gabriel
Created August 11, 2018 00:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gabriel/2b135f5beedba8623e840eacb6ee9bb7 to your computer and use it in GitHub Desktop.
Save gabriel/2b135f5beedba8623e840eacb6ee9bb7 to your computer and use it in GitHub Desktop.
q
package main

import (
	"fmt"

	"github.com/aquilax/tripcode"
)

func main() {
	fmt.Println(tripcode.Tripcode("Matlock"))
	fmt.Println(tripcode.Tripcode("M@tlock!"))
	fmt.Println(tripcode.Tripcode("Freed@m-"))
	fmt.Println(tripcode.Tripcode("F!ghtF!g"))
	fmt.Println(tripcode.Tripcode("NowC@mes"))
	fmt.Println(tripcode.Tripcode("StoRMkiL"))
	fmt.Println(tripcode.Tripcode("WeAReQ@Q"))
}
> go run tripcode.go
ITPb.qbhqo
UW.yye1fxo
xowAT4Z3VQ
2jsTvXXmXs
4pRcUA0lBE
CbboFOtcZs
A6yxsPKia.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment