🧟 The Archaeology of a Dead .OVA
"It should be easy to download." Famous last words. 🧠 The Premise There exists (or existed) a certain .ova file. .ova is…
defaultDesigning a Column-Major Matrix Class with Row-Major Multiplication Optimizations (CPU & GPU)
When I designed my C++ Matrix<T> class for Fulgurance, I deliberately chose a column-major memory layout (Fortran/Eigen style). It fits linear algebra…
default🧮 Rebuilding the LU Decomposition and Benchmarking It Against My Own Determinant Algorithms
When I first started playing with determinant algorithms in C++, I wanted to really understand what happens behind Eigen’s .determinant() call. So…
defaultBuilding a New Determinant Engine — An Iterative Combinatorial Approach
One morning, I decided to compute a determinant from scratch — no recursion, no Gaussian elimination, no library shortcuts. I wanted to…
defaultExploring the Power of Metaprogramming in Rust
🦀 Metaprogramming in Rust: Exploring macro_rules! Power Rust offers one of the most expressive and hygienic metaprogramming systems in modern languages. Through…
default📊 Building a Flexible Access Log Analyzer in R
In this tutorial, we’ll walk through the design and implementation of a small but powerful R script that analyzes web server access…
defaultThe Goldbach Conjecture and Its Recursive Implementation in Haskell
The Goldbach Conjecture is one of the oldest unsolved problems in mathematics. It states that every even integer greater than 2 can…
defaultReimplementing diff in C++: A Minimalist Approach
Why Rebuild Something That Already Exists? The diff command is one of the cornerstones of the GNU/Linux ecosystem. It’s simple in appearance,…
defaultAutomatic Documentation for Any Codebase
Introduction When working with R, I loved how Roxygen lets you generate clean documentation directly from comments in your source code. But…
defaultImplementing DataFrames in C++: A Custom Approach for High-Performance Data Manipulation
Introduction When working with data, Python and Pandas dominate the landscape. They provide an intuitive way to load, transform, and analyze datasets.…
defaultEditing My YouTube Videos the Weird Way: With Nothing but ffmpeg
Most people edit their YouTube videos with slick GUIs: Premiere, DaVinci Resolve, Final Cut Pro, even OBS + Shotcut for the open-source…
defaultImplement Core Operations
I have just finished developing a library for manipulating numbers so large and/or precise that no conventional datatype can encode them. You…