Posts

Showing posts from May, 2023

SEO Fundamentals

https://www.pluralsight.com/courses/fundamentals-seo by Paul Wilson Course Overview Course Overview Introduction to Lean SEO Introduction Module Overview validate your seo efforts using LEAN SEO Course Setup SEO Frameworks SEO Framework: "An SEO framework is as a repeatable system that guides you in building, validating, and expanding your SEO efforts." The Lean SEO Framework Lean SEO steps: research create test measure scale Benefits of the Lean SEO Framework Module Summary SEO Discovery Introduction SEO discovery is not part of LEAN Seo Website Exploration Website being Discovered Google Search Console if you have an xml sitemap, submit it to Google Search Console Google Analytics analytics intelligence: allows you to get insight into your website by providing prompts - show me pages with the highest bounching rates - what is my worst loading page? - etc ... Search Results Search Operators redirects can play an important role within SEO text search operator: intext Search O...

Git Branching and Merging

https://www.pluralsight.com/courses/git-branching-merging by Craig Golightly  Module 1: Course Overview Course Overview Module 2: Understanding Git Branch Basics About This Course Github Default Branch Naming Oct 2020 changed default from master to main Organizations can set a default branch name Branching In-flight 'git init' will create a new git repo shows an example of creating a branch after making changes 'git checkout -b {branch name}' will create a new branch and move pending changes into new branch to switch back to main: 'git checkout main' Moving from Branch to Branch 'git branch': List your branches 'git checkout' or 'git switch' to swtich to a different branch When you've made changes to a branch,  but you've not yet committed those changes to the branch (a dirty branch), Git won't let you switch from a dirty branch that has uncommitted changes until you clean up your changes. 'git status' shows your curre...

Exam Tips: Designing Microsoft Azure Infrastructure Solutions (AZ-305)

https://www.linkedin.com/learning/exam-tips-designing-microsoft-azure-infrastructure-solutions-az-305 by Nicole Stevens Introduction Why the AZ-305 exam? What you need to know you should take az 104 first I. Design Identity, Governance, and Solutions Design a solution for logging and monitoring Design authentication and authorization solutions the three identity based solutions in azure: Active Directory Domain Services (AD DS) You can extend an on premises domain by replicating a domain controller to a VM running on Azure, or have Azure VMs domain join to on premises domain controllers using a VPN or express route Azure Active Directory Domain Services (Azure AD DS) Azure Active Directory (Azure AD) you need to know how to configure conditional access for the exam Design identities and access for applications managed identity use case two types of managed identity: system assigned and user assigned know how to perform app registration in azure ad request uri is blan...

AZ-305: Designing Microsoft Azure Infrastructure Solutions

https://www.pluralsight.com/courses/az-305-designing-microsoft-azure-infrastructure-solutions by A Cloud Guru Section I - Welcome to the Course Course Introduction Important Information about This Course Section 2 - Architecting Azure Solutions Being a Solution Architect roles of a solution architect - initial requirements gathering - solution scoping and pricing - detailed solution design - solution implementation - handover to operations Azure Well-Architected Framework:  A set of architectural pillars, which help when designing a modern cloud solution. Azure Architecture Center: A variety of patterns, practices, and guidelines for architecting solutions on Azure. Includes networking, hosting, applications, and more. Exploring the Cloud Adoption Framework Cloud Adoption Framework: a set of steps that Microsoft have put together to help you on being successful on Azure Service Map: Map communication between app components on Windows or Linux. TCO Calculator: Estimate monthly Azure...

NgRx Fundamentals

https://www.pluralsight.com/courses/ngrx-fundamentals by Duncan Hunter Module 1: Course Overview Course Overview Module 2: Introduction Introduction ngrx allows you to manage state in angular Purpose of NgRx Managing global and local state Isolation of side effects Entity collection management Integration with the Angular Router Developer tooling different types of state: Persisted state, URL state, Client state, Local Ul state What Is NgRx? describes Actions, Reducer, Store in ngrx there is an optional NgRx library called componentStore for managing component state that makes additional stores components can subscribe to specific state changes with selectors NgRx Store Implements The Redux Pattern Why Use NgRx? Use NgRx To Manage State When Your application has a lot of user interactions Your application has a lot of different data sources Managing state in services is no longer sufficient Don't use NgRx when your application is simple with little shared state if you don't nee...