Skip to content

PROOF OF WORK

I build software that stays correct when things fail — and I publish the evidence.

Backend systems · Applied AI · Distributed computing

BUILD 9aa1cd7 ◆ VERIFIED

01VERIFICATION

Verification — four verified claims

P99 LATENCY

AUDIT CHECKS

SYSTEMS SHIPPED

NULL RESULT PUBLISHED

Every number on this site links to the artifact that produced it. Hover any .

About the engineer

02THE ENGINEER

I got interested in the moment things break.

Most software works until it meets reality: two requests arriving at once, a network that drops mid-transaction, a benchmark nobody re-ran. That moment — where the demo ends and the system either holds or doesn't — is the part of engineering I find worth staring at. Difficult systems problems are honest: they don't care how the code looks, only whether the invariant held.

The same instinct explains why I publish limitations. A weak class flagged in a README, a false-positive rate that disqualifies a filter, a study closed on a null result — these aren't confessions, they're calibration. If my record can't say “no,” its “yes” means nothing. I'd rather hand someone an instrument that reads true than a highlight reel.

CURRENTLY — B.Tech CSE, Lovely Professional University

SEEKING — backend / AI-systems engineering roles

LOCATION — Jalandhar, India · open to relocation

Operating constraints

03OPERATING CONSTRAINTS

Four rules the evidence will be tested against. Not values — constraints: each one names the repositories that enforce it.

  1. P-01

    Fail closed.

    When a system can't decide safely, it blocks, defers, or hands off to a human — it never guesses. Errors and unrecognized states resolve to the safe side by construction.

  2. P-02

    Correctness is a database property, not an application promise.

    Invariants live where they cannot be bypassed: row locks, row-level security, atomic RPCs, on-chain access control. Application code may misbehave; the invariant holds anyway.

  3. P-03

    Evidence over claims.

    Metrics are recomputed from artifacts, datasets are fingerprinted, models are signed, and null results are published. A number that can't be re-derived doesn't ship.

  4. P-04

    Local-first when it matters.

    Privacy-sensitive and availability-critical processing stays on the device. The network is an optimization, not a dependency.

04EVIDENCE

Evidence — five examined cases

Five systems, examined the way an auditor would.

CASE 01 / 05FURNITUREOPS

VERIFIEDDEPLOYED

One invariant, defended end to end.

Next.js 14 · TypeScript · Supabase Postgres · Upstash Redis · Playwright · 2026

THE PROBLEM

A naive stock decrement is a race condition: two buyers read the same count, both succeed, and the shop oversells. Handling it at the API layer alone does not survive retried requests, duplicate submissions, or a worker that crashes mid-transaction.

THE INVARIANT

Stock is never oversold — under concurrent purchases, retries, and partial failures.

THE APPROACH

Purchases are accepted at the edge, checked for idempotency, and enqueued to Redis instead of written synchronously. A separate worker drains the queue through a Postgres RPC that row-locks the item, validates stock, and writes the audit log in the same transaction — with retries, a circuit breaker, and a dead-letter queue around it.

IDEMPOTENCYdedupe keyQUEUEredis listWORKERretry · cb · dlqFOR UPDATErow lock + txnAUDIT LOGsame transactionCONCURRENT PURCHASESretries and duplicates includedINVARIANT: NEVER OVERSOLD ◆

VERIFICATION SCRIPTS

ATOMIC STOCK RPC

ACCESS CONTROL IN THE DATABASE

ADMIN JWT MAX AGE

DECISION RECORDS

ADR-001Why a queue, not a synchronous write?

CONTEXT — The obvious design writes stock changes inside the request handler. Under load, that couples user latency to database contention and makes retry semantics ambiguous.

  • Synchronous decrement in the API routeretries and duplicate submissions double-decrement; a crash mid-request loses the order
  • Optimistic locking in application codedoes not survive retried requests or a worker dying between read and write
  • Idempotency check → Redis queue → single worker

DECISION — Accept at the edge, deduplicate by idempotency key, enqueue, and let one consumer apply changes through the locking RPC.

ACCEPTED COST — Purchases are eventually consistent (queue latency), which the UI must communicate. In exchange: exactly-once effects, calm failure handling, and a database that can be busy without users feeling it.

ADR-002Why row locks over application-level checks?

CONTEXT — The invariant must hold even if every process above the database misbehaves.

  • Check-then-write in the workerTOCTOU race between check and write
  • SELECT … FOR UPDATE inside a Postgres RPC

DECISION — decrement_stock_atomic() locks the row, validates available stock, applies the change, and appends the audit entry — one transaction, one place where the invariant lives.

ACCEPTED COST — Throughput on a single hot item is serialized by design. Jobs are sorted by item id before processing to avoid deadlocks across items.

ADR-003Rate limiter fails open — a documented compromise.

CONTEXT — Edge rate limiting depends on Redis. What happens when Redis itself is unreachable?

  • Fail closed: reject all traffic without Redisturns a cache outage into a full outage; protection becomes self-inflicted denial of service
  • Fail open with a logged warning

DECISION — Availability wins for the rate limiter; the stock invariant never depends on it.

ACCEPTED COST — A Redis outage temporarily removes rate protection — accepted and logged, because correctness is enforced a layer down.

⚠ LIMITATION — Single-region queue and database; regional failover is untested. The chaos scripts cover process crashes, not datacenter loss.

CASE 02 / 05NEXUS-RTB

VERIFIEDRESEARCH

Every microsecond and every unit of budget accounted for.

Python · LightGBM · Prometheus · Grafana · Docker · 2026

THE PROBLEM

A real-time bidding engine gets one bid request and a hard deadline. It must predict click-through, conversion, and clearing price, decide a bid that is economically sound, and enforce budget discipline — all inside a latency budget where a slow answer is the same as no answer.

THE INVARIANT

No bid leaves the engine without passing every risk control — EV gate, shading, pacing, profit cap, and budget circuit breaker.

THE APPROACH

Three calibrated LightGBM models (CTR, CVR, clearing price) read a 262,144-dimension hashed feature space. Expected value feeds a Lagrangian bid optimizer, then a six-layer risk chain shapes or kills the bid. The whole request path — parse, extract, infer, decide — executes in 0.15ms at P99.

PARSEbid requestHASH262K dimsINFER ×3ctr · cvr · priceEVlagrangian bidRISK ×6gate→shade→paceBIDresponseshown at ~6000× real speed — the engine crosses this line in 0.15ms P99

P99 REQUEST PATH

HASHED FEATURE SPACE

RISK CONTROL LAYERS

MODEL ARTIFACTS

DECISION RECORDS

ADR-001Why gradient boosting, not a neural model?

CONTEXT — The latency budget is sub-millisecond on CPU, and the feature space is sparse and categorical.

  • Deep CTR model (DeepFM-class)inference cost blows the latency budget without a GPU serving stack; marginal AUC gain on this data
  • LightGBM with isotonic calibration per model

DECISION — Three small LightGBM models (300 trees, depth 4) with per-model isotonic calibration on validation data.

ACCEPTED COST — Probabilities are trustworthy enough to do economics on — EV math needs calibrated inputs, not just good ranking. The ceiling on raw accuracy is accepted.

ADR-002Why PID pacing instead of even spend?

CONTEXT — Budgets must survive bursty traffic without either exhausting early or under-delivering.

  • Static per-minute spend capsoscillates under bursty auctions; wastes budget in quiet periods
  • PID controller tracking spend trajectory

DECISION — A PID pacing controller adjusts bid aggressiveness continuously, with a hard budget circuit breaker behind it as the last line.

ACCEPTED COST — Two knobs to tune (controller gains, breaker thresholds) — documented in the monitoring stack with Grafana dashboards rather than left as folklore.

⚠ LIMITATION — Evaluated in a simulation/replay environment against auction datasets — the disciplines are production-grade; the traffic is not production traffic.

CASE 03 / 05GEOFENCE-LLM

VERIFIEDRESEARCH

Jailbreak detection that attackers can't paraphrase around.

Python · PyTorch · Transformers · scikit-learn · 2025

THE PROBLEM

Text-level jailbreak filters are brittle: synonym substitution, encodings, and adversarial prefixes are all authored by the attacker, and all defeat classifiers that only read the prompt. Detection needs a signal the attacker cannot directly write.

THE INVARIANT

Fail closed — any internal error, unrecognized state, or ambiguous signal resolves to a block, never a pass-through.

THE APPROACH

Treat the model as a dynamical system. As a prompt moves through Llama-3.2-3B's layers, its hidden states trace a path; geometric features of that path (tortuosity, energy drift, directional stability) — computed over sliding windows, not one global trajectory — feed a state estimator, a risk engine, and an authority layer that maps risk to ALLOW, SLOW, CLARIFY, REFUSE, or HALT.

L5L10L15L20L24HIDDEN-STATE TRAJECTORY ACROSS LAYERShigh tortuosityadversariallow tortuosityalignedwindowSIGNALStortuosity · drift · stabilitySTATEnormal → adversarialRISKbase + trend + volatilityAUTHORITYrisk → actionALLOWSLOWCLARIFYREFUSEHALTerrors resolve to HALT — fail closed
THE GEOMETRY, IF YOU WANT IT
tortuosity —
path length divided by straight-line displacement; how much the trajectory wanders per unit of progress.
energy drift —
change in hidden-state norm across layers; adversarial prompts show different energy profiles.
directional stability —
cosine similarity of successive step directions; aligned prompts keep heading somewhere.
windowing —
features computed over sliding windows, not the whole prompt — the repo's own audit showed global features are diluted by harmless prefixes.

OBFUSCATED-PROMPT RECALL

FALSE-POSITIVE RATE

PROBED LAYERS

DEFAULT ON ERROR

DECISION RECORDS

ADR-001Why trajectory geometry, not text classification?

CONTEXT — Every text-level signal is under attacker control by definition.

  • Prompt classifier over textdefeated by paraphrase, encodings, prefix injection — exactly the threat model
  • Hidden-state trajectory geometry

DECISION — Read the model's internals: adversarial prompts produce geometrically distinguishable paths even when their surface text is obfuscated.

ACCEPTED COST — Requires access to model internals (white-box only), and inference cost grows with probing. Accepted: this is a defense layer for models you host, not a universal proxy.

ADR-002Windowed signals over one global trajectory.

CONTEXT — The project's own phase-5.3 audit found whole-prompt trajectory features brittle: sensitive to prompt length and defeated by harmless prefixes.

  • One global trajectory per promptthe repo's own hardening audit documents the failure — length sensitivity, prefix dilution
  • Sliding-window geometry features

DECISION — Compute tortuosity, directional stability, energy drift and velocity variance over windows, then aggregate.

ACCEPTED COST — More computation per prompt, and window size becomes a tunable. The failed architecture stays documented in architecture_hardening.md instead of being deleted.

⚠ LIMITATION — A 0.48 false-positive rate makes this unsuitable as a standalone filter — the repo says so plainly. It is a research direction and a defense-in-depth layer, not a product claim.

CASE 04 / 05ASTRA

VERIFIEDDEPLOYEDRESEARCH

Classifying variable stars with a pipeline that audits itself.

Python · PyTorch · lightkurve · ONNX · Next.js · Three.js · 2026

THE PROBLEM

TESS produces light curves by the hundred thousand; classifying stellar variability by hand does not scale, and ML results in the literature are notoriously hard to reproduce — metrics logged during training quietly drift from what the shipped weights actually do.

THE INVARIANT

Every reported number is recomputed from the checkpoint weights and the hash-locked test set — not read from a training log.

THE APPROACH

An end-to-end pipeline from VSX/MAST acquisition through a dual-branch Hybrid CNN + Transformer (raw and phase-folded photometry), five-fold cross-validation across three seeds, temperature calibration, MC-dropout uncertainty, and ONNX export to a live web platform. A ground-truth audit re-derives the published metrics from artifacts; the dataset carries a SHA-256 fingerprint.

0.000.250.500.751.00TIC 0231702397 — PHASE-FOLDED FLUXORBITAL PHASEprimary eclipsePER-CLASS F1 — HYBRID CNN+TRANSFORMER0.94RR LYRAE0.91ECL. BINARY0.81CEPHEID0.66STABLE0.52SOLAR-LIKE▲ prediction⚠ flaggedDATASET SHA256 f99b4b06…2dbf58944 STARS · HASH-LOCKEDGROUND-TRUTH AUDIT 8/8 PASS ◆

TEST ACCURACY

MACRO F1

GROUND-TRUTH AUDIT

SOLAR-LIKE F1 — FLAGGED

DECISION RECORDS

ADR-001Ship the shared variant, not the highest-scoring one.

CONTEXT — The 'separate' hybrid variant scored 84.51% test accuracy — six points above the 'shared' variant's 78.17%.

  • Deploy 'separate' (84.51%)more parameters, less interpretable attention, and the gap sits inside overlapping confidence intervals
  • Deploy 'shared' (78.17%)

DECISION — Production model = shared variant: better parameter efficiency, interpretable attention maps, honest CI-aware comparison. Both results stay published side by side.

ACCEPTED COST — The headline number is lower than it could have been. That is the point: the README reports the choice and the alternatives' scores.

ADR-002Hash-lock the dataset; audit from artifacts.

CONTEXT — Reproducibility claims are cheap; most 'accuracy' numbers cannot be re-derived a month later.

  • Trust training logslogs drift from artifacts; nobody re-runs them
  • SHA-256 fingerprint + independent recompute

DECISION — The 944-star dataset is fingerprinted; an audit script recomputes accuracy and F1 from checkpoint weights and test-set IDs. 8/8 checks, 0 mismatches.

ACCEPTED COST — Slower to change the dataset (by design). Anyone can re-run the audit and catch drift.

⚠ LIMITATION — Solar-like classification (F1 0.52) is not production-ready and is flagged as experimental in the repo — more data is required before those predictions mean anything scientifically.

CASE 05 / 05DDSO

VERIFIEDDEPLOYEDRESEARCH

An I/O scheduler that rewrites its own strategy.

C · Linux kernel · ftrace · Node.js · Next.js · 2026

THE PROBLEM

No single disk-scheduling algorithm wins everywhere: FIFO is fair but seek-blind, SSTF minimizes head travel but starves distant requests, batching helps sequential loads and hurts random ones. Workloads change at runtime; static schedulers don't.

THE INVARIANT

Algorithm switches are deliberate: hysteresis and a cooldown window prevent the scheduler from thrashing between strategies on noisy telemetry.

THE APPROACH

A Linux block-layer elevator module (C) tracks seek distance variance in real time and switches between FIFO, SSTF, and BATCH when the variance signal crosses calibrated thresholds. Kernel tracepoints stream every switch and dispatch through a WebSocket bridge into a live Next.js dashboard — the kernel explains itself while it runs.

SEEK VARIANCE σ² — LIVE FROM trace_ddso_dispatchhiloFIFOsequential — order is already optimalSSTFrandom — chase the nearest sectorBATCHclustered — group and sweeptrace_ddso_switchtrace_ddso_switchswitches require sustained evidence: hysteresis band + cooldown window — one spike never flips the schedulerkernel/ddso.c ◆

SCHEDULING STRATEGIES

SWITCH SIGNAL

KERNEL TELEMETRY PATH

DECISION RECORDS

ADR-001Why seek variance as the signal?

CONTEXT — The decision engine runs in the kernel's dispatch path; the signal must be nearly free.

  • Full workload classification (pattern mining)too expensive for the hot path; belongs in userspace, adds latency to every dispatch
  • Running seek-distance variance

DECISION — Three counters updated per dispatch give a variance estimate that separates sequential, clustered, and random workloads well enough to pick a strategy.

ACCEPTED COST — Coarser than a learned classifier — a deliberately dumb, fast signal in the kernel, with the fancy analysis pushed out to the dashboard.

ADR-002Hysteresis and cooldown before any switch.

CONTEXT — Variance is noisy; naive thresholding would flip algorithms constantly, costing more than it saves.

  • Switch immediately on threshold crossthrashing — each switch has re-ordering cost and destroys locality
  • Hysteresis band + cooldown window

DECISION — A switch requires sustained evidence and a minimum dwell time in the current strategy.

ACCEPTED COST — Slower to react to genuine regime changes — the cost of stability, chosen consciously.

⚠ LIMITATION — Developed and validated against a WSL-hosted kernel with fio workloads; not benchmarked on bare-metal production storage. Latency-improvement numbers are therefore not published as claims.

EXTENDED EVIDENCE / HELD IN RESERVE

RAPTOR-AI

A voice assistant that doesn't phone home.

  • Wake-word, speech-to-text and TTS run entirely on-device; only LLM reasoning calls out.
  • Six-layer architecture with an explicit agent state machine and a priority engine that learns alert relevance from feedback.

Python · FastAPI · Faster-Whisper · Next.js

REPO

ZKHEALTH-FHE

Health records where the patient holds the keys.

  • AES-256-GCM encryption in the browser before anything leaves the device; the chain stores hashes and grants, never plaintext.
  • Access control enforced by contracts on an FHE-capable EVM chain — not by trusting a backend.

Solidity · fhEVM · Node.js · Arweave

REPOLIVE
The null result — Helios-Dx

CASE HELIOS-DX — CLOSED

“No consistent quantum advantage was observed.”

We published the result anyway.

Research integrity is measured by reporting what is true, not what is convenient. Helios-Dx ran a capacity-matched comparison — same frozen backbone, same 768→4 bottleneck, same seeds — of a 4-qubit variational circuit against a plain linear head, under FHE constraints. The classical head was never beaten consistently.

NULL RESULT — PUBLISHED

QUANTUM ADVANTAGE OBSERVED

CLOSED AND CITABLE

FHE BOTTLENECK

Trajectory

06TRAJECTORY

Eight months, read as an escalation: each stage takes on a constraint the previous one didn't have.

  1. NOV 2025RISK SYSTEMS

    Risk before returns.

    A trading system where the regime-detection model mattered less than the guardian daemon and kill-switch built around it.

    crypto-ai-decision-system

  2. DEC 2025LLM SECURITY

    Reading a model's mind.

    Jailbreak detection moved from classifying text to measuring the geometry of hidden-state trajectories — a signal attackers can't author.

    GEOFENCE-LLM · Helios-Dx

  3. JAN 2026PRIVACY

    Privacy as architecture.

    Patient-held keys on an FHE-capable chain, and an offline medical triage pipeline that defers to humans under uncertainty.

    zkhealth-fhe · Aegis-Edge

  4. FEB 2026DISTRIBUTED SYSTEMS

    Correctness under load.

    A sub-millisecond bidding engine with six risk layers, and an inventory backend whose one invariant survives concurrency and crashes.

    nexus-rtb-engine · FurnitureOps

  5. APR 2026AGENTS

    Autonomy, explained.

    A local-first voice agent with an explicit state machine and explainable decisions; an RL environment for training code-review agents.

    Raptor-AI · ai_code_reviewer_Meta_Hackathon

  6. MAY 2026KERNEL

    Into the kernel.

    A Linux block-layer scheduler that switches strategy at runtime from seek-variance telemetry — with hysteresis, cooldown, and live tracepoints.

    DDSO · apexos

  7. JUN 2026RESEARCH PLATFORM

    Publication-grade.

    A fully audited astrophysics ML pipeline: hash-locked data, recomputed metrics, calibrated uncertainty, live in-browser inference.

    ASTRA

  8. NEXTFUTURE WORK

    Toward publication.

    Backend and AI-systems roles; taking one research thread — hidden-state security or the ASTRA pipeline — toward formal peer review.

Engineering ledger — all repositories

07ENGINEERING LEDGER

The complete archive — all 17 public repositories, nothing curated out. Five appear above as examined cases; the ledger holds the rest of the record.

ENTRYDESCRIPTIONSTACKSTATUSYEARLINKS
Aegis-EdgeUncertainty-aware offline medical triage: distillation + OOD gatePython · PyTorch · TorchScriptresearch2026REPO ↗
ai_code_reviewerRL environment for code-review agents — Meta Hackathon (OpenEnv)Python · FastAPI · Dockerhackathon2026REPO ↗
apexosGPU-rendered global OSINT dashboard: flights, seismic, cyber, newsTypeScript · Next.js · MapLibre GLactive2026REPO ↗
ASTRAAudited ML pipeline classifying variable stars from TESS light curvesPython · PyTorch · ONNXdeployed2026CASE ↑REPO ↗LIVE ↗
career-agent-systemZero-LLM-token job-portal scanner with a Go TUI pipeline dashboardNode.js · Go · Bubble Teaactive2026REPO ↗
DDSOAdaptive Linux I/O scheduler with live kernel telemetryC · Linux kernel · Node.jsdeployed2026CASE ↑REPO ↗LIVE ↗
DSA-Practice-500149 curated interview solutions from 500+ solved DSA problemsC++17practice2026REPO ↗
FurnitureOpsInventory backend: stock stays correct under concurrency and crashesTypeScript · Next.js · Postgresdeployed2026CASE ↑REPO ↗LIVE ↗
nexus-rtb-engineReal-time bidding engine: calibrated models, six risk layers, 0.15ms P99Python · LightGBM · Prometheusresearch2026CASE ↑REPO ↗
productivity-systemPersonal productivity dashboard with time blocks and analyticsJavaScript · Chart.jsdeployed2026REPO ↗LIVE ↗
Raptor-AILocal-first voice AI operating layer for macOS with explainable decisionsPython · FastAPI · Whisperactive2026REPO ↗
zkhealth-fhePrivacy-preserving EHR on an FHE-capable EVM chain; patient-held keysSolidity · fhEVM · Node.jsdeployed2026REPO ↗LIVE ↗
aegis-commandOffline-first tactical dashboard: in-browser vision inference, PouchDB syncReact · Transformers.js · PouchDBactive2025REPO ↗
crypto-ai-decision-systemTrading research: regime detection, strict risk engine, kill-switch guardianPython · XGBoost · ccxtresearch2025REPO ↗
GEOFENCE-LLMJailbreak detection from hidden-state trajectory geometryPython · PyTorch · Transformersresearch2025CASE ↑REPO ↗
Helios-DxNull result: no quantum advantage under FHE constraints — publishedPyTorch · PennyLane · Concrete-MLclosed2025CASE ↑REPO ↗
RESONANCEReal-time sensor-fusion dashboard for environmental awarenessReact 19 · Vite · Framer Motionactive2025REPO ↗

TOTAL: 17/17 ENTRIES · 8 LANGUAGES · 4 DEPLOYED · SOURCE: github.com/Rexy-5097

Instrumentation — capabilities and interests

08INSTRUMENTATION

Capabilities by engineering domain. No proficiency bars — a percentage nobody can re-derive is exactly the kind of number this site refuses to ship. Each domain lists the repositories that prove it.

BACKEND SYSTEMS

  • Node.js
  • FastAPI
  • Next.js API routes
  • REST
  • WebSockets
  • Redis queues
  • idempotency
  • circuit breakers

PROVEN BY FurnitureOps · nexus-rtb-engine

DISTRIBUTED COMPUTING

  • async queue architectures
  • row-level locking
  • PID pacing
  • budget coordination
  • dead-letter queues
  • offline-first sync

PROVEN BY FurnitureOps · aegis-command

APPLIED MACHINE LEARNING

  • PyTorch
  • LightGBM/XGBoost
  • CNN+Transformer hybrids
  • knowledge distillation
  • isotonic & temperature calibration
  • MC-dropout uncertainty
  • ONNX deployment

PROVEN BY ASTRA · Aegis-Edge

RESEARCH ENGINEERING

  • reproducible pipelines
  • dataset fingerprinting
  • ground-truth audits
  • cross-validation across seeds
  • null-result reporting
  • CITATION.cff

PROVEN BY ASTRA · Helios-Dx

SYSTEMS PROGRAMMING

  • C
  • C++17
  • Linux kernel modules
  • block-layer schedulers
  • ftrace tracepoints

PROVEN BY DDSO · DSA-Practice-500

SECURITY & AI SAFETY

  • LLM jailbreak defense
  • hidden-state interpretability
  • fail-closed control loops
  • CSP/HSTS hardening
  • rate limiting
  • EIP-712 auth

PROVEN BY GEOFENCE-LLM · FurnitureOps

PRIVACY ENGINEERING

  • fully homomorphic encryption (Concrete-ML, fhEVM)
  • client-side AES-256-GCM
  • on-chain access control
  • local-first inference

PROVEN BY zkhealth-fhe · Helios-Dx

FRONTEND SYSTEMS

  • React 19
  • Next.js 14–16
  • TypeScript
  • Tailwind CSS
  • MapLibre GL / WebGL
  • real-time WebSocket UIs

PROVEN BY apexos · DDSO

FUNDAMENTALS —data structures & algorithms, kept sharp on purpose

08.1 / BEYOND THE CODE

CHESS

Long games, slow time controls — the same appetite for thinking three failure modes ahead.

SPACE TECHNOLOGY

TESS photometry turned into a research project; launch coverage watched like sports.

LINUX

Daily driver and dissection subject — one kernel module so far, not the last.

DISTRIBUTED SYSTEMS

Reading material of choice: post-mortems, consensus papers, and other people's outages.

RESEARCH

The habit of asking a question precisely enough that 'no' becomes a useful answer.

CONTINUOUS LEARNING

Eight months from trading bots to kernel schedulers — the curve is the point.

Engineering telemetry

09ENGINEERING TELEMETRY

Current instrument readings. No stars, no followers — only counts you can re-derive from public artifacts.

REPOSITORIES

public repositories, Nov 2025 – Jun 2026

RESEARCH SYSTEMS

ASTRA · GEOFENCE-LLM · Helios-Dx — reproducible, audited, one closed with citation metadata

LIVE DEPLOYMENTS

ASTRA platform · FurnitureOps · zkhealth · DDSO dashboard

CI PIPELINES

GitHub Actions workflows: ASTRA, apexos, nexus-rtb, crypto-ai, FurnitureOps

VERIFICATION SCRIPTS

dedicated test/verify files: 19 in FurnitureOps, 31 in crypto-ai-decision-system, more elsewhere

TECHNICAL DOCUMENTS

engineering logs, reports and design docs across repos: 55+ in ASTRA, 20+ in Helios-Dx, 23 in FurnitureOps

LANGUAGES IN PRODUCTION USE

Python · TypeScript · JavaScript · C · C++ · Solidity · Go · SQL

DSA PROBLEMS SOLVED

149 curated medium/hard C++ solutions published with complexity analysis

SOURCE: github.com/Rexy-5097 — recount any of these yourself. Hover any for provenance.

09.1 / LESSONS CARRIED FORWARD

  1. Correctness is designed, not tested into existence.

  2. The invariant comes first; the architecture is whatever defends it.

  3. A null result published is worth more than a positive result embellished.

  4. When a system can't decide safely, not deciding is the feature.

  5. Every number you can't re-derive is a liability wearing a metric's clothes.

Open channel — contact

10OPEN CHANNEL

AUDIT COMPLETE — THE EVIDENCE IS YOURS TO RE-RUN

Let's build systems that deserve trust.

I'm looking for backend and AI-systems engineering work — the kind where correctness is a requirement, not a hope. If that's the kind of system you're building, the channel is open.