Posts
A Linux C++ programmers adventure in improving Windows CI on GitHub actions
January 6, 2023•734 words
TL;DR; Ninja is available directly in the windows images Use to set up the MSVC environment for building with Ninja. You need nested quotes for CX...
Fun with Types
January 5, 2023•1,823 words
Making hilarious things with no emitted code.
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.
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.
Minecraft Data Pack Programming: Scoreboard Usage
August 20, 2022•3,761 words
Learn data pack development in Minecraft - using player scoreboards, variables, and operations!
Vue Composition API Inspector
July 30, 2022•588 words
A peek under the hood of Vue compilation. See how Vue interpretes TypeScript