Skip to content
View SamyakMishra072's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@GFG-TMSL-Official

Block or report SamyakMishra072

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

πŸ”₯ Profile Views

Profile Views

Typing SVG

Diving Deep into the Digital Realm

🧠 Core Skills

C++ Java Python Machine Learning DSA OS Concepts

🌟 Other Skills

Leadership Public Speaking Systems Programming

πŸš€ Current Endeavors

Coder GIF
Mastering C++ & ML
Git GIF
Open-source Contributions
Circuit GIF
Systems-level Programming

πŸ’» Tech Arsenal

icon
C++
icon
Java
icon
Python
icon
JavaScript
icon
TypeScript
icon
React
icon
MySQL
icon
GitHub
icon
REST API
icon
Docker
icon
AWS
icon
Nginx

🌐 Connect with Me

Instagram LinkedIn Gmail

πŸ“Š GitHub Stats:



⚑ Fun Fact

Fun Fact Typing SVG

🎯 Let's Build Something Amazing Together!

Collaboration Typing SVG

#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;
}

Pinned Loading

  1. Tic-Tac-Toe Tic-Tac-Toe Public

    TIC_TAC_TOE_GAME

    JavaScript 1