Skip to content
View yansh07's full-sized avatar
:shipit:
Orbit 🎧
:shipit:
Orbit 🎧

Highlights

  • Pro

Block or report yansh07

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

Greetings, Inferior Intellects. 🍼

I suppose you're here to gaze upon my genius. Very well, try not to drool on the repositories.


🧠 The Arsenal

The primitive tools I am forced to use to build things you couldn't even conceptualize.

  • Languages of Choice: C, Python, JavaScript
  • Frontend Peasantry: Next.js, React.js, TailwindCSS (yes, I tolerate CSS)
  • Backend Sorcery: Node.js, FastAPI
  • Data & Domination: PostgreSQL, Redis
  • Infrastructure (a.k.a. Making Clouds Obey): Azure, Docker & Docker Compose, Celery, Nginx/Caddy, Linux (Ubuntu), POSIX
  • Dark Arts: SSL/TLS, DNS, CORS, JWT/JWKS Auth (securing things so even you can't accidentally break them)

🚧 Current World Domination Scheme

I have deployed a distributed, containerized, cryptographically secured remote code execution platform on a 1GB RAM Azure VM β€” because constraints are for people who lack imagination.

It handles untrusted user code in isolated Docker containers, queues execution jobs via Celery + Redis, streams real-time state transitions to a React terminal UI, and validates JWTs before it even thinks about running your code.

In other words: I built an entire cloud execution pipeline so you could paste your broken hello_world.py somewhere safe.

πŸ‘‰ OopsEngine β€” Try not to break it. I've made that surprisingly difficult.


πŸ† Magnum Opus: Abyss Shell

Custom Unix Shell | C, Linux Kernel API, POSIX Systems

Yes, I built a Unix shell in bare-metal C. Not because the existing ones don't work β€” but because I prefer speaking to the Linux kernel directly. Middlemen are for people who don't know what execvp() does.

  • Kernel Whispering: Full Unix shell via raw system calls β€” fork(), execvp(), waitpid() β€” dictating process lifecycles across a persistent REPL because bash didn't ask for my permission to exist and neither did I.
  • Flawless Orchestration: Multi-pipe parser for arbitrarily chained commands (ls | grep | wc -l). Dynamically allocated file descriptors, IPC across 3+ concurrent child processes, zero deadlocks. Obviously.
  • Stream Hijacking: Standard stream redirection via dup2() and open() β€” both > (overwrite) and >> (append) β€” because I route process outputs exactly where I want them.
  • Custom Tokenization: Two-phase tokenizer engineered from scratch to handle nested pipe contexts where strtok collapsed under the pressure of its own design flaws. You're welcome, C standard library.
  • Memory Mastery: Zero memory leaks. Zero segfaults. 500+ REPL test iterations. Every heap allocation tracked and freed manually. The Valgrind report is cleaner than your commit history.

🎯 Trivial Pursuits & Problem Solving

  • LeetCode: 180+ problems solved in Python, including the full NeetCode 150 β€” arrays, trees, graphs, DP, sliding window. A cognitive stretching exercise I squeeze in between building things that actually run in production.
  • Open Source: Both projects are publicly maintained on GitHub with documented READMEs. Yes, I write documentation. I know. Shocking.

πŸŽ“ Formal Credentialing

Bachelor of Computer Applications (BCA) β€” Dehradun Institute of Technology (Expected May 2027)

Coursework includes: Data Structures & Algorithms, Operating Systems, DBMS, Computer Networks.

Note: The degree is technically in progress. The competence is not.


πŸ“¬ Communication Coordinates

If you absolutely must interrupt my work, you may attempt to reach me here. I make no promises regarding response latency.



victory
"The kernel fears no one. Least of all, you."

Pinned Loading

  1. abyss-shell abyss-shell Public

    Abyss-Shell: A Custom Shell built-with C (C99 standard)

    C 2

  2. OopsEngine OopsEngine Public

    Code Execution Platform

    JavaScript