https://github.com/williamcanin/williamcanin
My description for Github
https://github.com/williamcanin/williamcanin
github-readme-stats markdown
Last synced: 10 months ago
JSON representation
My description for Github
- Host: GitHub
- URL: https://github.com/williamcanin/williamcanin
- Owner: williamcanin
- Created: 2021-04-04T00:55:07.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-27T23:22:04.000Z (about 2 years ago)
- Last Synced: 2025-02-06T03:30:10.078Z (12 months ago)
- Topics: github-readme-stats, markdown
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```rust
// main.rs
use std::collections::HashMap;
fn main() {
let workflow: HashMap<&str, HashMap<&str, Vec<&str>>> = HashMap::from([
(
"My Main Tech Stack",
HashMap::from([
("Languages", vec!["Rust", "Python", "Shell Script"]),
("Frontend", vec!["HTML", "CSS", "SASS", "Bootstrap", "Jekyll"]),
("Database", vec!["PostGreSQL", "MySQL"]),
("Tools", vec!["VSCode", "Vim", "JetBrains IDEs", "Git"]),
("OS", vec!["Linux", "Windows"]),
]),
),
]);
let yt_link: &str = "https://www.youtube.com/c/williamcanin";
println!("Hello, World!");
println!("My name is William, and I am a programming and hacking enthusiast.");
for (key, value) in &workflow {
println!("{}:", key);
for (inner_key, inner_value) in value {
println!(" {}: {:?}", inner_key, inner_value);
}
}
println!("YouTube::> {}", yt_link);
}
```