Posts

Azure Administration: Implement and Manage Application Services

https://www.linkedin.com/learning/azure-administration-implement-and-manage-application-services-21716665 by Tiago Costa Introduction Azure App Services that work for you What you should know 1. Introduction to Azure App Service App Service overview App Service plans free tier does not support custom domains App Service plan demo Logic Apps overview Logic Apps demo Azure Functions overview Azure Functions demo Chapter Quiz 2. Azure Web Apps Overview of Azure Web Apps Creating a Web App on the Azure Portal Create a Web App using ARM templates Create a Web App using BICEP templates Create a Web App using Azure PowerShell Create a Web App using Azure CLI Scaling Azure Web Apps Configuring autoscaling Running Containers 3. Managing App Service Configuring Web app settings Adding custom domains to Web Apps Adding custom domains to Web Apps demo Azure CDN integration Can use your custom domain at a CDN endpoint Required to set up a CNAME record in the custom domain DNS server HTTPS inclu...

Authentication and Authorization in ASP.NET Core 6 Web API

https://www.pluralsight.com/courses/asp-dot-net-core-6-web-api-authentication-authorization by Roland Guijt Mod 1: Course Overview Course Overview Mod 2: API Authentication with Keys and Cookies The Starting Situation Key Protection with Middleware a rudimentary way of protecting a webapi; use a middleware to check for api key in header (not recommended by author)  to be able to use security headers in swagger, you have to configure it in code. use the OpenApiSecurityRequirement object Key Protection with an Attribute the solution from previous clip can be implemented as an attribute if an attribute requires dependency injection, attribute will need to be used like this: [TypeFilter(typeof(ApiKeyAttribute))] Cookie Authentication Configuring Cookies and Schemes Restricting Access with the Authorize Attribute Accessing User Information Mod 3: Protecting APIs with Tokens OAuth2 and the Identity Provider tokens for APIs are called access token; for front ends, it is called identity to...

SEO Strategy: Link Building

https://www.linkedin.com/learning/seo-strategy-link-building by Paddy Moogan Introduction Leveraging link building in your SEO strategy 1. The Importance of Link Building for SEO Navigating the link-building landscape How link building fits in your overall SEO strategy Why links became such a strong ranking signal Chapter Quiz 2. The Fundamentals of Link Building for SEO The anatomy of a link in addition to rel='nofollow', you can use rel='ugc' and rel='sponsored'. ugc refers to links to comments in an article or a form post What you need to know about PageRank What makes for a good and bad link How to analyze a link profile moz link explorer - detailed backlink research An overview of link-building tactics: Good and bad Chapter Quiz 3. The Link-Building Process What makes your link worthy? How to find websites that may link to you How to contact websites for link building An introduction to content-led link building How to use guest blogging correctly Local bu...

Creating Object-oriented TypeScript Code

https://www.pluralsight.com/courses/typescript-creating-object-oriented-code by Dan Wahlin Mod 1: Course Overview Course Overview Mod 2: Introduction to Object-oriented Programming in TypeScript Overview Introduction The Role of Objects Object Creation Techniques Object-oriented Concepts Summary Mod 3: Classes and Objects Introduction The Role of Classes Creating a Class Adding Class Members Creating a Class Instance Constructors and Properties a TypeScript class can only have one constructor  Static Members a TypeScript class can have static members and methods Summary Mod 4: Inheritance and Abstraction Introduction The Role of Inheritance Inheriting from a Class The Role of Abstract Classes Creating and Inheriting from an Abstract Class Overriding Members Summary Mod 5: Interfaces and Polymorphism Introduction The Role of Interfaces Creating an Interface an interface can extend another interface. not only that, it can extend multiple interfaces Using Interfaces Interfaces, C...

Migrating ASP.NET Core Web Applications to Azure

https://www.linkedin.com/learning/migrating-asp-dot-net-core-web-applications-to-azure by Christian Wenz Introduction Migrating your ASP.NET Core apps like a pro What you should know Prerequisites Keeping an eye on costs Chapter Quiz I. Getting Started with Azure Terminology Hosting options Resource group setup Chapter Quiz 2. Moving ASP.NET Core Apps to Azure ASP.NET Core options Looking at the sample application Deploying a web application to Azure with Visual Studio Deploying a web application to Azure with Visual Studio Code Deploying Blazor applications to Azure Using Azure Functions Deploying Azure Functions Calling Azure Functions from Blazor WebAssembly Chapter Quiz 3. Moving Databases to Azure Azure database options Updating the sample application Publishing the application Deploying databases to Azure Handling secrets with Azure Key Vault Other database options Chapter Quiz 4. Migration Tools Migration tool options Azure App Service Migration Assistant windows application tha...