Posts
All the articles I've posted.
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.
Swift Concurrency: Part 3
Published: at 10:36 AMExplore Swift Continuations: the essential bridge between legacy callback-based APIs and modern async/await. Learn how to wrap completion handlers and delegates into clean, linear code with practical examples.
Swift Concurrency: Part 2
Published: at 11:52 AMExplore Structured Concurrency in Swift: parent/child relationship, automatic cancellation, task groups, and more.