Mastering C++ & ML |
Open-source Contributions |
Systems-level Programming |
C++ |
Java |
Python |
JavaScript |
TypeScript |
React |
MySQL |
GitHub |
REST API |
Docker |
AWS |
Nginx |
#include <iostream>
#include <vector>
using namespace std;
class CodeAlchemist {
private:
string name = "Samyak Mishra";
string role = "Aspiring Software Development Engineer";
vector<string> skills = {"C++", "Java", "Python", "Machine Learning", "DSA", "OS Concepts"};
vector<string> passions = {"Open-source", "Knowledge sharing", "Systems programming"};
public:
void introduce() {
cout << "Hello, World! I'm " << name << ", " << role << "." << endl;
}
void displaySkills() {
cout << "Skills:" << endl;
for (const auto& skill : skills) {
cout << " β‘ " << skill << endl;
}
}
void showPassions() {
cout << "Passions:" << endl;
for (const auto& passion : passions) {
cout << " π₯ " << passion << endl;
}
}
void funFact() {
cout << "Fun Fact: I dream of crafting my custom OS while diving into hacker-level coding adventures! π₯οΈ" << endl;
}
};
int main() {
CodeAlchemist me;
me.introduce();
me.displaySkills();
me.showPassions();
me.funFact();
return 0;
}