Skip to content
View Reeperk's full-sized avatar
🍑
Juicy
🍑
Juicy
  • localhost
  • 17:50 (UTC +02:00)

Highlights

  • Pro

Block or report Reeperk

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Reeperk/README.md

Reeperk

~ cargo build --release ~

Profile Views


struct Developer {
    name: &'static str,
    alias: &'static str,
    age: u8,
    role: &'static str,
}

impl Developer {
    const fn new() -> Self {
        Self {
            name: "Marlon",
            alias: "Reeperk",
            age: 22,
            role: "Fullstack Web Developer",
        }
    }

    const fn languages(&self) -> &[&str] {
        &["Rust", "PHP", "TypeScript", "JavaScript", "Java", "C#", "C++", "Lua", "Dart", "SQL"]
    }

    const fn frameworks(&self) -> &[&str] {
        &["Actix", "Diesel ORM", "Symfony", "Doctrine ORM", "Astro", "TailwindCSS"]
    }

    const fn interests(&self) -> &[&str] {
        &["AI / ML", "Training custom models", "Kubernetes"]
    }
}

use reeperk::skills::{Skill, Project, Status};

fn main() {
    let dev = Developer::new();

    println!("Compiling {}...", dev.alias);
    println!("Status: building cool things since birth");

    // currently learning
    let mut k8s_skill = Skill::new("Kubernetes");
    k8s_skill.level_up(); // work in progress

    // side projects
    let qwix = Project::new("@QwixAI")
        .description("AI-powered hobby project")
        .status(Status::Active);
}

Tech Stack


github-snake

Popular repositories Loading

  1. Reeperk Reeperk Public

  2. dcts-shipping dcts-shipping Public

    Forked from hackthedev/dcts-shipping

    A Chat Platform like Discord but self-hostable like TeamSpeak

    JavaScript

  3. plugins plugins Public

    Forked from DCTS-Project/plugins