Skip to content
View pyouneetm's full-sized avatar
💭
.
💭
.

Block or report pyouneetm

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

🧬 COGNITIVE ARCHITECTURE & BIO-METRICS

graph TD
    User(PUNEET MISHRA) -->|Bio-Input| Client[React + Three.js Interface]
    Client -->|WebSocket| Lanyard(Lanyard API)
    Client -->|REST| Github(GitHub Data)
    
    subgraph "Neural Processing Unit"
        Client --> Audio[Tone.js / Audio Synthesis]
        Client --> Physics[Verlet Physics Engine]
        Client --> Visuals[GLSL / Vanta.js]
    end
    
    Lanyard -->|Presence| Discord(Discord Status)
    Github -->|Repos| GitData(Portfolio)
Loading

MOLECULAR SKILLS

NEURAL SYNAPSE

📡 COMMAND CENTER (SOCIAL UPLINKS)


🧪 EXPERIMENT: COSMIC DODGE (PHYSICS CORE)

A high-velocity survival simulation leveraging verlet integration and separating axis theorem.

ACCESS SOURCE KERNEL
// PHYSICS INTEGRATION LOOP
update(dt) {
    this.entities.forEach(e => {
        if(e.type === 'ENEMY') {
            // Apply force vectors & gravity
            e.pos.y += e.vel.y * dt;
            
            // Calculate distance magnitude (Euclidean)
            const dx = this.player.pos.x - e.pos.x;
            const dy = this.player.pos.y - e.pos.y;
            const dist = Math.sqrt(dx*dx + dy*dy);
            
            // Event Horizon Singularity Check
            if(dist < 20) this.triggerSingularity();
        }
    });
}

"The most incomprehensible thing about the universe is that it is comprehensible." - Albert Einstein


Pinned Loading

  1. EOS EOS Public

    EOS - A Microsoft Addon A highly customizable new tab page designed to boost productivity and mindfulness. Switch between different modes like Study, Relax, and Entertainment, or create your own pe…

    JavaScript

  2. Eostorage Eostorage Public

    🗿 The Monolith. A dependency-free, single-file, offline-first storage engine for the web. Features built-in encryption, compression, and "Time Machine" concurrency control. One File. One Truth.

    1

  3. pyouneetm.github.io pyouneetm.github.io Public

    Puneet Mishra - Personal Portfolio A modern, responsive portfolio website with a glassmorphism design, live status updates via Lanyard, and dynamic project data from the GitHub API. Built with HTML…

    HTML