Statistical Learning — quality of fit using Mean Squared Error (MSE)The section discusses how to evaluate the performance of statistical learning methods by measuring the quality of fit using Mean Squared…Sep 24, 2024Sep 24, 2024
Install Flutter using VSCode — macOSI spent quite some time getting Flutter installed on macOS. I will list down the steps below:Jul 15, 2024Jul 15, 2024
Weak vs UnownedThey are used in memory management, like object references. Both are used to break the reference cycles but they have different behaviors…Jun 29, 2024Jun 29, 2024
When to use Generics — iOSUsing generics, you make your code flexible and reusable. You can make functions, classes, structs, and enums generic, to be accessed by…Jun 28, 2024Jun 28, 2024
When to use Protocols — iOSProtocols define blueprints for methods, properties, and other requirements that define particular tasks or functionalities. A class…Jun 28, 2024Jun 28, 2024
Access Control SwiftAccess control restricts access to your code from other source files or modules. It enables you to hide the implementation details and…Jun 10, 2024Jun 10, 2024
SOLID principles in iOSS -> Single responsibility principle your class should be specialised to play just one role.Aug 5, 2021Aug 5, 2021
Concurrency using GDC in SwiftGrand Central Dispatch (GCD) also known as Dispatch is a low-level API provided by Apple in order to manage the concurrent operations of…May 2, 2021May 2, 2021
Swift ClosuresClosures are self-contained blocks of functionalities that can be passed around in your code.Apr 28, 2021Apr 28, 2021