Skip to content
View BindraAgamjot256's full-sized avatar
πŸ“š
Studying
πŸ“š
Studying
  • New Delhi
  • 17:02 (UTC +05:30)

Highlights

  • Pro

Block or report BindraAgamjot256

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

Hey there, I’m Agamjot Singh Bindra! Waving Hand

I'm a Student Developer on a quest to conquer Systems Programming, Web Development, and AI/ML. When I'm not debugging code or wrestling with assembly, you'll find me caffeinating to infinity β˜•οΈ and crafting digital dreams.


πŸš€ Who Am I?

struct Developer {
    name: String,
    role: String,
    current_focus: Vec<String>,
    enthusiasm_level: u8,
}

impl Developer {
    fn new() -> Self {
        Developer {
            name: String::from("Agamjot Singh Bindra"),
            role: String::from("Student Developer"),
            current_focus: vec!["Systems Programming".to_string(), "Web Development".to_string(), "AI/ML".to_string()],
            enthusiasm_level: 100,
        }
    }
}

β€œCode is like humor. When you have to explain it, it’s bad.” – Cory House


πŸ’» Tech Stack

Rust TypeScript JavaScript React Next.js Python

I wield these tools to build fast, reliable, and elegant software. But the magic truly happens when they all play nicely together(I'll let you know when that happens...)!


🌟 Current Adventure: zenos

interface Project {
    name: string;
    status: "In Development" | "Completed" | "Planning";
    stack: string[];
    description: string;
}

const currentProject: Project = {
    name: "zenos",
    status: "In Development", // I am taking a break from PortfoliOS
    stack: ["Rust", "Assembly"],
    description: `
        A full-fledged OS, with a working userland, and syscalls(a beast I have never tackled up to now)
    `
};

This isn't just a projectβ€”it's a journey to the heart of how computers tick. Expect dragons (bugs), treasure (neat features), and plenty of epic commits!


πŸ“Š Quick Stats

def get_daily_routine():
    return {
        "coding_hours": "Too many to count πŸ€“",
        "coffee_cups": "∞",
        "favorite_editor": "RustRover/WebStorm",
        "current_status": "Surviving School"
    }

πŸ“ˆ GitHub Warrior Stats(Because monkeys love dashboards)

GitHub Stats Streak Stats Top Languages


πŸ“« How to Reach Me

Feel free to say hi, collaborate, or share your favorite meme!


Fun Fact: I once tried to code an AI that writes README files… ironically, it’s still stuck in infinite loop. πŸ€–πŸ”„


Fallback image description

Thanks for dropping byβ€”let’s build something awesome together! πŸš€

Pinned Loading

  1. AI-Snake-Game AI-Snake-Game Public archive

    A Game That Uses ai, and RL to play snake

    Python 1