Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,420 changes: 1,420 additions & 0 deletions submissions/morse_code_learner/Cargo.lock

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions submissions/morse_code_learner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "morse_code_learner"
version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "0.4.41"
directories = "6.0.0"
rand = "0.9.1"
rodio = "0.20.1"
serde = "1.0.219"
serde_derive = "1.0.219"
toml = "0.8.23"
21 changes: 21 additions & 0 deletions submissions/morse_code_learner/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 mzums

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
50 changes: 50 additions & 0 deletions submissions/morse_code_learner/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# morse_code_learner

A command-line application for learning Morse code through encoding practice with individual characters and full words.

![alt text](image.png)

## Features
- **Progressive Learning System**: 8 character levels + 1 word level
- **Character Encoding**: Practice individual letters and numbers
- **Word Encoding**: Practice encoding common words after mastering characters
- **Performance Tracking**: Detailed statistics for each session
- **Progress Saving**: Automatic saving of learning progress between sessions
- **Adaptive Difficulty**: Automatic progression based on performance
- **Audio**: Playing Morse code as audio


## Installation
1. Ensure you have Rust installed
2. Close the repository:
```
git clone https://github.com/mzums/morse_code_learner.git
```
3. Build the app:
```
cd morse_code_learner
cargo build --release
```

## Usage
Run the application:
```
cargo run --release
```

#### The program will automatically:
1. Create configuration files if they don't exist
2. Load your previous progress
3. Start a new learning session based on your current level

## Dependencies
You should have Rust installed!
- chrono = "0.4.41"
- directories = "6.0.0"
- rand = "0.9.1"
- serde = "1.0.219"
- serde_derive = "1.0.219"
- toml = "0.8.23"

## Why?
I created this cool because I wanted to learn Morse code. But simply learning it from a website would be too boring.
Loading