Popularity
3.8
Declining
Activity
0.0
Stable
81
4
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.
-
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.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
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.