Posts
Angular Internals: How Reactivity Works with Zone.js
January 2, 2023•4,305 words
Reactivity is core to JavaScript frameworks; changing data should cause a re-render. How does this work in Angular? Let's dive into the Angular source code to see.
Why is z-index not working?! - Explaining CSS Stacking Context
October 6, 2022•3,510 words
z-index is a CSS property that helps control the z-axis height of an element, but it often doesn't seem to work. Why is that? How does it REALLY work?
How to Share Lifecycle Methods Between Components in Angular
August 20, 2022•3,704 words
Sharing code between components in Angular is TOUGH. Here's one way you can do so by utilizing base components that you extend - and why you shouldn't use them.
Vue Composition API Inspector
July 30, 2022•588 words
A peek under the hood of Vue compilation. See how Vue interpretes TypeScript
JavaScript Fundamentals: Functions Are Values
July 28, 2022•2,599 words
JavaScript functions are widely used in web development... but do you KNOW them? Let's explore the fundamentals and how they can be used in unorthodox ways
Python None
July 27, 2022•345 words
Interpreted languages have various footguns. Let's explore one such footgun I ran into recently with Python and how I fixed it.