Posts
All the articles I've posted.
SwiftUI: @State is a macro
Published: at 12:04 PMWith Xcode 27, SwiftUI @State transitioned from a property wrapper to a Swift macro. Discover how this under-the-hood rewrite fixes long-standing initialization bugs, manages nodes in the Attribute Graph, leverages DynamicProperty injection, and changes how view invalidation actually works.
SwiftUI: Observable macro under the hood
Published: at 01:44 PMExplore how the @Observable macro works under the hood in SwiftUI: compile-time transformations, access tracking, fine-grained re-renders, and how Observation replaces ObservableObject and Combine.
Becoming an IEEE Senior Member: Application Guide
Published: at 01:51 PMA practical guide to becoming an IEEE Senior Member, covering requirements, application process, and personal experience.
SwiftUI: @State under the hood
Published: at 11:15 AMSwiftUI @State does not store values in your struct. It owns a node in the Attribute Graph. A deep dive into initialValue, DynamicProperty injection, and how invalidation actually works
Swift Concurrency: Part 4
Published: at 11:44 AMExplore Structured Concurrency in Swift: Actors, @MainActor, @GlobalActor, understanding the Swift Concurrency runtime, and actor reentrancy.