Popularity
3.9
Growing
Activity
0.0
Stable
80
3
13
Programming language: Go
License: BSD 3-clause "New" or "Revised" License
Tags:
Miscellaneous
Strings
Latest version: v1.0.1
morse alternatives and similar packages
Based on the "Strings" category.
Alternatively, view morse alternatives based on common mentions on social networks and blogs.
-
go-formatter
A curated list of awesome Go frameworks, libraries and software -
ghorg
Quickly clone an entire org/users repositories into one directory - Supports GitHub, GitLab, Bitbucket, and more 🥚 -
gobeam/Stringy
Convert string to camel case, snake case, kebab case / slugify, custom delimiter, pad string, tease string and many other functionalities with help of by Stringy package. -
numa
NUMA is a utility library, which is written in go. It help us to write some NUMA-AWARED code. -
bexp
Go implementation of Brace Expansion mechanism to generate arbitrary strings.
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.com
Do you think we are missing an alternative of morse or a related project?
Popular Comparisons
README
morse
Morse Code Library in Go
Download and Use
go get -u -v github.com/alwindoss/morse
or
dep ensure -add github.com/alwindoss/morse
Sample Usage
package main
import (
"fmt"
"strings"
"github.com/alwindoss/morse"
)
func main() {
h := morse.NewHacker()
morseCode, err := h.Encode(strings.NewReader("Convert this to Morse"))
if err != nil {
return
}
// Morse Code is: -.-. --- ...- . .-. - / - .... .. ... / - --- / -- --- .-. ... .
fmt.Printf("Morse Code is: %s\n", string(morseCode))
}
*Note that all licence references and agreements mentioned in the morse README section above
are relevant to that project's source code only.