All repos can be found on github, with the exception of Grinn, which is an app on the ios appstore. Grinn TikTok Clone Youtube Clone InstaPhotoPicker Pomodoro Timer Yummie FiverUI ...
How to Drag & Reorder CollectionView Cells
Reordering Collection View Cells is a feature that was introduced in iOS 9. It is a surprisingly easy interaction to build, both in collectionviews and tableviews. By leveraging the UILongPressGest...
The Modern iOS 14 Photo Picker
Prior to iOS 14, the quickest and simplest way to fetch photos from the user’s photo library was through the UIImagePickerController class. However, starting from iOS 14.0, Apple is providing us de...
How To Remove Empty PHAssetCollections from a PHFetchResult
fileprivate var smartAlbums = PHFetchResult<PHAssetCollection>() fileprivate var userCreatedAlbums = PHFetchResult<PHAssetCollection>() fileprivate func fetchPhotoAssets(){ /* fetches...
The 18 Books I Read in 2021
The truth is, I started reading habitually again in 2020 during the lockdown for self-improvement. I saw it mainly as a tool to upskill myself and fill in the blind spots on my worldviews and bus...
How to remove and untrack committed files in git
Sometimes we accidentally commit and publish sensitive files, credentials or even private API keys to our repositories. Undoing this blunder can be quite frustrating if you are not familiar with gi...