
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
github.com/wallclockbuilder/gstrings
#stringutil
Ruby's string manipulation magic brought to Golang
Why?
"What was the biggest surprise you encountered rolling out Go?" I knew the answer instantly: Although we expected C++ programmers to see Go as an alternative, instead most Go programmers come from languages like Python and Ruby. Robert Pike, Less is exponentially more
stringutil makes all the string manipulation methods from ruby accessible in go.
##Install
go get https://github.com/wallclockbuilder/stringutil
##Import
import "stringutil" "https://github.com/wallclockbuilder/stringutil"
I want to remove the trailing space from the end of a string.
This is what Go forces me to do:
strings.TrimRightFunc(s, unicode.IsSpace)
This is the simple version from Ruby:
stringutil.Rstrip(s)
I prefer the Ruby version.
##Use
package main
import "github.com/wallclockbuilder/stringutil"
func main() {
stringutil.Capitalize("abcde") #=> "ABCDE"
stringutil.Reverse("stressed") #=> "desserts"
stringutil.Swapcase("Hello") #=> "hELLO"
}
##Documentation
go doc
style documentation for this package is available online at http://godoc.org/github.com/wallclockbuilder/stringutil
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.