How to git (diff, log, remote, push)
Read Time 2 minutes In the previous post we learnt how to create an empty git repository, added new files, viewed repo status using git status and committed local
Read Time 2 minutes In the previous post we learnt how to create an empty git repository, added new files, viewed repo status using git status and committed local
Read Time 2 minutes git is a distributed version control system which means multiple developers can work on a single project painlessly. I am going to talk about
Read Time < 1 minute It’s not been long since I have started using Kotlin but more I use it more I fall in love with it. Most recent thing
Read Time 2 minutes Most of the times our android apps load data from a backend server. Testing such an android app is difficult, as test depends on the
Read Time 2 minutes Being a programmer we have to write a lot of code which we should not be writing . One such example is writing constructors and getters/setters of
Read Time < 1 minute In almost every android app there is a need to pass data between different components i.e Activities, Fragments, Services and threads. One case is very
Read Time 2 minutes According to Single Responsibility principle, no class of your application should create new instances of other classes it needs. These objects Dependencies should be created and provided by someone
Read Time 2 minutes According to single responsibility and separation of concern concept no component of your application should Create the new objects of other classes it needs. Those
Read Time 2 minutes As an android developer you must have written a lot of code in onCreate [in Activity] or onCreateView[in Fragment] to get the reference of views defined in