I'm Nitanshu, a systems-focused engineer building:
- Autonomous cloud platforms and self-healing infrastructure
- ML-driven threat detection and anomaly engines
- AI observability agents and multi-agent GenAI pipelines
- Custom Linux operating systems from kernel to bootloader
- Quantum-classical hybrid scheduling systems
I don't build "apps for marks". I build infrastructure that thinks, detects, and heals.
Symbolic participation in two iconic NASA missions dedicated to advancing human exploration and expanding our understanding of the universe.
Passenger: Nitanshu Tak
Mission: Artemis II – Lunar Flyby 🌕
Launch Site: Kennedy Space Center, Florida
Launch Vehicle: Space Launch System (SLS) 🚀
Spacecraft: Orion Crew Capsule
Representing the next chapter of human deep-space exploration as NASA prepares to return astronauts beyond Earth orbit.
Passenger: Nitanshu Tak
Mission: Nancy Grace Roman Space Telescope 🔭
Destination: Sun–Earth Lagrange Point 2 (L2)
Launch Site: Kennedy Space Center, Florida
Mission Focus: Dark Energy • Dark Matter • Exoplanets ✨
Supporting NASA's next-generation space observatory designed to uncover the mysteries of the universe.
From exploring the Moon to studying the farthest reaches of the cosmos, these symbolic NASA boarding passes celebrate curiosity, innovation, and the pursuit of discoveries that shape the future of humanity.
graph TD
Curiosity --> Learning
Learning --> SystemsThinking
SystemsThinking --> Build
Build --> Scale
Scale --> Impact
Impact --> Curiosity
| Project | Domain | Core Tech | What It Actually Does |
|---|---|---|---|
| Helios | AI Security + Self-Healing | Python · Flask · scikit-learn · AWS EC2/S3/CloudWatch/SNS | 5 ML models (CPU, Network, Login, Injection, Storage). >95% accuracy. Real-time auto-recovery pipeline. Applied for Publishing at at ICATEET 2026. |
| Quantum-Cloud | Quantum + Cloud Scheduling | Python · Qiskit · QAOA · AWS Braket · FastAPI · Streamlit | QUBO Hamiltonian cloud scheduler. 35% better than greedy baseline. National Quantum Computing Hackathon 2025. |
| MediFlow AI | GenAI + Healthcare | Next.js 14 · TypeScript · Claude API · Vercel | 5-agent autonomous claims pipeline. Clinical NLP → Compliance → Auth → Adjudication → Audit. 6 hrs → 28 sec. ET GenAI Hackathon 2026. |
| ATLAS-SRE | SRE + Kubernetes | AWS EKS · Prometheus · Grafana · ALB · Docker | Production K8s cluster. Failure injection + verified self-healing. 99.9% uptime · 65% MTTD reduction. |
| NitanshuOS | OS Engineering | Linux 5.10 · Buildroot · GRUB · BusyBox · QEMU · Docker | Custom Linux distro built from scratch. 5-stage automated disk pipeline. Boots on QEMU. >60% smaller than standard distros. |
| SuryaDrishti | Geospatial AI | Python · scikit-learn · Rasterio · GDAL · Flask · Landsat 9 | Random Forest on 1.45M satellite pixels. 95.99% accuracy · F1=0.962. Delhi Urban Heat Island mapping. ISRO/NRSC portfolio. |
| Navika | RAG + Finance | Python · FAISS · MiniLM · Gemini API · Reflex | MiniLM 384-dim embeddings + FAISS. Gemini 2.5 Flash grounded inference. MRR=0.812 · 90% Hit@5. Top 100 / 7,000+ teams. |
| ARES | Autonomous SRE | Next.js · TypeScript · Python · Docker Engine API · Prometheus | MAPE-K control plane. Multi-agent self-healing. Docker Engine API remediation. 108+ Vercel deployments. |
| Kevlar | Cybersecurity | Python · Flask · Random Forest · Chrome Manifest V3 | 4-layer browser security suite. ~96% phishing accuracy on 96k URLs. URL risk + HTTPS + scam text layers. Ideathon Finalist. |
| SAL-SHIELD | Geospatial AI + Environmental Intelligence | Python · TensorFlow · XGBoost · Random Forest · CNN · React · Flask · Sentinel-2 · GIS | AI-powered forest intelligence platform for early detection of Sal Borer infestation. Combines satellite analytics, CNN-based tree classification, and geospatial risk mapping through an offline-first PWA. XGBoost 97.5% · CNN 92.7% · RF 88.8%. |
| NebulaStack | Cloud IaC | AWS EC2 · RDS · Docker · Terraform · ECR | Git SHA image versioning · Terraform-only provisioning · SSL-enforced RDS · IAM least-privilege. |
| Prism | AI + Hiring Intelligence | Python · Pandas · TF-IDF · TruncatedSVD · scikit-learn · HTML/JS | 5-layer hybrid candidate-ranking pipeline. 100K profiles · TF-IDF + LSA semantic scoring · Behavioral trust modeling · 76.4s runtime · 100% anomaly detection. |
| Cloud DSL Compiler (Patent Pending. Hence, the repo is private) | Systems + Compilers | Java · ANTLR4 · Docker · Kubernetes · AWS ECS · VS Code Extension | Patent-granted infrastructure compiler implementing a 6-phase compilation pipeline (Lexer → Parser → AST → Semantic → IR → Codegen). Compiles cloud DSL into Dockerfiles, Kubernetes manifests, and ECS deployments. 150 lines → 5 lines reduction. |
| GigForge | FinTech + Full Stack | Next.js · TypeScript · PostgreSQL · Prisma · RBAC | Production-grade workforce and insurance infrastructure for India's gig economy. Append-only financial ledger, OTP authentication, worker onboarding, insurance contribution tracking, and role-based administration workflows. |
10 PRs merged across production repositories. Every fix is a real bug — not a documentation edit, not a typo. Production issues that affected real users.
| # | Repository | PR | What Was Broken · What I Fixed | Stars |
|---|---|---|---|---|
| 1 | hemasriaavala/python-mini-projects | #8 | LRU Cache O(1) Implementation — Added complete Python LRU Cache using OrderedDict with O(1) get/put and cache eviction test cases | — |
| 2 | SdSarthak/AegisAI | #1545 | Guard SDK PyPI Packaging — Added pyproject.toml (Hatchling), optional ML deps, GitHub Actions publish workflow; unblocked pip install aegisai-guard |
★90+ |
| 3 | JhaSourav07/commitpulse | #8052 | Grace Period Dead Code — Unconditional todayIndex = lastIndex overwrote the grace period check every case; removed 1 line that made the entire feature useless |
★137 |
| 4 | JhaSourav07/commitpulse | #8054 | SSR Hydration Mismatch — useLocalStorage caused React 18 hydration warning in Next.js; fixed with lazy useState initializer, eliminating a full render cycle |
★137 |
| 5 | JhaSourav07/commitpulse | #8056 | TTLCache Asymmetric Validation — cache.get(" ") succeeded silently while cache.set(" ") threw; unified validation across get/has/delete |
★137 |
| 6 | JhaSourav07/commitpulse | #8058 | useDebounce Zero-Delay Async — delay===0 still went through setTimeout making it async; documented and aligned behavior against test contract |
★137 |
| 7 | JhaSourav07/commitpulse | #8060 | Unicode Surrogate Pair Truncation — SVG builder used .length (UTF-16 units) producing malformed XML; fixed using Array.from(text) for correct Unicode handling |
★137 |
| 8 | JhaSourav07/commitpulse | #8062 | parseStreakData Zero-Contribution Edge Case — Streak counter failed to reset on zero-contribution days, producing phantom streak of 1 day in the UI | ★137 |
| 9 | JhaSourav07/commitpulse | #8064 | formatContributionCount Locale Bug — toLocaleString() without pinned locale produced comma vs period inconsistency on non-English systems, breaking downstream parseInt() |
★137 |
| 10 | JhaSourav07/commitpulse | #8066 | getWeeklyAverage Division-by-Zero — New accounts with no history returned NaN, silently propagating "NaN contributions/week" into the stats panel |
★137 |
- Cloud Automation & DevOps - AWS, Kubernetes, Terraform, CI/CD, SRE
- AI-Based Threat Detection - Isolation Forest, Random Forest, self-healing pipelines
- Quantum-Classical Hybrid Systems - QAOA, QUBO formulation, Qiskit, AWS Braket
- Cybersecurity Automation - browser-layer ML defense, phishing detection, DevSecOps
- Linux OS Engineering & Virtualization - Buildroot, kernel config, QEMU, custom distros
- GenAI & RAG Systems - multi-agent pipelines, FAISS retrieval, LLM grounding
- OCI DevOps Professional - Oracle
- OCI Multicloud Architect Professional - Oracle
- AWS Academy - Cloud Foundations · Cloud Architecting · Cloud Operations
- AWS Cloud Practitioner - GeeksForGeeks
- Google Cloud Arcade 2025 — Diamond League (14,852 pts)
Infrastructure whispers before collapse. I engineer the systems that listen.





