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

Organizations

@programming-club-knit

Block or report prathmyx

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
prathmyx/README.md

Hi, I'm Pratham Yadav 😎

Typing Animation

print("Build. Break. Debug. Repeat.")


whoami

class Pratham:
    """
    A problem solver running on curiosity,
    logic, and urge to learn Everything.
    """

    def __init__(self):
        self.username = "prathmyx"
        self.name = "Pratham"
        self.mode = "learning ∞ building ∞ improving"

        self.languages = {
            "primary": ["Python 🐍", "C++ ⚑", "JavaScript"],
            "familiar": ["C", "Java"]
        }

        self.frontend = [
            "HTML",
            "CSS",
            "React βš›οΈ"
        ]

        self.backend = [
            "Node.js",
            "Backend Development 🚧"
        ]

        self.currently_learning = [
            "Backend Architecture",
            "AI / Machine Learning 🧠"
        ]

        self.interests = {
            "competitive_programming": "actively solving 🧩",
            "algorithms": "always interesting",
            "problem_solving": "probably thinking about one right now"
        }

        self.status = {
            "currently": "exploring",
            "bug_found": False
        }

    def greet(self, visitor):
        return f"""
        Hey, {visitor}! πŸ‘‹

        You made it to my little corner of GitHub.

        Feel free to inspect the commits,
        question the code,
        or just stay and explore.
        """


me = Pratham()
print(me.greet("fellow human"))

system_status.py

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  PRATHMYX.DEV :: SYSTEM STATUS                              β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚                                                             β”‚
β”‚  🧩  Competitive Programming    β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘  ACTIVE         β”‚
β”‚  βš›οΈ  Frontend Development       β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘  BUILDING       β”‚
β”‚  βš™οΈ  Backend Development        β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘  LEARNING       β”‚
β”‚  🧠  AI / Machine Learning      β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘  EXPLORING      β”‚
β”‚                                                             β”‚
β”‚  > curiosity:     unlimited                                 β”‚
β”‚  > edge_cases:    always present                            β”‚
β”‚  > next_commit:   loading...                                β”‚
β”‚                                                             β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

tech.constellation


competitive_programming.cpp

#include <iostream>
using namespace std;

int main() {
    string goal = "solve the next problem";

    while (alive) {
        read_problem();

        think();

        if (solution_found()) {
            code();
            submit();
        } else {
            stare_at_the_problem();
            try_again();
        }
    }

    return little_more_happy_me;
}

git log --stats

Contribution Graph



Profile Visitors GitHub Followers

Popular repositories Loading

  1. prathmyx prathmyx Public

  2. Chef-Gem Chef-Gem Public

    My Implementation of the Chef Claude Project from the Scrimba. Practicing React state management form handling, and component layout.

    JavaScript

  3. Tenzies Tenzies Public

    Tenzies is a fun dice game built with React. The goal of the game is to roll until all dice are the same. Players can freeze dice at their current value between rolls to strategize their way to vic…

    JavaScript

  4. AssemblyEndgame AssemblyEndgame Public

    An interactive React word guessing game where players try to save the programming languages by correctly guessing a hidden word.

    JavaScript

  5. Portfolio Portfolio Public

    Personal Portfolio Website

    JavaScript

  6. CodingArchive CodingArchive Public

    Some old self made Programs

    Python