Skip to content
View VED2107's full-sized avatar
๐ŸŽฏ
Focusing
๐ŸŽฏ
Focusing

Highlights

  • Pro

Block or report VED2107

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
VED2107/README.md

Typing SVG

SNOWBROS Portfolio LinkedIn Email

Profile Views


๐Ÿง  About Me

I'm Ved Chauhan โ€” founder of SNOWBROS, an independent software engineering studio. I build across two worlds:

  • Developer tools & systems โ€” writing a native Rust static-analysis engine (Snowbros Atlas) with a shared semantic IR, a tree-sitter frontend per language, a built-in LSP, and a VS Code extension.
  • Full-stack products โ€” shipping production Next.js + Supabase applications, from luxury e-commerce to education platforms, to paying customers โ€” plus cross-platform work like Accounic, a multi-currency ledger running on web, Android and Windows off one schema.

I care about work that is deterministic, provable, and fast โ€” and about UI that feels premium.

struct Engineer {
    name: &'static str,
    studio: &'static str,
    focus: [&'static str; 3],
    principle: &'static str,
}

fn main() {
    let ved = Engineer {
        name: "Ved Chauhan",
        studio: "SNOWBROS",
        focus: ["Developer Tools", "Systems (Rust)", "Full-Stack Products"],
        principle: "Same input in, same result out โ€” accuracy over quantity.",
    };
    println!("{} builds {} kinds of things.", ved.name, ved.focus.len());
}

๐Ÿš€ Flagship: Snowbros Atlas

A deterministic, multi-language static-analysis engine โ€” written in Rust.

Stars crates.io npm VS Code Marketplace

As of v0.4.0 Atlas is multi-language by architecture: JavaScript, TypeScript, React, Next.js, and Python all lower into one shared semantic IR, and every rule is either language-agnostic or scoped to a language family in one place โ€” never an if language == branch inside a detector. It builds whole-project symbol, import, and file graphs, then reports problems it can prove โ€” circular imports, dead files, server/client boundary leaks, React hook misuse, unused deps, hardcoded secrets, oversized functions โ€” each with an evidence chain. Ships an LSP + VS Code extension, SARIF/JSON/HTML/Markdown reports, and a guarded auto-fix engine. 23 rules, cross-platform, published to crates.io, npm, Homebrew, and the VS Code Marketplace.

Also building Mentor โ€” an engineering-intelligence orchestrator skill for Claude Code (TEACH or BUILD mode across the whole stack).


๐Ÿ› ๏ธ Tech Stack

Languages

Rust TypeScript Python JavaScript Dart SQL

Frontend

Next.js React Tailwind CSS GSAP Framer Motion shadcn/ui

Systems & Backend

Node.js Tree-sitter Supabase PostgreSQL Prisma

Mobile & Cloud

Flutter Firebase Docker Vercel Git


๐Ÿ Watch my contributions get eaten

snake eating my contribution graph

๐Ÿ’ผ Featured Projects

๐Ÿฆ€ Snowbros Atlas โ€” Multi-Language Static Analysis Engine (Rust)

Deterministic engineering-intelligence platform. One shared semantic IR across JS/TS and Python; the same rule runs on every language it applies to.

Category Details
Stack Rust, Tree-sitter, LSP, VS Code API
Languages analyzed JavaScript, TypeScript, React, Next.js, Python
Distribution crates.io ยท npm ยท Homebrew ยท VS Code Marketplace
Highlights Shared IR ยท 23 rules ยท evidence-first ยท guarded auto-fix ยท SARIF/LSP
Repo github.com/snowbros-labs/atlas
Live snowbros.me/atlas
๐Ÿค– Mentor โ€” Engineering-Intelligence Skill for Claude Code

A capability orchestrator that composes only the specialist expertise a task needs, in TEACH or BUILD mode across the whole stack.

Category Details
Type Claude Code skill / orchestrator
Repo github.com/snowbros-labs/mentor-skill
Focus Software ยท backend ยท frontend ยท architecture ยท security ยท AI ยท DevOps
๐Ÿ“’ Accounic โ€” Multi-Currency Accounting Ledger (3 clients, 1 backend)

A personal accounting system where the database owns every balance and no client ever adds up a column. Web, Android and Windows all speak to the same Postgres schema through the same validated RPCs.

Category Details
Stack Next.js 15 ยท React 19 ยท Flutter 3.29 ยท Supabase / PostgreSQL
Clients Web, Android APK, Windows installer โ€” one shared data contract
Accounting FIFO settlement allocator, opening balances, retractable history
Multi-currency Entries keep the currency they were entered in; base-currency totals are supplementary, never a replacement. Live mid-market rates (open.er-api.com โ†’ ECB fallback)
Security Forced RLS on every table, anon holds no EXECUTE in public, CSP/HSTS, host-allow-listed update links
Tests 234 SQL assertions ยท 180 Flutter ยท 64 web ยท 71 tenant-isolation checks over real HTTP
Updates Checks GitHub Releases on launch and offers the new build
Repo github.com/VED2107/accounic
๐ŸŽฎ VED.EXE โ€” Retro-Gaming Developer Portfolio

Production developer portfolio with CRT effects, terminal UI, RPG mechanics, and live GitHub integrations.

Category Details
Stack Next.js 16, React 19, GSAP, TypeScript
Live ved.exe.snowbros.me
Features CRT effects, terminal UI, RPG mechanics, GitHub GraphQL integration
๐Ÿ›๏ธ Vinnys Vogue โ€” Luxury Fashion E-Commerce

Role-based fashion commerce platform with checkout, order tracking, and admin management.

Category Details
Stack Next.js, Supabase, PostgreSQL
Features Catalog, cart, payments, order tracking, admin dashboard
Security Row-Level Security (RLS), auth
Live vinnysvogue.in
โœจ Lunora Studio โ€” Handmade Bouquet E-Commerce

Cinematic GSAP storytelling landing page + full commerce workflow for handmade bouquets.

Category Details
Stack Next.js, Supabase, GSAP, shadcn/ui
Features Custom bouquet requests, coupon engine, admin analytics, CMS
Live lunorastudio.vercel.app
๐Ÿ“š STC โ€” Education Platform ยท ๐ŸŽฅ Filmica โ€” Flutter Camera App

STC โ€” learning-management + attendance system for students (Next.js, Supabase, RBAC).
Filmica โ€” cross-platform film-companion camera app with AI-powered GLSL shader effects (Flutter, Dart, Firebase).


๐Ÿ“Š GitHub Analytics

GitHub Streak

Activity Graph

Trophies


๐Ÿงญ What I'm Building Next

now:
  - Atlas M4 โ€” more language frontends (Go, Rust, Java) on the shared IR
  - Cross-language rules driven by real-world feedback
  - Mentor โ€” expanding the capability orchestrator

principles:
  - Deterministic: same code + config -> same findings, always
  - Provable: never guess; unresolved is labeled, not hidden
  - Fast: native Rust, incremental cache, run-on-save speed

open_to:
  - Developer-tools / systems engineering
  - Product engineering & founder collaborations
  - Open-source contributions

๐ŸŽ“ Coding Profiles

LeetCode GeeksforGeeks HackerRank CodeChef


Building systems that are deterministic, provable, and fast.

Pinned Loading

  1. VED2107 VED2107 Public

    Profile README โ€” Ved Chauhan, founder @ SNOWBROS. Rust dev-tools, systems, and full-stack products.

    1

  2. STC STC Public

    Smart Teaching Companion - An intelligent educational platform for CBSE and GSEB board students. Dual-pathway courses, faculty mentorship, small-batch learning, and competitive exam prep (JEE/NEET).

    TypeScript 1

  3. vinnys-vogue vinnys-vogue Public

    โœจ Premium fashion e-commerce platform built with Next.js, TypeScript & PostgreSQL. Modern, secure, and performant online shopping experience.

    TypeScript 1

  4. portfolio portfolio Public

    VED.EXE โ€” Retro Gaming Developer Portfolio | Next.js 16, React 19, TypeScript, GSAP, Framer Motion

    TypeScript 2

  5. lunora-studio lunora-studio Public

    ๐ŸŒธ The Lunora Studio โ€” luxury handmade bouquet e-commerce. Next.js 16, Supabase, GSAP. Flowers Fade. Memories Don't.

    TypeScript 3

  6. snowbros snowbros Public

    SNOWBROS - independent software engineering studio. Next.js 16, React 19, TypeScript, Tailwind v4.

    TypeScript 1