Skip to content
View had2020's full-sized avatar
🦾
Coding and Learning
🦾
Coding and Learning

Block or report had2020

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
had2020/README.md

🦀 Hadrian Lazic (aka Had2020)

I make CPUs sweat!

Codewars

// main.rs - A Rust-powered intro
fn main() {
    let mut dev = Dev::new("Hadrian", Lang::Rust);
    if !dev.has_greeted() {
        dev.greet();
    }
}

#[derive(Debug)]
enum Lang {
    Rust, // My gem!
    C,
    C++,
}

struct Dev {
    name: &'static str,
    fav_lang: Lang,
    greeted: bool,
}
impl Dev {
    fn new(name: &'static str, fav_lang: Lang) -> Self {
        Self { name, fav_lang, greeted: false }
    }
}
trait Greeter {
    fn greet(&mut self);
    fn has_greeted(&self) -> bool;
}
impl Greeter for Dev {
    fn greet(&mut self) {
        println!("Hello, world! I'm {} and I thrive in {:?}", self.name, self.fav_lang);
        self.greeted = true;
    }
    fn has_greeted(&self) -> bool { self.greeted }
}

Things I like

🦀 Rust ⚙️ Low-level systems ☁️ Cluster computing 🧬 Genetical simulations Solana


You can Reach me at

✉️ Email: [email protected]

💼 LinkedIn: Hadrian Lazic

Pinned Loading

  1. Last-Straw Last-Straw Public

    A lightweight GUI Rust framework for quick desktop applications.

    Rust 11 1

  2. TerimalRtdm TerimalRtdm Public

    Rust Terimal Display Manipulator

    Rust 4

  3. RCMLRS RCMLRS Public

    Machine learning framework in Rust

    Rust 4

  4. Neurocrypt-Genesis Neurocrypt-Genesis Public

    A Platform for Artificial Abiogenesis and Emergent Computation

    Rust 2

  5. Learn-Machine-Learning-with-Pusdeo-Code-without-Advanced-Math- Learn-Machine-Learning-with-Pusdeo-Code-without-Advanced-Math- Public

    Clear explanations, formulaic pseudocode, and diagrams to make machine learning math understandable for everyone.

    4

  6. Crates-of-thought Crates-of-thought Public

    A hands on journey through Rust, exploring enums, traits, ownership, and custom architectures, one binary crate at a time.

    Rust 4