https://github.com/ableinc/rust-exercise
Documenting my progress learning Rust as my language of choice for embedded systems
https://github.com/ableinc/rust-exercise
Last synced: about 1 year ago
JSON representation
Documenting my progress learning Rust as my language of choice for embedded systems
- Host: GitHub
- URL: https://github.com/ableinc/rust-exercise
- Owner: ableinc
- Created: 2023-12-21T15:56:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-01T04:35:04.000Z (about 2 years ago)
- Last Synced: 2025-02-03T23:31:26.350Z (over 1 year ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Exercise
I'm learning Rust as my language of choice for embedded systems. I'll be creating various small programs to help me learn the langauge. I've created this repository to document this process.
## About Me
My name is Jaylen Douglas, I'm a software engineer with over half-a-decade of professional experience. My languages of choice are Python and Javascript/NodeJS - with experience in Java and learning Rust. I love music and creating products. I believe a good engineer is someone who asks all the questions; the obvious and not, someone with patience and someone willing to do the thing even if they don't know how.
A Favorite quote (not sure who said it): "We were all the new guy, once"
If you'd like to connect my connect with me on [LinkedIn](https://linkedin.com/in/jaylen-douglas-292b82a6/)
## Progress So Far
Here's a list of what's in the repo so far
* Secrets Generator (secrets-generator) - Create randomized secrets of a given length with or without special characters. What's I've learned from this:
- String manipulation (concatenation, formatting)
- Basic for loop
- Using dependencies with Cargo (rand library)
- Doc strings
- Scope and namespaces