Writing on practices and principles to achieve sustainable codebases in iOS for developers and tech firms.

How to migrate your code to Swift’s Concurrency - Part II
Daniel Torres Daniel Torres

How to migrate your code to Swift’s Concurrency - Part II

Explore Swift’s new concurrency model, breaking down the differences between synchronous and asynchronous code, and how async/await functions manage thread suspension. We’ll also cover the practical side by explaining how to work with continuations and how to use the “add async alternative” shortcut.

Read More
How to migrate your code to Swift’s Async/Await - Part I
Daniel Torres Daniel Torres

How to migrate your code to Swift’s Async/Await - Part I

Asynchronous code using completion handlers often leads to complexity, making your code harder to read and maintain. Swift’s async/await feature offers a more streamlined and error-resistant approach. In this article, I’ll guide you through the key differences between async/await and completion handlers and show you how to migrate your code to a more concise, safer version using Swift’s async/await.

Read More
#4 - TDD, Pair Programming, and Katas: How Driver and Navigator Work in Pair Programming?
pair programming Daniel Torres pair programming Daniel Torres

#4 - TDD, Pair Programming, and Katas: How Driver and Navigator Work in Pair Programming?

Sometimes, you might feel your team takes too long to share and discuss ideas during Pair Programming. But Pair Programming is not just about two developers working on the same code; some rules help you be productive. By specifying the role of the Driver and Navigator, you might overcome endless debates while saving time. In this article, I'll dive deep into these concepts and how they can improve Pair Programming techniques.

Read More
#3 - TDD, Pair Programming, and Katas: How to overcome communication flaws.
pair programming Daniel Torres pair programming Daniel Torres

#3 - TDD, Pair Programming, and Katas: How to overcome communication flaws.

If you find yourself trying to apply Pair Programming but failing to do so, it is probably because of a flaw in communication. A solution to this problem is to have a technique that helps you identify and correct any flaws in communication. This article will explain our technique, an example we encountered during our sessions, and how we resolved it.

Read More