π Based in Leuven, Belgium | π‘ Passionate about building innovative embedded solutions
Embedded Systems Engineer | Data Analyst | IoT | Linux
Welcome to my GitHub profile! I'm a Passionate embedded system developer with a love for creating seamless, user-friendly embedded applications. I enjoy working on baremetal, RTOS and Yocto technologies, and I'm always eager to learn and explore new tools and frameworks.
I'm always open to collaborating on interesting projects or discussing new ideas. Feel free to reach out to me!
Top 500 in Valorant! πΉοΈπ₯οΈ
#include <iostream>
#include <vector>
#include <string>
class SoftwareEngineer {
private:
std::string name;
std::string role;
std::vector<std::string> languages_spoken;
public:
SoftwareEngineer() {
name = "Muhammad Ali";
role = "Embedded System Engineer | Data Analyst";
languages_spoken = {"en_US", "nl_BE"};
}
void say_hi() const {
std::cout << "Thanks for dropping by, hope you find some of my work interesting." << std::endl;
}
};
int main() {
SoftwareEngineer me;
me.say_hi();
return 0;
}