gofuckyourself alternatives and similar packages
Based on the "Utility" category.
Alternatively, view gofuckyourself alternatives based on common mentions on social networks and blogs.
-
Koazee
A StreamLike, Immutable, Lazy Loading and smart Golang Library to deal with slices. -
gotabulate
Gotabulate - Easily pretty-print your tabular data with Go -
strutil-go
Golang metrics for calculating string similarity and other string utility functions -
regroup
Match regex group into go struct using struct tags and automatic parsing -
html2data
Library and cli for extracting data from HTML via CSS selectors -
frontmatter
Go library for detecting and decoding various content front matter formats -
Tagify
Tagify produces a set of tags from a given source. Source can be either an HTML page, a Markdown document or a plain text. Supports English, Russian, Chinese, Hindi, Spanish, Arabic, Japanese, German, Hebrew, French and Korean languages. -
TySug
A project around helping to prevent typing typos. TySug (Typo Suggestions) suggests alternative words with respect to keyboard layouts -
parseargs-go
A string argument parser that understands quotes and backslashes
TestGPT | Generating meaningful tests for busy devs
Do you think we are missing an alternative of gofuckyourself or a related project?
README
gofuckyourself
A sanitization-based swear filter for Go.
Installing
go get github.com/JoshuaDoes/gofuckyourself
Example
package main
import (
"fmt"
swearfilter "github.com/JoshuaDoes/gofuckyourself"
)
var message = "This is a fûçking message with shitty swear words."
var swears = []string{"fuck", "shit"}
func main() {
filter := swearfilter.New(false, false, false, false, false, swears...)
swearFound, swearsFound, err := filter.Check(message)
fmt.Println("Swear found: ", swearFound)
fmt.Println("Swears tripped: ", swearsFound)
fmt.Println("Error: ", err)
}
Output
> go run main.go
Swear found: true
Swears tripped: [fuck shit]
Error: <nil>
License
The source code for gofuckyourself is released under the MIT License. See LICENSE for more details.
Donations
All donations are appreciated and help me stay awake at night to work on this more. Even if it's not much, it helps a lot in the long run!
*Note that all licence references and agreements mentioned in the gofuckyourself README section above
are relevant to that project's source code only.