// 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 personal_site: &str = "https://williamcanin.github.io";
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!("Personal site::> {}", personal_site);
}
π
Don't sell your soul to gambling companies.
I type code_
@orbitbits
- SΓ£o Paulo, Brazil
- https://williamcanin.github.io
Highlights
Pinned Loading
-
orbitbits/tildr
orbitbits/tildr Publicπ πβοΈπ¦ Tildr β Manage and reproduce your HOME directory declaratively.
Rust 1
-
-
orbitbits/seedctl
orbitbits/seedctl Publicπ±πͺπ°π¦ Cryptocurrency multichain wallet generator (currently supports dice-based π² entropy).
Rust 1
-
orbitbits/smog
orbitbits/smog Publicπ«οΈπ₯ππ¦ Smog β Turn data into unreadable noise. Destroy it securely.
-
shred-extension-rs
shred-extension-rs Publicπ¦ π¦ A native and ultra-lightweight extension for the Nautilus and Thunar file managers.
Rust 3
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.



