Skip to content
View sachncs's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report sachncs

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.

Content in all repositories owned by your account will be closed.
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
sachncs/README.md

sachncs / site

This repository hosts my product page and open-source work.

The product page is a standalone React site that lives entirely under site/. It is built with Vite + TypeScript + Tailwind, deployed to GitHub Pages via the workflow in .github/workflows/deploy.yml.

Live site: https://sachncs.github.io/sachncs/

If you set up sachncs.github.io as the user-site repo and point it here, it serves at the root URL.


Develop the site

cd site
npm install
npm run dev       # local dev server on http://localhost:5173
npm run build     # production build -> site/dist
npm run preview   # preview the production build

The site uses relative asset paths (base: './') so the same build serves cleanly at any subpath β€” project page, user page, or a custom domain.


Deploy

GitHub Pages is configured to deploy from the Deploy site to GitHub Pages workflow (.github/workflows/deploy.yml). On every push to main it:

  1. Installs dependencies in site/
  2. Runs npm run build β†’ site/dist
  3. Publishes the artifact to GitHub Pages

To activate: Settings β†’ Pages β†’ Source β†’ GitHub Actions.


Project structure

.
β”œβ”€β”€ site/                   # The product page (standalone React app)
β”‚   β”œβ”€β”€ public/             # Static assets (favicon, OG image)
β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”œβ”€β”€ components/     # Page sections
β”‚   β”‚   β”œβ”€β”€ content/        # Static content + copy
β”‚   β”‚   β”œβ”€β”€ ui/             # Reusable UI primitives
β”‚   β”‚   β”œβ”€β”€ App.tsx
β”‚   β”‚   └── main.tsx
β”‚   β”œβ”€β”€ index.html
β”‚   β”œβ”€β”€ tailwind.config.js
β”‚   └── vite.config.ts
└── .github/workflows/
    β”œβ”€β”€ ci.yml              # Markdown lint + link check
    └── deploy.yml          # Build & deploy site -> GitHub Pages

Selected work

Project Demonstrates Stack
promptsheon Git-native, versioned infra for agent configs TypeScript
agent-passport Identity and provenance for production AI agents Python
agent-guard Reliability and safety controls for deployed agents Rust
delta-search Retrieval over changing corpora β€” 50k QPS, p99 < 800ms Go
underwrite Decision systems on production data pipelines Python
fleetpilot Distributed event-driven backends Go

Browse the full public repositories list.


Contact

If what you've read resonates, start one.

Pinned Loading

  1. underwrite underwrite Public

    Event-driven nano-service platform for Indian retail lending, DPDPA/RBI compliant with Ed25519 cryptographic attestation.

    Python

  2. promptsheon promptsheon Public

    Git-native version control for AI agents β€” content-addressable prompt management, evaluation engine, maker-checker approvals β€” built in TypeScript (Fastify + Next.js).

    TypeScript

  3. fleetpilot fleetpilot Public

    FleetPilot β€” ALNS + BRKGA metaheuristics for time-windowed pickup-and-delivery VRP with multi-depot and traffic-aware routing.

    TypeScript

  4. find find Public

    Sub-second secp256k1 scalar discovery via 512-variant range-splitting and Montgomery batch inversion. Educational/research-only; for cryptographic pedagogy and high-performance Rust study.

    Rust 1 1

  5. hurstify hurstify Public

    RK-SAVR (Angelini & Bianchi 2025, arXiv:2509.20015v3) estimator of the Hurst parameter of log-volatility series. Pure JavaScript, zero runtime dependencies, deterministic.

    JavaScript

  6. factorise factorise Public

    High-performance prime factorisation in pure Python.

    Python