Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 996 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 996 Bytes

SPoNgEBoB

FOSSA Status

Simple project for converting normal text to sPonGeBOb tExT

Mocking SpongeBob

It uses CUTTING EDGE™ technology like MARKOV CHAINS to generate REALISTICⓇ SPonGeBoB text.️

Getting it

go get -u github.com/calini/spongebob

Using the CLI

spongebob "hello world"
> hELlO wOrlD

Building it manually

go build -o ./spongebob

./spongebob "hello world"
> hELlO wOrlD

Using it as a library

package main

import (
	"fmt"	
	
	"github.com/calini/spongebob"
)

func main() {
    fmt.Println(spongebob.Text("Hello world!"))
}

FOSSA Status