All Projects → alwindoss → morse

alwindoss / morse

Licence: BSD-3-Clause license
Morse Code Library in Go

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to morse

FireSnapshot
A useful Firebase-Cloud-Firestore Wrapper with Codable.
Stars: ✭ 56 (-25.33%)
Mutual labels:  encode, decode
StringConvert
A simple C++11 based helper for converting string between a various charset
Stars: ✭ 16 (-78.67%)
Mutual labels:  encode, decode
libutf8
A whatwg compliant UTF8 encoding and decoding library
Stars: ✭ 32 (-57.33%)
Mutual labels:  encode, decode
time decode
A timestamp and date decoder written for python 3
Stars: ✭ 24 (-68%)
Mutual labels:  encode, decode
telegraph
Ruby gem to read and write Morse code
Stars: ✭ 14 (-81.33%)
Mutual labels:  morse-code, morse
cmorse
A simple text to Morse code converter
Stars: ✭ 23 (-69.33%)
Mutual labels:  morse-code, morse
Androidcamera
🔥🔥🔥自定义Android相机(仿抖音 TikTok),其中功能包括视频人脸识别贴纸,美颜,分段录制,视频裁剪,视频帧处理,获取视频关键帧,视频旋转,添加滤镜,添加水印,合成Gif到视频,文字转视频,图片转视频,音视频合成,音频变声处理,SoundTouch,Fmod音频处理。 Android camera(imitation Tik Tok), which includes video editor,audio editor,video face recognition stickers, segment recording,video cropping, video frame processing, get the first video frame, key frame, v…
Stars: ✭ 2,112 (+2716%)
Mutual labels:  encode, decode
crypthash-net
CryptHash.NET is a .NET multi-target library to encrypt/decrypt/hash/encode/decode strings and files, with an optional .NET Core multiplatform console utility.
Stars: ✭ 33 (-56%)
Mutual labels:  encode, decode
He
A robust HTML entity encoder/decoder written in JavaScript.
Stars: ✭ 2,973 (+3864%)
Mutual labels:  encode, decode
alawmulaw
A-Law and mu-Law codecs in JavaScript.
Stars: ✭ 22 (-70.67%)
Mutual labels:  encode, decode
node-lei-proto
简单的Buffer编码/解析模块
Stars: ✭ 14 (-81.33%)
Mutual labels:  encode, decode
janus-gateway-live
RTMP edge speed with janus-gateway
Stars: ✭ 38 (-49.33%)
Mutual labels:  encode, decode
Silk V3 Decoder
kn007's blog
Stars: ✭ 1,832 (+2342.67%)
Mutual labels:  encode, decode
fastproto
FastProto is a binary data processing tool written in Java.
Stars: ✭ 65 (-13.33%)
Mutual labels:  encode, decode
attic
A collection of personal tiny tools - mirror of https://gitlab.com/hydrargyrum/attic
Stars: ✭ 17 (-77.33%)
Mutual labels:  morse-code
InternetTelegraph
Source code for the One-Button Internet Telegraph
Stars: ✭ 15 (-80%)
Mutual labels:  morse-code
Reverse-Engineering
Tools I have Reverse Engineered !!
Stars: ✭ 46 (-38.67%)
Mutual labels:  decode
halp
Display a message in morse code on your capslock LED, keyboard backlight or using your screen brightness!
Stars: ✭ 25 (-66.67%)
Mutual labels:  morse-code
52-Weeks-of-Pi
Inspired by Shekhar Gulati's "52 technologies in 2016", I've decided to set a goal of 52 Pi ideas over the next year.
Stars: ✭ 54 (-28%)
Mutual labels:  morse-code
MorseCodeReceiver-UWP
💡 An UWP app which can translate the light sensor data into Morse code on mobile device.
Stars: ✭ 14 (-81.33%)
Mutual labels:  morse-code

morse

Go Report Card CircleCI codecov Go Reference License

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].