Posts

Showing posts from April, 2020

How to Start a YouTube Channel Free - Complete Guide

Image
Now a days YouTube is very popular, you many not find single person on earth who don’t know what YouTube is? so let’s understand answer of below three questions What is a YouTube channel?   What is the purpose of the YouTube channel? How to create a YouTube channel? Contents What is a YouTube channel? Purpose of You tube channel Ø      To Show case your talent to the world. Ø      Showcase your art. Ø      Sharing skill or Hobby. Ø      show information to the world and Sharing knowledge. Ø      Promoting your Business. Ø      earn money from youtube. Ø      Increase your social presence on world of internet. How to create YouTube channel?. Step 1 :  Create your Google account (Gmail account). 1.      Open Google signup account https://accounts.google.com/signup. 2.      filled and information and click on NEXT button. 3.      provide mobile number and click on NEXT button. 4.      enter OTP number sent on  phone number and click on NEXT button. 5.      Provide the Recovery mail and pe

How to Start a YouTube Channel Free - Complete Guide

Image
Now a days YouTube is very popular, you many not find single person on earth who don’t know what YouTube is? so let’s understand answer of below three questions What is a YouTube channel?   What is the purpose of the YouTube channel? How to create a YouTube channel? Contents What is a YouTube channel? Purpose of You tube channel Ø      To Show case your talent to the world. Ø      Showcase your art. Ø      Sharing skill or Hobby. Ø      show information to the world and Sharing knowledge. Ø      Promoting your Business. Ø      earn money from youtube. Ø      Increase your social presence on world of internet. How to create YouTube channel?. Step 1 :  Create your Google account (Gmail account). 1.      Open Google signup account https://accounts.google.com/signup. 2.      filled and information and click on NEXT button. 3.      provide mobile number and click on NEXT button. 4.      enter OTP number sent on  phone number and click on NEXT button. 5.      Provide the Recovery mail and pe

How Angular know which module is the startup module?

Image
In this article, we will learn about How Angular 9 knows which module is the startup module and which is not ? Also, we will understand Which conventions Angular team Uses by Sagar Jaybhay . Which One is the startup Module? This is mentioned in the main.ts file and below is coed for this file. import enableProdMode from '@angular/core'; import platformBrowserDynamic from '@angular/platform-browser-dynamic'; import AppModule from './app/app.module'; import environment from './environments/environment'; if (environment.production) enableProdMode(); platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.error(err)); platformBrowserDynamic is used to a bootstrap module. This used to set the first module. But another question is ..... How main.ts file is invoked in an angular application? The main.ts file is invoked by index.html file. But if you see the index.html file code we didn’t find any kind of script invocation code because t

How Angular know which module is the startup module?

Image
In this article, we will learn about How Angular 9 knows which module is the startup module and which is not ? Also, we will understand Which conventions Angular team Uses by Sagar Jaybhay . Which One is the startup Module? This is mentioned in the main.ts file and below is coed for this file. import enableProdMode from '@angular/core'; import platformBrowserDynamic from '@angular/platform-browser-dynamic'; import AppModule from './app/app.module'; import environment from './environments/environment'; if (environment.production) enableProdMode(); platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.error(err)); platformBrowserDynamic is used to a bootstrap module. This used to set the first module. But another question is ..... How main.ts file is invoked in an angular application? The main.ts file is invoked by index.html file. But if you see the index.html file code we didn’t find any kind of script invocation code because t

You Should Know Use Of This Terms Angular 9

Image
In this article you will understand importance of mainly used terms in Angular 9 by Sagar Jaybhay . You will understand Components, Modules, How angular 9 works? Angular 9 Angular is binding frameworks .  It helps us to bind view and model. In angular, you can have multiple apps inside the src folder. Components In angular, the binding code which binds the UI means our Html and Model is component. Here Component is the part of angular, which receives data from the UI and Sends data back to UI. In an enterprise application, you can have a lot of views, lots of components and lots of models. Modules If you collect different component and group them into one repo is called modules and these component are generally belong to the same modules In by default angular generated boilerplate code which doesn’t contain model but as per requirement we want that and we created in our application. The naming convention for this is app.model.ts . Component In Details In Angular 9: Below is the code

Prerequisite of Angular 9 By Sagar Jaybhay

Image
In this blog series we will learn Angular 9 and this my first blog on Angular 9 . So we start with what are Prerequisite of Angular 9 By Sagar Jaybhay . Node It is a javascript runtime. If you want to run javascript you need to run this inside the browser but by using Node you can run javascript outside the browser. To download node use this link https://nodejs.org/en/ The current version is 12.16.1 LTS to download this use this link:- https://nodejs.org/dist/v12.16.1/node-v12.16.1-x64.msi To build node they use Chrome’s V8 JavaScript engine. And the Chrome engine is one of the best engines for JavaScript. It is a fully programming platform and in NODE we have Http component, file component, URL component and NPM for angular. If we want to learn Angular 9 we required only NPM( Node Package Manager Commands). How does the Node Package Manager work? In the software industry, there are lots of package managers present like maven, nugget and currently npm. A package manager is a software

What is the purpose of Html helpers in MVC?

Image
In this article we will understand What is the purpose of Html helpers in MVC ? and How to generate DropDownList using Html helpers in Asp.net MVC by Sagar Jaybhay . Html helpers What is an Html Helper? Html helper is a method that is used to render HTML content in a view. Html helpers are implemented using an extension method. If you want to create an input text box with id=email and name is email <input type=text id=email name=email value=’’/> This is all Html we need to write by using the helper method it becomes so easy @Html.TextBox(‘email’) It will generate textbox control whose name is email. If we want to assign the value of the textbox with some initial value then use below method. @Html.TextBox(‘email’,’sagar@gmail.com’) If I want to set an initial style for textbox we can achieve this by using below way. @Html.TextBox(‘email’,’sagar@gmail.com’,new style=’your style here’ , title=’your title here’); Here style we pass is an anonymous type. If we have reserved keyword