First few days into FP
Functional programming isn't just different syntax. It's rewiring how you think about solving problems, and that mental shift is harder than any mathematical theory.
read more →Why Our SPFx Web Parts Randomly Disappeared (And How We Fixed It)
Some of our SharePoint web parts were randomly failing to render for certain users. The problem? An async/await call in onInit() that seemed harmless until it wasn't.
read more →Understanding Lambda Calculus: The Mathematics Behind Functional Programming
Lambda calculus is a mathematical model for understanding computation using just three simple rules. Created by Alonzo Church, it became the foundation for functional programming languages like OCaml and Haskell.
read more →Observable & Provider Patterns in Redux
Redux still powers many production apps despite newer alternatives. Building Redux from scratch reveals how Observable and Provider patterns work together to manage state.
read more →Understanding bind Through Promise Implementation
Ever had JavaScript's
read more →this
point to something unexpected? Let's build a Promise from scratch to see howbind()
keepsthis
predictable in asynchronous code.