Sunday, 26 December 2021

Course Introduction Higher Order RxJS Observables in Hindi

One of the big challenges of learning Angular is RxJS. Rupesh will explain what you will learn in this course.| https://youtu.be/p7uiWyGtIvY| Full Stack Master

Sunday, 19 December 2021

Most Common Ancestor Between 2 Nodes in a Graph | Algorithms | Data Structure

Find Most Common Ancestor Between 2 Nodes in a Graph. Graph is very simple it has bunch of nodes that may or may not be connected! Representing a graph in code is very easy GRAPH is Important DataStructure for Interview Node is called as Vertices Connections are Edges Graph can scare you if you do not practice them. Once you practice graph it is the simplest Data Structure. You must know DFS, BFS and Traversals. You're given three inputs. all of which are instances of an AncestralTree class that have an ancestor property pointing to their youngest ancestor. The first input is the top ancestor in an ancestral tree (i.e„ the only instance that has no ancestor—its ancestor property points to None null and the other two inputs are descendants in the ancestral tree. Write a function that retunes the youngest common ancestor to the two descendants. Note that a descendant is considered its own ancestor. So in the simple ancestral tree below. the youngest common ancestor to nodes A and B is node A // The youngest common ancestor to nodes A and 8 is node A. Sample Input // The nodes are from the ancestral tree below. node A topAncestor descendantone descendantTwo Sample Output node B node E node I| https://youtu.be/3M3GS2K7rvE| Full Stack Master

Wednesday, 24 November 2021

Stage 4 Reprotect on premises machines

Stage 4 Reprotect on premises machines. About on-premises disaster recovery failover/failback.| https://youtu.be/o3f83mayYKQ| Full Stack Master

Monday, 22 November 2021

Stage 3 Fail over from Azure

Stage 3: Fail over from Azure: When your on-premises site is running as normal again, you run another failover, this time to fail back Azure VMs to your on-premises site. You can fail back to the original location from which you failed over, or to an alternate location.| https://youtu.be/4qG5b6pkXpQ| Full Stack Master

Saturday, 20 November 2021

Stage 2 Reprotect Azure Virtual Machines

Stage 2: Reprotect Azure VMs: In Azure, you reprotect the Azure VMs so that they start replicating back to the on-premises site. The on-premises VM (if available) is turned off during reprotection, to help ensure data consistency.| https://youtu.be/f8LLLYzv4pI| Full Stack Master

Thursday, 18 November 2021

Stage 1 Fail over From on Premises to Azure

Stage 1: Fail over from on-premises: After setting up replication to Azure for on-premises machines, when your on-premises site goes down, you fail those machines over to Azure. After failover, Azure VMs are created from replicated data.| https://youtu.be/KiWBJ6We2Is| Full Stack Master

Tuesday, 16 November 2021

On-premises Disaster Recovery Stages in Azure

Recovery stages Failover and failback in Site Recovery has four stages: Stage 1: Fail over from on-premises: After setting up replication to Azure for on-premises machines, when your on-premises site goes down, you fail those machines over to Azure. After failover, Azure VMs are created from replicated data. Stage 2: Reprotect Azure VMs: In Azure, you reprotect the Azure VMs so that they start replicating back to the on-premises site. The on-premises VM (if available) is turned off during reprotection, to help ensure data consistency. Stage 3: Fail over from Azure: When your on-premises site is running as normal again, you run another failover, this time to fail back Azure VMs to your on-premises site. You can fail back to the original location from which you failed over, or to an alternate location. Stage 4: Reprotect on-premises machines: After failing back, again enable replication of the on-premises machines to Azure.| https://youtu.be/rb7mRDol2hs| Full Stack Master

Sunday, 14 November 2021

On-premise Replication Setup to azure VM for FailOver/FailBack

This video provides an overview of failover and failback during disaster recovery of on-premises machines to Azure with Azure Site Recovery.| https://youtu.be/zU1glIxnPnM| Full Stack Master

Sunday, 12 September 2021

Azure SQL Managed Instance Database Mail Architecture

Learn about Azure SQL Managed Instance Database Mail Architecture| https://youtu.be/UNOcasAbkxs| Full Stack Master

Sunday, 5 September 2021

Machine Learning Vs Deep Learning

Azure Fundamentals part 3: Describe core solutions and management tools on Azure. Artificial Intelligence is divided broadly in 2 categories: 1. Machine Learning 2. Deep learning. In this video I will teach you the difference between these 2 technologies in very basic layman language.| https://youtu.be/XECePlej1ys| Full Stack Master

Sunday, 29 August 2021

Why You should Write Blog and Create YouTube video

For your personality development, personal growth on your own field. And for getting some financial benefits you must write blogs and create your video. You contribute to the society and make better world. In this video I will talk to you why you should write blogs and create youtube videos?| https://youtu.be/zINCN5hyZeQ| Full Stack Master

Sunday, 22 August 2021

Replace Tag in Azure Resource Using Update-AzTag

Replace Tag in Azure Resource using Update-AzTag ```powershell $tags = @{"Dept"="Sales"; "Status"="High"} # Replace tags Update-AzTag -ResourceId $resource.id -Tag $tags -Operation Replace ```| https://youtu.be/0GJ27K3CWXA| Full Stack Master

Sunday, 15 August 2021

Merge Tag in Azure Resource using Update-AzTag

Learn how you can Merge new Tag in Azure Resource ```powershell $tags = @{"Location"="Canada"} # Merge Tag Update-AzTag -ResourceId $resource.id -Tag $tags -Operation Merge ```| https://youtu.be/8vtnn1ZacNg| Full Stack Master

Sunday, 8 August 2021

Creating Azure Storage Account

Azure Storage account is a resource in Azure. You can select create resource and search for Storage Account and then create new storage account for you. https://rupeshtiwari.com/creating-azure-storage-account/#turn-on-soft-delete-for-containers.| https://youtu.be/Q8VH9CigNho| Full Stack Master

Delete Tag in Azure Resource

Delete Tag in Azure Resource using Update-AzTag -Operation Delete To remove all tags from your Azure subscription, use the [Remove-AzTag](https://ift.tt/2VzLWEg) command. ```powershell # Get subscription by it's name $subscription = (Get-AzSubscription -SubscriptionName "Example Subscription").Id # Remove the tags Remove-AzTag -ResourceId "/subscriptions/$subscription" ```| https://youtu.be/2211KACFlmw| Full Stack Master

Friday, 6 August 2021

Uploaded Blob properties in Azure Blob Storage

After uploading blob you can see the properties of your blob in the azure storage account.| https://youtu.be/TtXZyfdRDU8| Full Stack Master

Sunday, 1 August 2021

Create Tag in Azure Resource using New-AzTag

For Creating Tag in Azure Resource using New-AzTag use `New-AzTag` to apply tag on resource in **Azure**. ```powershell # Create Tag variable $tags = @{"Dept"="Finance"; "Status"="Normal"} # Get the resource that you want to appply tag on. $resource = Get-AzResource -Name "Application Insights Smart Detection" -ResourceGroup AdmissionApplication # Apply Tag New-AzTag -ResourceId $resource.id -Tag $tags ```| https://youtu.be/QTDDL8_0N3c| Full Stack Master

Saturday, 24 July 2021

Creating Kubernetes Pod and Service and Monitor Container Demo

Creating Kubernetes Pod and Service and Monitor Container Demo.| https://youtu.be/9XajTTcz1DA| Full Stack Master

Saturday, 17 July 2021

Creating Kubernetes Cluster on Azure Portal Demo

Demo: Creating Kubernetes Cluster on Azure Portal| https://youtu.be/nnpV6rlWCy4| Full Stack Master

Saturday, 10 July 2021

Deploying Asp.net Docker Container to Azure Container Registry

Demo: Deploying Asp.net Docker Container to Azure Container Registry| https://youtu.be/nklZHjzh2Z4| Full Stack Master

Saturday, 3 July 2021

Creating Azure Container Registry in Azure Portal

Creating Azure Container Registry in Azure Portal| https://youtu.be/_G5I2JojkN0| Full Stack Master

Saturday, 26 June 2021

Saturday, 19 June 2021

Implementing Application Insight in Asp.net Web Application Demo

Demo: Implementing Application Insight in Asp.net Web Application| https://youtu.be/xoN1efAAEBg| Full Stack Master

Saturday, 12 June 2021

Create Order Angular Application Demo

Running Demo Angular Application with RxJS. Rupesh will start the demo application and show you its features like search order, submit order, delete order etc. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/qdQVMwX8UCo| Full Stack Master

Saturday, 5 June 2021

Angular App Code Walkthrough and Folder Structure

Demo Angular Application Code Walkthrough Rupesh will walk you through the demo application source code and he will explain how to install its dependencies. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/XkgbvZ9E5YQ| Full Stack Master

Saturday, 29 May 2021

Download Angular App for RxJS Higher Order Observable

How to download the Demo Application? Rupesh will explain how to download source code and will walkthrough the source code and guidelines.| https://youtu.be/wsTblfEsmTA| Full Stack Master

Saturday, 22 May 2021

Download Source Code For RxJS Higher Order Observables

Where is source code for RxJS Higher Order Observables? Rupesh will give you the github url to get the coding exercise source code for this entire course. Source code is attached to the first module feel free to download them. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/ZW5S7PdFyug| Full Stack Master

Saturday, 15 May 2021

Why to Learn RxJS Higher Order Observables

Rupesh will explain why you should learn higher-order RxJS Observables. Especially if you are looking forward to working on NgRx Angular project or If you are preparing for an interview then you must watch this course. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/w_-C2Q0xj_0| Full Stack Master

Thursday, 13 May 2021

Learn everything about Angular Workspace

Learn everything about Angular Workspace. A collection of Angular projects (that is, applications and libraries) powered by the [Angular CLI] (#cli) that are typically co-located in a single source-control repository is called as Angular workspace. #angular #tutorial #beginners| https://youtu.be/fTIuy1_cv7w| Full Stack Master

Saturday, 8 May 2021

Course Agenda- RxJS Higher Order Observable

Rupesh will explain what are the topics you will learn in this section. Like Higher order Observables, Higher order observable Mappings and working on Angular projects to use higher order operators. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/vWLdewE5H8E| Full Stack Master

Wednesday, 5 May 2021

Angular Sample App for Beginners

Angular sample application for beginners. Write reactive angular like pro. Learn Angular Material table, dialog, spinner, toaster and much more. Download source code: https://ift.tt/3urE4B6 Visit application live: https://ift.tt/3to3FJA If you want to support me then visit https://ift.tt/2PPke3p #angular #beginners #tutorial| https://youtu.be/G2cqz-11n-w| Full Stack Master

Saturday, 1 May 2021

Prerequisite - RxJS Higher Order Observable

In order to get most out of this course. I will recommend, to have some basic knowledge on RxJS observables and RxJS basic operators. You do not need expertise on them, just basic understanding is enough to start with this course. Also, Feel free to watch my Free RxJS courses for beginners and advanced level in Fullstack Master. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/KJS6u5Zu0u0| Full Stack Master

RxJS Higher Order Observable Course Introduction

One of the big challenges of learning Angular is RxJS. Rupesh will explain what you will learn in this course. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/hqOVS2F8PW4| Full Stack Master

Saturday, 24 April 2021

Create Order Angular Application Demo in Hindi

Running Demo Application Rupesh will start the demo application and show you its features like search order, submit order, delete order etc. This is an angular app with RxJS higher order observable. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/N6myaPgXZvk| Full Stack Master

Saturday, 17 April 2021

Angular Demo App Code Walkthrough and Folder Structure explanation in Hindi

Demo Angular Application for this course Code Walkthrough. Rupesh will walk you through the demo application source code and he will explain how to install its dependencies. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/GIT8FRMBN-w| Full Stack Master

Saturday, 10 April 2021

Download Angular App for RxJS Higher Order Observable Course in Hindi

How to download the Demo Application? Rupesh will explain how to download source code and will walkthrough the source code and guidelines. Support me by buying full course in hindi here. https://ift.tt/2Lg3OhN Download the complete course in english here https://fullstackmaster.net/course/20/higher-order-observable| https://youtu.be/GQeylbwga6U| Full Stack Master

Saturday, 3 April 2021

Download Source Code For RxJS Higher Order Observables Course Demo in Hindi

Where is source code for RxJS Higher Order Observables? Rupesh will give you the github url to get the coding exercise source code for this entire course. Source code is attached to the first module feel free to download them.| https://youtu.be/nGHh22bQZlI| Full Stack Master

Saturday, 27 March 2021

Why should You Learn RxJS Higher Order Observables in Hindi

Rupesh will explain why you should learn higher-order RxJS Observables. Especially if you are looking forward to working on NgRx Angular project or If you are preparing for an interview then you must watch this course.| https://youtu.be/dzJMUurIX70| Full Stack Master

Saturday, 20 March 2021

Course Agenda- RxJS Higher Order Observable in Hindi

Rupesh will explain what are the topics you will learn in this section. Like Higher order Observables, Higher order observable Mappings and working on Angular projects to use higher order operators.| https://youtu.be/EuNcUZoeza4| Full Stack Master

Saturday, 13 March 2021

Prerequisite - RxJS Higher Order Observable in Hindi

In order to get most out of this course. I will recommend, to have some basic knowledge on RxJS observables and RxJS basic operators. You do not need expertise on them, just basic understanding is enough to start with this course. Also, Feel free to watch my Free RxJS courses for beginners and advanced level in Fullstack Master.| https://youtu.be/L9MRVPszNuc| Full Stack Master

Saturday, 6 March 2021

RxJS Higher Order Observable Course Introduction in Hindi

One of the big challenges of learning Angular is RxJS. Rupesh will explain what you will learn in this course in Hindi.| https://youtu.be/UFmBvW8U0bo| Full Stack Master

Wednesday, 6 January 2021

Mastering RxJS Higher Order Observable Introduction

Mastering RxJS Higher Order Observable Introduction is the ultimate course to learn about Higher order observables and their mapping operators. Enroll Mastering RxJS Higher Order Observable in English: https://ift.tt/3nhuL1X. Enroll Mastering RxJS Higher Order Observable in Hindi: https://ift.tt/2Lg3OhN. What you will learn: Problem solving & Coding Challenges Higher order Observable Higher order Mapping Operator Working on Angular application Coding with Higher order observable Coding with Higher order Mapping Switch Map & Exhaust Map Merge Map & Concat Map You will get: 1.45 hours on-demand HD video 9 downloadable resources 9 coding challenges Full lifetime access Access on mobile and TV Certificate of completion #rxjs #angular #typescript| https://youtu.be/sBTPAwiC0Kk| Full Stack Master

Friday, 1 January 2021

RxJS Inner and Outer Observable in Hindi

RxJS Inner and Outer Observable in Hindi. Consider enrolling to this course "Mastering RxJS Higher Order Observable" because this course is now on sale. https://fullstackmaster.net/course/21/higher-order-observable-hindi| https://youtu.be/MDlKcA4jM8I| Full Stack Master