Scaling Beyond My Limits

With all the challenges that I've face lately, there were also other happiness that grows within myself. A happiness that gives me more strength in life that I never could expect. It's the least exp

With all the challenges that I've face lately, there were also other happiness that grows within myself. A happiness that gives me more strength in life that I never could expect. It's the least exp

Learn Zig Series 20 Working with JSON What will I learn You will learn parsing JSON into Zig structs with `std.json.parseFromSlice`; the `std.json.Value` tagged union for dynamic untyped JSON;

Learn Zig Series 19 SIMD with @Vector What will I learn You will learn what SIMD is and why it matters for performance; Zig's `@VectorN, T` type for SIMD operations; elementwise arithmetic on

Learn Ethical Hacking 1 Why Hackers Win What will I learn Why the asymmetry between attack and defense makes hacking fundamentally easier than defending; The cyber kill chain and how realworl

Learn AI Series 38 Neural Networks From Scratch Forward Pass What will I learn You will learn network architecture layers, neurons, and connections represented as matrix operations; weight m

Learn AI Series 37 The Perceptron Where It All Started What will I learn You will learn the perceptron the simplest artificial neuron and the ancestor of all neural networks; the perceptron

Learn Zig Series 18b Addendum: Async Returns in Zig 0.16 What will I learn You will learn why Zig is bringing async back and why it looks nothing like before; the new `std.Io` interface and h

Learn AI Series 36 Mini Project Complete ML Pipeline What will I learn You will learn how to build a complete ML pipeline from raw messy data to scored predictions tying together everything f

Learn Creative Coding 36 Shader Feedback Loops and Trails Every shader we've written so far has been stateless. Each frame starts fresh. The fragment shader runs, every pixel gets a color based o

Learn Zig Series 18 Async Concepts and Event Loops What will I learn You will learn why Zig removed async/await and what replaced it; the difference between blocking I/O, nonblocking I/O, and

Learn Creative Coding 35 Noise on the GPU Back in episode 12 we built Perlin noise from scratch in JavaScript. We wrote the permutation table, the gradient vectors, the fade function, the interpo

Learn AI Series 35 Data Ethics and Bias in ML What will I learn You will learn how bias enters ML systems from data collection through deployment; the major types of bias: selection, measurem

Learn AI Series 34 ML Engineering From Notebook to Production What will I learn You will learn the gap between "works in Jupyter" and "works in production" and how to bridge it; model serial

Learn Zig Series 17 Packed Structs and Bit Manipulation What will I learn You will learn how packed structs lay out fields with exact bit widths; the difference between `packed struct` and reg

Learn Creative Coding 34 Shader Patterns: Stripes, Grids, and Repetition Last episode we drew circles, boxes, rounded rectangles, and weird blobby eye things using signed distance functions. We h

Learn Zig Series 16 SentinelTerminated Types and C Strings What will I learn You will learn what sentinelterminated types are and why Zig has them; the difference between `u8`, `:0u8`, `:0u8`,

Learn AI Series 33 Ensemble Methods Deep Dive Stacking and Blending What will I learn You will learn stacking training a metalearner on top of base model predictions to squeeze out extra accu

Learn Creative Coding 33 Drawing Shapes with Signed Distance Functions Last episode we built the bridge between JavaScript and GLSL uniforms. Resolution, time, mouse position. The three values t

Learn Zig Series 15 The Build System build.zig What will I learn You will learn how `build.zig` replaces Makefiles, CMake, and other build configuration; the `std.Build` API for declaring exec

Learn AI Series 32 Bayesian Methods Thinking in Probabilities What will I learn You will learn Bayesian vs frequentist thinking two fundamentally different views of what probability even mean