マック用モールス練習ソフト
There are few Morse exercise "especially for hearing" application software for MacBook. Most easy simple application for me is YMMorseCode. This is a java application and it works in Terminal so to say command mode.
You can download this java application from the YAMADARAKE home page.
http://yamadarake.web.fc2.com/trdi/YMMorseCode.html
I wrote a tiny shell script "morse_exercise.sh" for enjoying this java application as follows:
#!/bin/bash
echo -e "*** Morse code hearing exercise ***"
echo -e "Type Letter : ¥c"
read word
echo "The word you entered is: $word"
java -jar YMMorseCode.jar -m ps -ps "$word"
This script file "morse_exercise.sh" should be as follows:
chmod u+x morse_exercise.sh
Then you can invoke this java script as follows:
./morse_exercise.sh
Enjoy improving your CW hearing skill.
コメント
コメントを投稿