Skip to content
View PoorProgrammer0A33's full-sized avatar

Block or report PoorProgrammer0A33

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

Hi, I'm Joshua ๐Ÿ‘‹

IT student (BS Information Technology, Quezon City University, expected June 2028) specializing in privacy-preserving systems and applied cryptography โ€” zero-knowledge proofs, homomorphic encryption, and tamper-evident data architectures, built on top of full-stack development experience.

I like building things that are hard on purpose: systems where the interesting part isn't "does it work" but "does it actually keep the guarantee it claims to."

Currently exploring: extending homomorphic encryption from statistics and credentials into federated machine learning.


๐Ÿ” Featured: Privacy-Preserving Systems

Homomorphic encryption pipeline (CKKS via Microsoft SEAL) computing aggregate health statistics โ€” the server never holds a decryption key, ever. Client generates its own keys and is the only party that can decrypt. Real-time stat broadcasting via SignalR, tamper-evident audit logging via Oracle 26ai Blockchain Tables.

C# .NET 8 Microsoft SEAL SignalR Oracle Database

Zero-knowledge scholarship eligibility system โ€” proves a student's income is below a threshold without revealing the income itself, to anyone. Circom + Groth16 circuit, Poseidon hashing, Oracle blockchain-table audit trail.

Circom SnarkJS Groth16 Node.js Oracle Database

Federated learning platform where clients train locally and share only homomorphically-encrypted gradients โ€” the aggregator sums and averages ciphertexts directly and is structurally unable to decrypt anything, verified by deliberately attempting decryption on the aggregator side and confirming it fails. 8-round training runs show consistent, monotonic loss convergence for every client tested. Deployed and validated across independently networked environments (native Windows + WSL2), with a live FastAPI dashboard streaming training progress in real time.

Python PyTorch TenSEAL (CKKS) gRPC Docker FastAPI

MediProof โ€” in progress, pending academic defense

ZKP-based medical credential verification system extending the same circuit architecture as LihimSuri into healthcare. Six-project .NET architecture (API, MAUI, Razor Pages admin). Repository private until capstone defense clears.


๐Ÿงฎ Also Building

Delivery route optimization platform โ€” custom Ant Colony Optimization engine solving the Vehicle Routing Problem with real road-network routing (OSRM), zone/location tracking, live analytics, and multi-vehicle auto-dispatch with priority-aware capacity bin-packing.

Python FastAPI PostgreSQL Docker OSRM

Linear regression, logistic regression (gradient descent from scratch), and Mahalanobis-distance anomaly detection โ€” implemented directly on raw linear algebra (Eigen), not library black-boxes.

C++ Eigen


๐Ÿ› ๏ธ Skills

Applied Cryptography: Zero-Knowledge Proofs (Circom, SnarkJS, Groth16), Homomorphic Encryption (CKKS, Microsoft SEAL, TenSEAL)

Languages: Python, C#, JavaScript, PHP, SQL, C++, Java

Backend & ML: FastAPI, ASP.NET Core, .NET MAUI, SignalR, Entity Framework Core, SQLAlchemy, PyTorch, gRPC

Databases: PostgreSQL, Oracle Database (26ai Blockchain Tables), Alembic

Tools: Git, Docker, Postman, JWT Auth, REST APIs


๐Ÿ’ผ LinkedIn

Popular repositories Loading

  1. LihimSuri-ZKP LihimSuri-ZKP Public

    My first self-made ZKP project for Age Verification as it intended to prove something without revealing any evidence

    JavaScript

  2. SwarmLogistics SwarmLogistics Public

    Delivery route optimizer using Ant Colony Optimization, FastAPI, and PostgreSQL โ€” with multi-vehicle dispatch and live map visualization

    Python

  3. forensics-ml-cpp forensics-ml-cpp Public

    C++ forensics data science pipeline โ€” logistic regression classifier and Mahalanobis anomaly detection with Python visualization

    C++

  4. Encrypted-Health-Ledger Encrypted-Health-Ledger Public

    Privacy-preserving health statistics using homomorphic encryption (CKKS) with a tamper-evident Oracle blockchain audit ledger

    C#

  5. PoorProgrammer0A33 PoorProgrammer0A33 Public

  6. privacymesh privacymesh Public

    Federated learning with homomorphic-encrypted gradient aggregation โ€” the server can compute on encrypted gradients but can never decrypt them.

    Python