AMAtharva Mahamuniinblog.athmaweb.site·Sep 22, 2024 · 2 min readFavor composition over inheritanceInheritance of classes is not always a good idea, sometimes you need to consider the composition as well. Let's discuss one of the important design principles, for writing more clean, reusable, and extensible code - Suppose you are running a vehicle ...00
AMAtharva Mahamuniinblog.athmaweb.site·Jun 28, 2021 · 1 min readWhy you should switch/use Linux?1. Used on nearly every server: -Linux is used on more than 70% of the servers. -Even Microsoft uses it for Azure. -No matter which tech stack you are using, you need to have knowledge of deploying your projects on the cloud. 2. Powerful Terminal: -T...00
AMAtharva Mahamuniinblog.athmaweb.site·Jun 15, 2021 · 2 min readWhat is an API? : A short IntroductionAPI stands for Application Programming Interface. API work like a delivery guy to serve data from the backend to the frontend of an application. You can also think of it as a service provided by one application to another. Most of the time you saw th...00
AMAtharva Mahamuniinblog.athmaweb.site·Jun 6, 2021 · 3 min readDatabase: Explained!!!In the age of technology, your phone serves you byte-sized juicy information every time you open it. From where this information comes??? Yes, you are right from Databases. Data is everywhere. This is how it used to store so much data in the pre-dig...00
AMAtharva Mahamuniinblog.athmaweb.site·Jun 4, 2021 · 2 min readLoops & Conditionals Explained!A blog on the basics of Programming... Designing the algorithm is one of the jobs of a programmer. The algorithm is nothing but the sequence of program execution. Conditional statements help us to take various decisions on the go while designing the ...02IR