Skip to content
View rahelmartim's full-sized avatar
🐝
Arapuá
🐝
Arapuá

Organizations

@arapua

Block or report rahelmartim

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

Hey, i'm Rahel 👋

A Full-Stack developer passionate about Rust and Python!

struct SoftwareEngineer {
    name: &'static str,
    founder: &'static str,
    language_spoken: Vec<&'static str>,
    favorite_languages: Vec<&'static str>,
}

impl SoftwareEngineer {
    fn new() -> SoftwareEngineer {
        SoftwareEngineer {
            name: "Rahel Martim",
            founder: "Arapuá",
            language_spoken: vec!["pt_BR", "en_US"],
            favorite_languages: vec!["Rust", "Python", "C#", "JavaScript"],
        }
    }

    fn say_hi(&self) {
        println!("Thanks for dropping by, hope you find some of my work interesting.");
    }
}

fn main() {
    let me = SoftwareEngineer::new();
    me.say_hi();
}

Try this in your console to connect with me. 👇

npx rahel

Take a look at these stats

Pinned Loading

  1. bingo-api bingo-api Public

    Forked from vbuxbaum/bingo-api

    Uma API em Python (FastAPI) para gerar números de uma cartela de Bingo

    Python

  2. Trybe-Github-Evaluator-Front Trybe-Github-Evaluator-Front Public

    Front-end application in ReactJS that evaluates a GitHub user profile on 10 criteria and assigns a grade to it.

    TypeScript

  3. Trybe-Github-Evaluator-API Trybe-Github-Evaluator-API Public

    A NodeJs API from the https://github.com/irahel/Trybe-Github-Evaluator-Front project that evaluates the github profile and creates an svg to integrate with the personal readme.

    TypeScript

  4. Ecommerce-Kafka Ecommerce-Kafka Public

    A project to learn the use of Kafka, where it simulates an ecommerce service, with order and email producers and consumers to do so.

    Java