Morse code prosigns

Adam Scherlis

Morse code prosigns

2025-01-04

It's not technically true that SOS is the universal distress signal in Morse code.

SOS is a sequence of three letters, ... --- ..., with brief pauses between the letters.

The distress signal is ...---..., a signal "letter" composed of nine dots and dashes. It's a prosign, which is sort of like an ASCII control code. Formally, it should be written SOS, with an overbar, which means "the dots and dashes for SOS but without pauses".

(Oddly, this 80's cult classic has backing vocals singing something like ... ---..., or SOS.)

Wikipedia notes that you can also chop up the distress signal into ...- --.. ., "VZE", so VZE is an equally valid way to write the same prosign.

Ditto 3B, IETMS, and EEETTTEEE.

So naturally I wrote some code to find fun equivalent abbreviations for hypothetical prosigns.

There isn't much worth mentioning, algorithmically; just make a hash map with prosigns as keys and words as values, then run through a dictionary and populate it, then sort however you want.

Some fun results:

ABSINTHE = PHIALS
ACID = EMAIL
BEER = THIN
BIOLOGY = THEOLOGY
BOSS = NEWBIE
CUBE = TRUTH
DADAISM = NEWSBEAT
ELECTION = FICTION
ENWOVEN = LOGIC
HREF = SERVE
INTERNET = ULTRA
MAINE = MAUI
NAMED = XML
PERL = WILD
WEED = WINE

Inevitably, the best ones were offensive to public morals and basic decency, and have been omitted. Consider it an incentive to write some code yourself.

And yes, some of these pairs have a lot of trivial overlap. Someone should really implement this algorithm for these things.

Is this the opposite of an anagram? Different letters but in the same order?