https://www.pluralsight.com/courses/angular-reactive-forms by Jim Cooper Mod 1: Course Overview Course Overview Mod 2: Getting Started with Angular Reactive Forms Introduction Angular Forms Architecture Overview Template Driven vs. Reactive Forms Cloning and Exploring Our Demo Application demo of InMemoryDbService will intercept http calls and return mock data Mod 3: Creating Angular Reactive Forms Introduction shows how to import ReactiveFormsModule Adding Reactive Forms to a Project Creating Form Controls The Magic of the ControlVa lueAccessor Directive Providing Values to FormControls Creating FormGroups you use formControl directive when you don't have a form group if you have a formgGroup, you use the formControlName directive Submitting a Reactive Form use case for Partial in typescript Saving Submitted Form Data Adding Unbound FormControls to a FormGroup shows how to have a form element that is not visible (is it hidden input?) huh Creating Nested FormGroups use case for get...
https://www.pluralsight.com/courses/c-sharp-10-performance-playbook by Chris Behrens Mod 1: Course Overview Course Overview Mod 2: Understanding the Role of Performance Introduction Optimizing for the Developer Premature Optimization and Goldplating All optimization is premature optimization unless it's just-in-time Introducing BenchmarkDotNet .NET library for benchmarking Demo: Using BenchmarkDotNet you need to add a console app and add an attribute Run your benchmarks in Release mode, however you do them Summary Mod 3: Optimizing C# Code Line-by-line: Part 1 Introduction Demo: Build Strings Effectively explains why StringBuilder is needed and how it works internally instead of sb.Append(" "), do sb.Append(' '), it is more performant Demo: Picking Strings Apart uses ReadOnlySpan Demo: String Comparison there is no one best way to compare string in c#, when taking into consideration length of string and care insensitivity Demo: For Loops and Foreach Demo: Class...
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...
Comments
Post a Comment