Why 0! = 1?

When I was studying math as a student, I often got a question that why the hell 0! is equal to ONE. Finally, I came up with an example and that really makes sense for me. For an example, let’s take 2n. So we can write the further as below. The results of the 2n … Continue reading Why 0! = 1?

The Economic Impact of Open Source Software

                    Nowadays the world IT industry becomes more powerful which rules and governs every aspect of other in other industries in the world. IT industry made up of three giant arms called Software, Hardware and Network. Therefore Software becomes indispensable not only in the IT industry … Continue reading The Economic Impact of Open Source Software

Create an Azure for Student Account

Azure for Students gets you started with $100 in Azure credits to be used within the first 12 months, plus select free services as described below (services subject to change) without requiring a credit card at sign-up. You must affirm that you are age 18 or older and attend an accredited, degree-granting four-year educational institution where you’re … Continue reading Create an Azure for Student Account

How to convert a Bootstrap 4 template into ReactJS components

To do this you should have basic knowledge about ReactJS. In this article, I will show you how to convert a single bootstrap page into separate react components and render it. For this, I will use Atom IDE. First, create a reactJS project by executing the following command on your command prompt. After creating the … Continue reading How to convert a Bootstrap 4 template into ReactJS components

Services and Dependency Injection in Angular

When we have data or logic that is not associated with a specific view but we want to share across components, we build services. Service is a class with a focused purpose. We often create a service to implement functionality that, Are independent of any particular component To provide shared data or logic across components … Continue reading Services and Dependency Injection in Angular

Database first vs Code First in Entity Framework

There are two workflows that the Entity Framework uses. The traditional way is to design database tables first. And then Entity Framework generates the corresponding domain classes. This method is called the Database first (DB first) approach. The other way is the opposite direction. So we start from domain classes and have Entity Framework generate … Continue reading Database first vs Code First in Entity Framework