Skip to content
View Asmodeus14's full-sized avatar

Highlights

  • Pro

Block or report Asmodeus14

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
Asmodeus14/README.md
Abhay Singh — operating systems, compilers, bare-metal Rust

I build operating systems and language toolchains. Right now that means a bare-metal Rust kernel that boots to userspace on real x86_64 laptops, and a statically-typed language whose type checker rejects programs that violate quantum mechanics before they ever run.

Most of my time goes to the layer where software meets hardware — schedulers, drivers, paging, and compiler front ends.

Currently building

  • Networking on bare metal — brought up the Intel Wireless-AC 9462 iwlwifi MLD driver in Nyx over July 2026: firmware load, ALIVE handshake, NVM parse, dual-band scan, then drove it end to end until the kernel fetched a real page off the live web.
  • Userspace — porting a std surface for Nyx applications, plus fault hardening in the kernel's memory path.
  • Syscall design — working out what a POSIX-shaped ABI should borrow from, and where a kernel that knows about quantum execution has to stop borrowing.

Featured work

Nyx

A bare-metal operating system that treats quantum execution as a kernel primitive.

Rust x86_64 QEMU C Apache 2.0

Quantum computing is normally a library sitting on top of an OS. Nyx asks what changes if the kernel itself knows about it: quantum programs compile through a QIR pipeline and execute inside the kernel's own execution model, alongside ordinary ELF64 processes.

The part I find most interesting is how little is borrowed. The NVMe block driver, the RTL8168 ethernet driver and its DHCP/TCP/UDP/DNS stack, the Intel iwlwifi wireless driver, and an Intel Gen9.5 3D pipeline are written from scratch — the last of those drives a GPU-composited desktop with damage tracking and page-flip presentation. SMP comes up through AP bootstrap with a per-CPU scheduler, and the syscall surface spans 80+ calls across a POSIX-compatible range and a Nyx-native one.

  • Implemented — SMP, 4-level paging with per-process isolation, ext4 on NVMe, GPU compositor, ACPI thermal/HWP governor, 80+ syscall ABI, wired and wireless networking to the open internet
  • Prototype — xHCI USB, AHCI/SATA, NVIDIA DRM handshake
  • Status — Pre-Alpha. Boots to Ring 3 under QEMU, and on select Comet Lake laptops.

Ships with a changelog, contributing guide, code of conduct, and syntax/CLI documentation.

Repository · Firmware

QCLang

A language whose type system enforces the no-cloning theorem at compile time.

Rust OpenQASM Apache 2.0 v0.2.1

Qubits cannot be copied, and measurement destroys the state you measured. Most quantum SDKs let you write code that ignores both and only complain at runtime. QCLang encodes the constraint in the type system instead: bindings are affine, so a qubit is consumed when used, which turns reassignment and use-after-measurement into compile errors with actionable diagnostics rather than silent physical nonsense.

Rust-inspired syntax with structs, tuples, and type aliases. Classical control flow (if, for, while) interleaves with quantum operations, and the backend emits OpenQASM 2.0. The optimizer integrated into Nyx does dead-qubit elimination and gate cancellation; the standalone QIR phase is still in progress.

  • Implemented — affine type checking, hybrid control flow, OpenQASM 2.0 output
  • In progress — standalone QIR optimization phase

Repository · Releases

CodeCopilot

LLM-assisted code review where the hard part was surviving hostile uploads.

Python Flask React Gemini

Static analysers point at a line. This one explains the root cause and proposes a fix, using Gemini over a static analysis pass.

The engineering that actually mattered is in the ingest path, because accepting arbitrary user archives is dangerous. Extraction is bounded on three independent axes — a 20:1 compression ratio ceiling, a 30,000-file count cap, and a recursion depth limit of 20 — so a decompression bomb hits a wall instead of the heap. Requests are rate limited per client, scanning runs as batched work across a bounded worker pool, and the LLM layer degrades to static-only analysis when no API key is present, probing a fallback chain of model names rather than assuming one is available.

Live demo · Backend · Frontend

OpenForge

A collaboration platform where ownership is recorded on-chain rather than in a database column.

Solidity TypeScript Express PostgreSQL Socket.IO

Four repositories rather than one: Solidity contracts holding project ownership, a Node/Express realtime backend speaking Socket.IO over plain SQL against Postgres with JWT and wallet-signature auth, and a React client that renders project space in 3D via react-three-fiber.

Interesting because the trust boundary is unusual — the backend cannot be the source of truth for who owns what, so it verifies ethers signatures and treats the chain as authoritative.

Contracts · Backend · Client


Also building

  • JarNox — stock dashboard; Next.js 15 client against a FastAPI backend that scrapes and serves market data
  • HealthGuard AI — linear-kernel SVM classifiers over clinical features for diabetes, heart disease, and Parkinson's, served through Streamlit
  • DSA Journey — algorithm solutions in Java

Stack

Only things I have actually shipped code with; each badge maps to a repository above.

Languages

Rust C Python TypeScript JavaScript Java Solidity

Systems & tooling

Linux QEMU Docker GitHub Actions no_std

Backend & data

Flask FastAPI Node.js Express Socket.IO PostgreSQL

Frontend

React Next.js Vite Tailwind CSS Three.js

ML & scientific

scikit-learn pandas NumPy Streamlit Gemini


Public code

Language distribution and activity across public repositories Contribution graph consumed by a snake

Both images are generated by GitHub Actions in this repository and served from raw.githubusercontent.com, so nothing here depends on a third-party service staying up.


Engineering interests

Kernel and driver development · type systems that make invalid states unrepresentable · compiling for exotic targets · the Rust/C boundary in freestanding environments · what an OS should look like when the hardware underneath it stops being purely classical

Elsewhere

Portfolio · LinkedIn · Email

Pinned Loading

  1. qclang qclang Public

    A statically-typed, quantum-classical hybrid programming language with affine type safety and OpenQASM 2.0 compilation.

    Rust 2

  2. Nyx Nyx Public

    A Rust-first bare-metal OS unifying classical, quantum, and AI-driven computing. Ships a native quantum language (QCLang), an evolving AI kernel entity, SMP scheduling, ext4 on NVMe, and Intel GPU …

    C 8 1

  3. CodeCopilot-frontend CodeCopilot-frontend Public

    CodeCopilot is an intelligent code analysis platform that helps developers identify issues, security vulnerabilities, and optimization opportunities in their web projects. With AI-powered insights …

    JavaScript

  4. OpenForge-Documentation OpenForge-Documentation Public