Skip to content

Instantly share code, notes, and snippets.

@marchon
Forked from gabriel/tripcode.md
Created January 15, 2019 01:12
Show Gist options
  • Save marchon/40bc0905bb3db3877f222d71c3cf988e to your computer and use it in GitHub Desktop.
Save marchon/40bc0905bb3db3877f222d71c3cf988e 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