TIL that SwiftUI allows combining multiple Text views into a single view using the + operator, and it also supports string interpolation: Text concatenation vs Text interpolation in SwiftUI.

TIL Text in SwiftUI supports markdown styles for formatting: Plurals with SwiftUI:

Text("**Bold world**")
Text("_Italy world_")
Text("~~Cancer~~ world")
Text("`Text(isGood)`")
Text("Link to [website](https://valeriyvan.com)")
    .tint(.pink)

Read nice Apple documentation Recording a Packet Trace.

Both macOS and iOS have built-in support for packet traces. This article explains how to record a packet trace on both platforms.

iOS doesn’t let you record a packet trace directly. However, you can use your Mac to record a packet trace on an attached iOS device using the Remote Virtual Interface (RVI) mechanism.