Programming
Posts and blogs on all things programming– design, coding, and optimizations.

Simulating Phase Transitions: Building a 2D Ising Model in TypeScript
The blog post regarding a web-deployed 2D Ising model simulation, written in TypeScript, HTML 5 Canvas, and Chart.js. Continue reading Simulating Phase Transitions: Building a 2D Ising Model in TypeScript

A Comparison of tf.data.Dataset with Manual Image Loading
Loading data for AI models can be RAM and time-intensive. For a larger project (HackAI 2025) with a big dataset, I ran an optimization test on a manual loader and a Tensorflow pipeline to see the variations in time and RAM. As expected, Tensorflow’s model is much more efficient. Continue reading A Comparison of tf.data.Dataset with Manual Image Loading