TrueML

A zero-abstraction machine learning framework designed for deep understanding of training loops, gradients, and model architecture. TrueML exposes the fundamental primitive operations of ML, enabling developers and researchers to explicitly invoke every step without black-box methods.

Machine Learning Deep Learning Python Education
# Zero-abstraction ML
from trueml import Model, MSELoss

model = Model()
loss  = MSELoss()

# You control every step
y_pred = model.forward(X)
error  = loss(y, y_pred)
dw, db = loss.grad(X, error)
model.backward(dw, db)

Gen-CLI

Gen-CLI is a powerful Python-based command-line tool designed for rapidly generating boilerplate code and framework templates. It streamlines developer workflows by scaffolding projects across multiple programming languages instantly.

Python CLI Boilerplate Developer Tools Automation
# Scaffold any project instantly
$ gen create my-api --lang python

# Available templates
$ gen list
  python  Flask, FastAPI, CLI
  rust    Actix, CLI, Library
  go      Chi, Cobra, gRPC

# Add components
$ gen add dockerfile tests ci

AlgoX

AlgoX is a high-performance Python library that introduces STL-style data structures and algorithms via a native C backend. It is optimized for speed, learning, and algorithmic experimentation.

Python C Algorithms Data Structures High Performance

Tic Tac Toe

A graphical, pixel-art style Tic-Tac-Toe game built with Python and Pygame. It features classic two-player action with automated win detection and particle effects.

Python Pygame Game Development Pixel Art