Skip to content
View PlatHum's full-sized avatar

Block or report PlatHum

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

Heyo 🤖

#include <iostream>
#include <string>

class RoboticsEngineer {
public:
    RoboticsEngineer() : name("Francisco"), role("Robotics Engineer") {
        expertise[0] = "SLAM";
        expertise[1] = "State Estimation";
        expertise[2] = "Computer Vision";
    }

    void sayHi() const {
        std::cout << "Hello! Feel free to explore. All *features*, promise.\n";
    }

private:
    std::string name;
    std::string role;
    std::string expertise[3];
};

int main() {
    RoboticsEngineer me;
    me.sayHi();
    return 0;
}

Top Langs

trophies

Website Card

Popular repositories Loading

  1. Traxter-Software Traxter-Software Public

    This is the repository for TIR-ANT's source-code, a ROS2-based tracked mobile robot capable of SLAM using a 2D LiDAR and a depth camera.

    C++ 4

  2. PlatHum.github.io PlatHum.github.io Public

    A fun interactive and responsive website of my resume.

    HTML 1

  3. PlatHum PlatHum Public