An open API service indexing awesome lists of open source software.

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

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);

}
```