Explore >> Select a destination


You are here

www.avanderlee.com
| | swiftwithmajid.com
12.1 parsecs away

Travel
| | Apple recently released Swift 6.1, with most of the changes being cosmetic. However, I particularly like the scoping feature introduced in the Swift Testing framework. This week, we'll delve into the new test scoping feature and explore how to effectively utilize it in Swift.
| | swiftwithmajid.com
12.4 parsecs away

Travel
| | Swift Structured Concurrency makes our lives much easier by introducing task groups. Task groups are a way to run a dynamic number of child tasks, await all of them, or cancel. This week, we will learn how to use and optimize task groups in Swift.
| | benscheirman.com
8.2 parsecs away

Travel
| | Swift 5.5 is here with Xcode 13 Beta and with it comes my favorite new addition to Swift: Async/Await.
| | sookocheff.com
103.1 parsecs away

Travel
| Writing correct programs is hard; writing correct concurrent programs is harder. Java Concurrency in Practice. So, why bother with concurrency? A number of reasons: Concurrency provides a natural method for composing asynchronous code. Concurrency allows your program to avoid blocking user operations. Concurrency provides one of the easiest ways take advantage of multi core systems. As processor counts increase, exploiting concurrency will be an even more important facet of high performance systems.