Skip to content
View hvpaiva's full-sized avatar
πŸ¦€
Rustacean
πŸ¦€
Rustacean

Block or report hvpaiva

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
hvpaiva/README.md
// πŸ‘‹ Hey there, I'm Highlander Paiva! πŸ‡§πŸ‡·

struct Developer {
    name: &'static str,
    role: &'static str,
    country: &'static str,
    current_job: &'static str,
    goal: &'static str,
    linkedin: &'static str,
    fun_fact: &'static str,
}

impl Developer {
    fn new() -> Self {
        Developer {
            name: "Highlander Paiva",
            role: "Backend Developer",
            country: "Brazil",
            current_job: "Software Engineer SSr at Mercado Livre",
            goal: "Become a versatile and impactful Software Architect",
            fun_fact: "My name is based on the movie 'Highlander (1986)'. There can be only one! βš”οΈ",
        }
    }

    fn introduce(&self) {
        println!("πŸ‘‹ Hey there, I'm {}! πŸ‡§πŸ‡·", self.name);
        println!("πŸš€ {} from {}, currently working as {}.", self.role, self.country, self.current_job);
        println!("🎯 Goal: {}", self.goal);
        println!("🎬 Fun fact: {}", self.fun_fact);
    }

    fn advise(&self) {
        println!("🌟 Keep exploring, learning, and having fun! 🌟");
    }
}

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

    highlander.introduce();
    highlander.advise();
}


Pinned Loading

  1. loggo loggo Public

    Loggo is a simple and flexible logging library for Go, providing configurable log levels, output destinations, message templates, and time providers.

    Go

  2. clean-architecture-nestjs clean-architecture-nestjs Public

    TypeScript 339 52

  3. goaoc goaoc Public

    Go

  4. schedule-system schedule-system Public

    A case study joining CQRS + Event Sourcing + DDD with Axon and Kotlin

    Kotlin 3

  5. btree-algorithm btree-algorithm Public

    A BTree implementation in Haskell

    Haskell

  6. blackjack blackjack Public

    A Clojure implementation of a card game blackjack

    Clojure