const harsh = {
name : "Harsh Singh",
location : "India 🇮🇳",
role : "Full-Stack Developer & CS Student",
building : ["Shaderz", "Muxury", "WhatsApp Marketing SaaS", "GitSaga"],
studying : ["System Design (Arpit Bhayani)", "DSA", "TypeScript Internals"],
obsessions: ["pixel-perfect UI", "clean architecture", "shipping > perfecting"],
funFact : "I benchmark my UIs against Stripe & Linear, not tutorials."
} satisfies Developer;|
GPU-accelerated shader UI components for React, Vue & Vanilla JS. Zero-config, drop-in visuals. |
Premium ecommerce platform — full-stack, production-grade. Custom auth, Razorpay, admin analytics. |
WhatsApp marketing automation — bulk messaging, flows, analytics. Inspired by WATI & AISensy. |
Code analysis & repo intelligence tool. Dark-mode instrument-panel aesthetic. Think GitLens, but cooler. |
Mar–May ██████████░░░░░░░░░░ React, TypeScript, Tailwind Deep Dives
Jun–Aug ████████░░░░░░░░░░░░ Node.js, System Design, DSA Grind
Sep–Oct ██████░░░░░░░░░░░░░░ OS, Networks, DBMS (CS Fundamentals)
Nov–Dec ████░░░░░░░░░░░░░░░░ AI / Agents, DevOps, Distributed Systems
Target: a portfolio strong enough to speak for itself.
⚙️ Setup Snake Animation (GitHub Actions)
Create .github/workflows/snake.yml:
name: Generate Snake
on:
schedule:
- cron: "0 */12 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Platane/snk@master
with:
github_user_name: harshsinghsv
outputs: |
dist/github-contribution-grid-snake.svg
dist/github-contribution-grid-snake-dark.svg?palette=github-dark
- uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

