๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
Skip to content
View williamcanin's full-sized avatar
๐Ÿ˜
Simple is better than complex.
๐Ÿ˜
Simple is better than complex.

Organizations

@snakypy @rawfeed

Block or report williamcanin

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
williamcanin/README.md
// 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);

}

Pinned Loading

  1. snakypy/dotctrl snakypy/dotctrl Public

    ๐Ÿ ๐Ÿ“ฆ ๐Ÿ“„ Dotctrl is a package to control your dotfiles (and more) on Linux or macOS.

    Python 9 1

  2. snakypy/zshpower snakypy/zshpower Public

    ๐Ÿ ๐Ÿ“ฆ ๐Ÿ’ป ZSHPower is a theme for the ZSH shell with support for Oh My ZSH.

    Python 13 2

  3. rawfeed/rawfeed-jekyll rawfeed/rawfeed-jekyll Public

    ๐Ÿ’‰ A raw Jekyll theme for minimalists

    SCSS 1

  4. jektify/jektify jektify/jektify Public

    ๐ŸŽถ ๐Ÿ’Ž Jektify is a gem to incorporate track, playlist, albums and artists into from Spotify into templates Jekyll.

    Ruby 8 4

  5. strash strash Public

    ๐Ÿ Strash cleans your trash safely.

    Python

  6. crud_rust_redis crud_rust_redis Public

    ๐Ÿฆ€ CRUD examples between Rust and Redis

    Rust