Author: Andreas Plahn
Vest js form validation library
vestjs.dev/docs/concepts
Structured Logging and Logs Management in .NET Core | Medium
ClosedXML – .NET library for Excel files
ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API.
Source: ClosedXML
License: MIT / Open source project
Doc: https://closedxml.readthedocs.io/en/latest/index.html
Wiki: https://github.com/closedxml/closedxml/wiki
ClosedXML is a wrapper of the offical .NET Open XML SDK:
https://github.com/dotnet/Open-XML-SDK
Creating and downloading zip files with ASP.NET Core
Using EF Core’s InMemory Provider To Store A “Database” In Memory
exceptionnotfound.net/ef-core-inmemory-asp-net-core-store-database/
.Net Nuget – Central Package Management | Microsoft Learn
learn.microsoft.com/en-us/nuget/consume-packages/central-package-management
NgRx – global state management for Angular applications – Getting started
Store is RxJS powered global state management for Angular applications, inspired by Redux. Store is a controlled state container designed to help write performant, consistent applications on top of Angular.
Key concepts
Actions describe unique events that are dispatched from components and services. State changes are handled by pure functions called reducers that take the current state and the latest action to compute a new state. Selectors are pure functions used to select, derive and compose pieces of state. State is accessed with the Store, an observable of state and an observer of actions.Local state management
NgRx Store is mainly for managing global state across an entire application. In cases where you need to manage temporary or local component state, consider using NgRx ComponentStore.
Source: NgRx – @ngrx/store
Rendering cycle in Angular applications — browser, angular and zone.js interaction | Angular In Depth
This article is an excerpt from my Angular deep dive course
Modern web stack involves lots of moving parts. A browser provides DOM to describe what should be rendered on the screen and API to manipulate that presentation. It runs JavaScript as a reaction to some kind of asynchronous events initiated by user actions. The JavaScript code is usually split into framework code and application code. Application code implements business logic that processes input data and updates application state. The task of a framework is to transform the application state into DOM updates. The common name for this phrase is rendering, but it has different names in different frameworks. In Angular it’s known as change detection.
GitHub Copilot vs. Amazon CodeWhisperer
www.tabnine.com/blog/github-copilot-vs-amazon-codewhisperer/