abstract.hashnode.devThe Four AgreementsDISCLAIMER: This article is based on my interpretation and understanding of the literary piece, which may not be exactly in the lines of the author, but may contain a few nuances or commentaries influenced by myself. Thus, be Critical. Prologue Th...Feb 14·6 min read
sakshamshrey.hashnode.devOptimistic v/s Pessimistic LockingRobust concurrency control is no longer a theoretical concept. It is the foundation of every scalable and reliable fintech platform, e-commerce backend, and logistics system. This article drills into the standards, pitfalls, and best practices that d...Nov 4, 2025·4 min read
sakshamshrey.hashnode.devClosures and Async Ops in SwiftClosures !? Closures are blocks of code you can pass around in Swift. They're like functions but lighter and more flexible. Closures let you run code on demand, pass it as a variable, or use it for callbacks. UsesClosures make code compact and powerf...Nov 10, 2024·15 min read
sakshamshrey.hashnode.devDeploying a Custom Library via CocoaPodsDeploying a custom library is essential for developers sharing their code. Methods like Swift Package Manager (SPM), Carthage, and CocoaPods exist for this purpose. CocoaPods is favored due to its vast library repository, ease of use, and strong comm...Jun 9, 2024·6 min read
sakshamshrey.hashnode.devAPI requests in Swift using AlamofireAlamofire is a powerful tool for making API requests in Swift apps. It simplifies networking tasks, making it easier for beginner developers to interact with APIs. Alamofire is a Swift library that abstracts away the complexities of networking. It pr...Mar 30, 2024·5 min read