Writing clear and effective software product stories in your favourite issue tracker can help ensure that your team has a clear understanding of the work that needs to be done …

20 Useful Tricks and Techniques in Kotlin
From using the Elvis operator to safely access nested properties to using the filter function to filter a list of objects, these tricks and techniques will help you make the most of the Kotlin language.

Forget What You Know: The Importance of Being Open to New Ideas in Software Development
Learn and relearn: one of the keys to staying relevant and successful in the fast-paced world of software development
How regular breaks can help you write better code
Here’s a surprise (yet obvious) trick on how you can write better code without doing a thing – literally
Writing Helpful Technical Documentation
Learn how to write helpful documentation that not only helps other members of your team understand your code, but also serves as a valuable resource for future reference and maintenance.
App Optimization: Proguard Vs R8
Proguard and R8 are both code shrinkers for Android apps. They both work by analyzing your app’s code and resources and then removing unused code, renaming classes and methods, and …

App optimization: How to shrink code in Android
The size of your APK has an impact on how fast your app loads, how much memory it uses, and how much power it consumes. Users are less likely to …

App optimization: Strategies for reducing your APK size
The size of your APK has an impact on how fast your app loads, how much memory it uses, and how much power it consumes. Users are less likely to …

What to do with unfinished side projects
So you are a developer? Yes? And you have dozens of unfinished projects? What do you do with all your unfinished side projects?

Clean Coding: A Practical Introduction
With clean coding comes understandability, readability, changeability, extensibility and maintainability. Explore how you can develop clean coding skills in this practical introduction