Skip to content
View The-Jat's full-sized avatar
🇮🇳
Learn, Apply, Test, Release, Repeat
🇮🇳
Learn, Apply, Test, Release, Repeat

Block or report The-Jat

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

Hi there 👋 नमस्ते (Namaste)🙏🏻, I'm Manish Chaudhary!

Software Engineer

Things I code with

C C++ JavaScript PHP

Angular Laravel Bootstrap

Linux Ubuntu

Git

MySQL

A little more about me...

#include <iostream>
#include <vector>
#include <unordered_map>

class ManishChaudhary {
public:
    std::string name = "Manish Chaudhary";
    std::string pronouns = "He | Him";
    std::vector<std::string> code = {"C", "C++", "PHP", "Javascript"};
    std::vector<std::string> askMeAbout = {"OS-Dev", "Web-Dev"};
    std::vector<std::string> frameworks = {"Angular", "Laravel"};
    std::string currentFocus = "Learning about ";
    std::string funFact = "I am from Haryana (IN)!";

    void printInfo() {
        std::cout << "Name: "   << name << std::endl; 
        std::cout << "Pronouns: " << pronouns << std::endl;
        std::cout << "Code: ";
        printVector(code);
        std::cout << "Ask Me About: ";
        printVector(askMeAbout);
        std::cout << "Frameworks: ";
        printVector(frameworks);
        std::cout << "Current Focus: " << currentFocus << std::endl;
        std::cout << "Fun Fact: " << funFact << std::endl;
    }

private:
    template<typename T>
    void printVector(const std::vector<T>& vec) {
        for (const auto& item : vec) {
            std::cout << item << " ";
        }
        std::cout << std::endl;
    }

};

int main() {
    ManishChaudhary manish;
    manish.printInfo();
    return 0;
}

// Output
Name: Manish Chaudhary
Pronouns: He | Him
Code: C C++ PHP Javascript 
Ask Me About: OS-Dev Web-Dev 
Frameworks: Angular Laravel 
Current Focus: Learning about 
Fun Fact: I am from Haryana (IN)!

Where to find me

Github LinkedIn

If you have any inquiries, please don't hesitate to connect with me via e-mail.

Popular repositories Loading

  1. mnis.github.io mnis.github.io Public

    JavaScript 1

  2. MollenOS MollenOS Public

    Forked from Meulengracht/MollenOS

    MollenOS/Vali is a modern operating system that is built with focus on abstraction and a modular design, allowing anyone to port it to any architecture. It currently targets the x86-32 and x86-64 p…

    C

  3. zircon zircon Public

    Forked from xinyu391/zircon

    Zircon Kernel, Core Drivers, and Services

  4. haiku haiku Public

    Forked from haiku/haiku

    The Haiku operating system. (Pull requests will be ignored; patches may be sent to https://review.haiku-os.org).

    C++

  5. linux linux Public

    Forked from torvalds/linux

    Linux kernel source tree

    C

  6. mnisk.github.io mnisk.github.io Public

    JavaScript