pagination is common design pattern that is used everywhere across the web. It is the last thing you see on search results page. Lets say If we want to get the list of tweets from twitter, there could be thousands of them. So the logical way is to l...
I’ve recently got chance of exploring Azure Web app and was surprised how simple and useful the Web apps and App service plans are. But the only down side being not so great documentation which are mostly interlinked articles. Azure web apps are Plat...
Redux is a predictable state container with its roots from the flux architecture. In Redux, all data is made available at one place(single source of truth), so designing the state fairly well will help to scale. Historically we’ve all used different ...
S stands for Single Responsibility. A Class should be responsible only for handling any one kind of responsibility.Unnecessary code should be moved to another Class(if necessary). If you are making changes to the same Class for different type of req...