Machine learning can seem complex, but breaking it down into simple concepts makes it more approachable. In this article, we explore the basics by implementing a Linear Regression model in Swift. Check it out!
Posts by Avi Tsadok
*Raw Identifiers are coming to Swift! (Next Swift version)*
The Swift team has added raw identifiers, making writing more descriptive and natural names for your code easier. Raw identifiers allow names that include spaces, special characters, or even numbers—delimited with backticks (`).
My book “The Ultimate iOS Interview Playbook” is a Bestseller in Amazon!
a.co/d/6Ih4lb5
A nice Swift tip!
When performing string searches, we often write the following:
$0.name.lowercased().contains(searchPhrase.lowercased())
Instead, we can:
$0.name.localizedStandardContains(searchPhrase)
Why is this better?
More Readable, Localization-Friendly, Built-In Case Insensitivity
I am excited to announce that I will be speaking at the iOSkonf conference in North Macedonia!