Skip to content
View arkeasz's full-sized avatar

Block or report arkeasz

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
arkeasz/README.md

Hi there, I'm Arki ๐Ÿ‘‹

struct Profile {
  name: &'static str,
  pronouns: [&'static str; 2],
  skills: Skills
}

#[derive(Debug)]
struct Skills {
  backend: [&'static str; 4],
  frontend: [&'static str; 4],
  database: [&'static str; 3],
  cloud: [&'static str; 4],
  architecture: [&'static str; 3],
}

const ARKI: Profile = Profile {
  name: "Arki",
  pronouns: ["He", "Him"],
  skills: Skills {
      backend: ["Ruby", "Node.js", "Go", "Rust"],
      frontend: ["HTML", "JavaScript", "Vue", "CSS"],
      database: ["PostgreSQL", "MySQL", "Redis"],
      cloud: ["AWS", "GCP", "DigitalOcean", "Heroku"],
      architecture: ["Microservices", "Event-driven", "Design Systems"],
  }
};

fn main() {
  println!("Meet {}: \n {:#?}", ARKI.name, ARKI.skills);
}

Pinned Loading

  1. script-autoclick script-autoclick Public

    script for does auto click

    Python 2

  2. zix zix Public

    An alternative to ls for windows (at the moment)

    Rust 4

  3. github-profiles github-profiles Public

    GHPROFILES

    Vue

  4. leetcode leetcode Public

    A collection of my solutions to LeetCode problems

    Rust

  5. nillotaelpro/parches nillotaelpro/parches Public

    web para visualizar parches scouts

    HTML 1

  6. advent-of-code-2024 advent-of-code-2024 Public

    Advent of Code 2024 ๐ŸŽ„

    JavaScript