We mostly get used to use collections in daily programming with KOTLIN, but there is another brother of Collections in KOTLIN is Sequences. Sequences are pretty similar when you are writing, however there are huge differences when executing. Let’s check main differences; So, the sequences let you avoid building results of intermediate steps, therefore improving the performance…
A few days ago, I faced an issue about loading some images by using Glide library. As you can guess, image URLs comes from backend services so I have tried to find common pattern between failed ones and add listener to glide request to check is there any exception during image loadings. Yeah, the root cause was…